blob: ed51119912ac893531611ccddd302d4d11d7519c [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 */
Bram Moolenaarc09a6d62013-06-10 21:27:29 +020027/* Note: most of time you can add -DPy_DEBUG to CFLAGS in place of uncommenting
Bram Moolenaar0014a532013-05-29 21:33:39 +020028 */
Bram Moolenaarc09a6d62013-06-10 21:27:29 +020029/* uncomment this if used with the debug version of python, but without its
Bram Moolenaar0014a532013-05-29 21:33:39 +020030 * 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 Moolenaar808c2bc2013-06-23 13:11:18 +020071#define PyBytes_FromString PyString_FromString
72#define PyBytes_Check PyString_Check
73#define PyBytes_AsStringAndSize PyString_AsStringAndSize
Bram Moolenaar19e60942011-06-19 00:27:51 +020074
Bram Moolenaar071d4272004-06-13 20:20:40 +000075#if !defined(FEAT_PYTHON) && defined(PROTO)
76/* Use this to be able to generate prototypes without python being used. */
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +000077# define PyObject Py_ssize_t
78# define PyThreadState Py_ssize_t
79# define PyTypeObject Py_ssize_t
80struct PyMethodDef { Py_ssize_t a; };
81# define PySequenceMethods Py_ssize_t
Bram Moolenaar071d4272004-06-13 20:20:40 +000082#endif
83
Bram Moolenaar2afa3232012-06-29 16:28:28 +020084#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
85# define PY_USE_CAPSULE
86#endif
87
Bram Moolenaar2c45e942008-06-04 11:35:26 +000088#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02050000
89# define PyInt Py_ssize_t
90# define PyInquiry lenfunc
91# define PyIntArgFunc ssizeargfunc
92# define PyIntIntArgFunc ssizessizeargfunc
93# define PyIntObjArgProc ssizeobjargproc
94# define PyIntIntObjArgProc ssizessizeobjargproc
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +000095# define Py_ssize_t_fmt "n"
Bram Moolenaar2c45e942008-06-04 11:35:26 +000096#else
97# define PyInt int
Bram Moolenaar4d1da492013-04-24 13:39:15 +020098# define lenfunc inquiry
Bram Moolenaar2c45e942008-06-04 11:35:26 +000099# define PyInquiry inquiry
100# define PyIntArgFunc intargfunc
101# define PyIntIntArgFunc intintargfunc
102# define PyIntObjArgProc intobjargproc
103# define PyIntIntObjArgProc intintobjargproc
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000104# define Py_ssize_t_fmt "i"
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000105#endif
Bram Moolenaara9922d62013-05-30 13:01:18 +0200106#define Py_bytes_fmt "s"
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000107
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108/* Parser flags */
109#define single_input 256
110#define file_input 257
111#define eval_input 258
112
113#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x020300F0
114 /* Python 2.3: can invoke ":python" recursively. */
115# define PY_CAN_RECURSE
116#endif
117
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200118# if defined(DYNAMIC_PYTHON) || defined(PROTO)
119# ifndef DYNAMIC_PYTHON
120# define HINSTANCE long_u /* for generating prototypes */
121# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200123# ifndef WIN3264
124# include <dlfcn.h>
125# define FARPROC void*
126# define HINSTANCE void*
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100127# if defined(PY_NO_RTLD_GLOBAL) && defined(PY3_NO_RTLD_GLOBAL)
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200128# define load_dll(n) dlopen((n), RTLD_LAZY)
129# else
130# define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
131# endif
132# define close_dll dlclose
133# define symbol_from_dll dlsym
134# else
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200135# define load_dll vimLoadLib
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200136# define close_dll FreeLibrary
137# define symbol_from_dll GetProcAddress
138# endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200139
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000140/* This makes if_python.c compile without warnings against Python 2.5
141 * on Win32 and Win64. */
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200142# undef PyRun_SimpleString
Bram Moolenaardb913952012-06-29 12:54:53 +0200143# undef PyRun_String
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200144# undef PyArg_Parse
145# undef PyArg_ParseTuple
146# undef Py_BuildValue
147# undef Py_InitModule4
148# undef Py_InitModule4_64
Bram Moolenaardb913952012-06-29 12:54:53 +0200149# undef PyObject_CallMethod
Bram Moolenaar9f3685a2013-06-12 14:20:36 +0200150# undef PyObject_CallFunction
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000151
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152/*
153 * Wrapper defines
154 */
155# define PyArg_Parse dll_PyArg_Parse
156# define PyArg_ParseTuple dll_PyArg_ParseTuple
Bram Moolenaar19e60942011-06-19 00:27:51 +0200157# define PyMem_Free dll_PyMem_Free
Bram Moolenaardb913952012-06-29 12:54:53 +0200158# define PyMem_Malloc dll_PyMem_Malloc
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159# define PyDict_SetItemString dll_PyDict_SetItemString
160# define PyErr_BadArgument dll_PyErr_BadArgument
Bram Moolenaard5f729c2013-05-15 16:04:40 +0200161# define PyErr_NewException dll_PyErr_NewException
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162# define PyErr_Clear dll_PyErr_Clear
Bram Moolenaar4d369872013-02-20 16:09:43 +0100163# define PyErr_PrintEx dll_PyErr_PrintEx
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164# define PyErr_NoMemory dll_PyErr_NoMemory
165# define PyErr_Occurred dll_PyErr_Occurred
166# define PyErr_SetNone dll_PyErr_SetNone
167# define PyErr_SetString dll_PyErr_SetString
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200168# define PyErr_SetObject dll_PyErr_SetObject
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200169# define PyErr_ExceptionMatches dll_PyErr_ExceptionMatches
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170# define PyEval_InitThreads dll_PyEval_InitThreads
171# define PyEval_RestoreThread dll_PyEval_RestoreThread
172# define PyEval_SaveThread dll_PyEval_SaveThread
173# ifdef PY_CAN_RECURSE
174# define PyGILState_Ensure dll_PyGILState_Ensure
175# define PyGILState_Release dll_PyGILState_Release
176# endif
177# define PyInt_AsLong dll_PyInt_AsLong
178# define PyInt_FromLong dll_PyInt_FromLong
Bram Moolenaardb913952012-06-29 12:54:53 +0200179# define PyLong_AsLong dll_PyLong_AsLong
180# define PyLong_FromLong dll_PyLong_FromLong
Bram Moolenaar66b79852012-09-21 14:00:35 +0200181# define PyBool_Type (*dll_PyBool_Type)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182# define PyInt_Type (*dll_PyInt_Type)
Bram Moolenaardb913952012-06-29 12:54:53 +0200183# define PyLong_Type (*dll_PyLong_Type)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184# define PyList_GetItem dll_PyList_GetItem
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000185# define PyList_Append dll_PyList_Append
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200186# define PyList_Insert dll_PyList_Insert
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
Bram Moolenaarf9c9b322013-06-10 20:47:36 +0200213# define PyModule_AddObject dll_PyModule_AddObject
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214# define PyRun_SimpleString dll_PyRun_SimpleString
Bram Moolenaardb913952012-06-29 12:54:53 +0200215# define PyRun_String dll_PyRun_String
Bram Moolenaard620aa92013-05-17 16:40:06 +0200216# define PyObject_GetAttrString dll_PyObject_GetAttrString
Bram Moolenaara9922d62013-05-30 13:01:18 +0200217# define PyObject_HasAttrString dll_PyObject_HasAttrString
Bram Moolenaard620aa92013-05-17 16:40:06 +0200218# define PyObject_SetAttrString dll_PyObject_SetAttrString
219# define PyObject_CallFunctionObjArgs dll_PyObject_CallFunctionObjArgs
Bram Moolenaar9f3685a2013-06-12 14:20:36 +0200220# define PyObject_CallFunction dll_PyObject_CallFunction
Bram Moolenaarf4258302013-06-02 18:20:17 +0200221# define PyObject_Call dll_PyObject_Call
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222# define PyString_AsString dll_PyString_AsString
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200223# define PyString_AsStringAndSize dll_PyString_AsStringAndSize
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224# define PyString_FromString dll_PyString_FromString
Bram Moolenaar1a3b5692013-05-30 12:40:39 +0200225# define PyString_FromFormat dll_PyString_FromFormat
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226# define PyString_FromStringAndSize dll_PyString_FromStringAndSize
227# define PyString_Size dll_PyString_Size
228# define PyString_Type (*dll_PyString_Type)
Bram Moolenaardb913952012-06-29 12:54:53 +0200229# define PyUnicode_Type (*dll_PyUnicode_Type)
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200230# undef PyUnicode_AsEncodedString
231# define PyUnicode_AsEncodedString py_PyUnicode_AsEncodedString
Bram Moolenaardb913952012-06-29 12:54:53 +0200232# define PyFloat_AsDouble dll_PyFloat_AsDouble
233# define PyFloat_FromDouble dll_PyFloat_FromDouble
234# define PyFloat_Type (*dll_PyFloat_Type)
235# define PyImport_AddModule (*dll_PyImport_AddModule)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236# define PySys_SetObject dll_PySys_SetObject
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200237# define PySys_GetObject dll_PySys_GetObject
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238# define PySys_SetArgv dll_PySys_SetArgv
239# define PyType_Type (*dll_PyType_Type)
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100240# define PyType_Ready (*dll_PyType_Ready)
Bram Moolenaara9922d62013-05-30 13:01:18 +0200241# define PyType_GenericAlloc dll_PyType_GenericAlloc
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242# define Py_BuildValue dll_Py_BuildValue
243# define Py_FindMethod dll_Py_FindMethod
244# define Py_InitModule4 dll_Py_InitModule4
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100245# define Py_SetPythonHome dll_Py_SetPythonHome
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246# define Py_Initialize dll_Py_Initialize
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000247# define Py_Finalize dll_Py_Finalize
248# define Py_IsInitialized dll_Py_IsInitialized
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249# define _PyObject_New dll__PyObject_New
Bram Moolenaar774267b2013-05-21 20:51:59 +0200250# define _PyObject_GC_New dll__PyObject_GC_New
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200251# ifdef PyObject_GC_Del
252# define Py_underscore_GC
253# define _PyObject_GC_Del dll__PyObject_GC_Del
254# define _PyObject_GC_UnTrack dll__PyObject_GC_UnTrack
255# else
256# define PyObject_GC_Del dll_PyObject_GC_Del
257# define PyObject_GC_UnTrack dll_PyObject_GC_UnTrack
258# endif
Bram Moolenaare7211222012-06-30 13:21:08 +0200259# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
260# define _PyObject_NextNotImplemented (*dll__PyObject_NextNotImplemented)
261# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262# define _Py_NoneStruct (*dll__Py_NoneStruct)
Bram Moolenaar66b79852012-09-21 14:00:35 +0200263# define _Py_ZeroStruct (*dll__Py_ZeroStruct)
264# define _Py_TrueStruct (*dll__Py_TrueStruct)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265# define PyObject_Init dll__PyObject_Init
Bram Moolenaardb913952012-06-29 12:54:53 +0200266# define PyObject_GetIter dll_PyObject_GetIter
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200267# define PyObject_IsTrue dll_PyObject_IsTrue
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
269# define PyType_IsSubtype dll_PyType_IsSubtype
Bram Moolenaar0014a532013-05-29 21:33:39 +0200270# ifdef Py_DEBUG
271# define _Py_NegativeRefcount dll__Py_NegativeRefcount
272# define _Py_RefTotal (*dll__Py_RefTotal)
273# define _Py_Dealloc dll__Py_Dealloc
274# endif
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200275# endif
276# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
Bram Moolenaar0014a532013-05-29 21:33:39 +0200277# if defined(Py_DEBUG) && !defined(Py_DEBUG_NO_PYMALLOC)
278# define _PyObject_DebugMalloc dll__PyObject_DebugMalloc
279# define _PyObject_DebugFree dll__PyObject_DebugFree
280# else
281# define PyObject_Malloc dll_PyObject_Malloc
282# define PyObject_Free dll_PyObject_Free
283# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200285# ifdef PY_USE_CAPSULE
286# define PyCapsule_New dll_PyCapsule_New
287# define PyCapsule_GetPointer dll_PyCapsule_GetPointer
288# else
289# define PyCObject_FromVoidPtr dll_PyCObject_FromVoidPtr
290# define PyCObject_AsVoidPtr dll_PyCObject_AsVoidPtr
291# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292
293/*
294 * Pointers for dynamic link
295 */
296static int(*dll_PyArg_Parse)(PyObject *, char *, ...);
297static int(*dll_PyArg_ParseTuple)(PyObject *, char *, ...);
Bram Moolenaar19e60942011-06-19 00:27:51 +0200298static int(*dll_PyMem_Free)(void *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200299static void* (*dll_PyMem_Malloc)(size_t);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300static int(*dll_PyDict_SetItemString)(PyObject *dp, char *key, PyObject *item);
301static int(*dll_PyErr_BadArgument)(void);
Bram Moolenaard5f729c2013-05-15 16:04:40 +0200302static PyObject *(*dll_PyErr_NewException)(char *, PyObject *, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303static void(*dll_PyErr_Clear)(void);
Bram Moolenaar4d369872013-02-20 16:09:43 +0100304static void(*dll_PyErr_PrintEx)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305static PyObject*(*dll_PyErr_NoMemory)(void);
306static PyObject*(*dll_PyErr_Occurred)(void);
307static void(*dll_PyErr_SetNone)(PyObject *);
308static void(*dll_PyErr_SetString)(PyObject *, const char *);
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200309static void(*dll_PyErr_SetObject)(PyObject *, PyObject *);
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200310static int(*dll_PyErr_ExceptionMatches)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311static void(*dll_PyEval_InitThreads)(void);
312static void(*dll_PyEval_RestoreThread)(PyThreadState *);
313static PyThreadState*(*dll_PyEval_SaveThread)(void);
314# ifdef PY_CAN_RECURSE
315static PyGILState_STATE (*dll_PyGILState_Ensure)(void);
316static void (*dll_PyGILState_Release)(PyGILState_STATE);
Bram Moolenaardb913952012-06-29 12:54:53 +0200317# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318static long(*dll_PyInt_AsLong)(PyObject *);
319static PyObject*(*dll_PyInt_FromLong)(long);
Bram Moolenaardb913952012-06-29 12:54:53 +0200320static long(*dll_PyLong_AsLong)(PyObject *);
321static PyObject*(*dll_PyLong_FromLong)(long);
Bram Moolenaar66b79852012-09-21 14:00:35 +0200322static PyTypeObject* dll_PyBool_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323static PyTypeObject* dll_PyInt_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200324static PyTypeObject* dll_PyLong_Type;
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000325static PyObject*(*dll_PyList_GetItem)(PyObject *, PyInt);
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200326static int(*dll_PyList_Append)(PyObject *, PyObject *);
327static int(*dll_PyList_Insert)(PyObject *, int, PyObject *);
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000328static PyObject*(*dll_PyList_New)(PyInt size);
329static int(*dll_PyList_SetItem)(PyObject *, PyInt, PyObject *);
330static PyInt(*dll_PyList_Size)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331static PyTypeObject* dll_PyList_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200332static int (*dll_PySequence_Check)(PyObject *);
333static PyInt(*dll_PySequence_Size)(PyObject *);
334static PyObject*(*dll_PySequence_GetItem)(PyObject *, PyInt);
Bram Moolenaara9922d62013-05-30 13:01:18 +0200335static PyObject*(*dll_PySequence_Fast)(PyObject *, const char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200336static PyInt(*dll_PyTuple_Size)(PyObject *);
337static PyObject*(*dll_PyTuple_GetItem)(PyObject *, PyInt);
338static PyTypeObject* dll_PyTuple_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339static PyObject*(*dll_PyImport_ImportModule)(const char *);
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000340static PyObject*(*dll_PyDict_New)(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341static PyObject*(*dll_PyDict_GetItemString)(PyObject *, const char *);
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200342static int (*dll_PyDict_Next)(PyObject *, PyInt *, PyObject **, PyObject **);
343static PyTypeObject* dll_PyDict_Type;
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200344# ifndef PY_NO_MAPPING_KEYS
345static PyObject* (*dll_PyMapping_Keys)(PyObject *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200346# endif
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200347static PyObject* (*dll_PyObject_GetItem)(PyObject *, PyObject *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200348static PyObject* (*dll_PyObject_CallMethod)(PyObject *, char *, PyObject *);
349static int (*dll_PyMapping_Check)(PyObject *);
350static PyObject* (*dll_PyIter_Next)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351static PyObject*(*dll_PyModule_GetDict)(PyObject *);
Bram Moolenaarf9c9b322013-06-10 20:47:36 +0200352static int(*dll_PyModule_AddObject)(PyObject *, const char *, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353static int(*dll_PyRun_SimpleString)(char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200354static PyObject *(*dll_PyRun_String)(char *, int, PyObject *, PyObject *);
Bram Moolenaard620aa92013-05-17 16:40:06 +0200355static PyObject* (*dll_PyObject_GetAttrString)(PyObject *, const char *);
Bram Moolenaara9922d62013-05-30 13:01:18 +0200356static int (*dll_PyObject_HasAttrString)(PyObject *, const char *);
Bram Moolenaard620aa92013-05-17 16:40:06 +0200357static PyObject* (*dll_PyObject_SetAttrString)(PyObject *, const char *, PyObject *);
358static PyObject* (*dll_PyObject_CallFunctionObjArgs)(PyObject *, ...);
Bram Moolenaar9f3685a2013-06-12 14:20:36 +0200359static PyObject* (*dll_PyObject_CallFunction)(PyObject *, char *, ...);
Bram Moolenaarf4258302013-06-02 18:20:17 +0200360static PyObject* (*dll_PyObject_Call)(PyObject *, PyObject *, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361static char*(*dll_PyString_AsString)(PyObject *);
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200362static int(*dll_PyString_AsStringAndSize)(PyObject *, char **, int *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363static PyObject*(*dll_PyString_FromString)(const char *);
Bram Moolenaar1a3b5692013-05-30 12:40:39 +0200364static PyObject*(*dll_PyString_FromFormat)(const char *, ...);
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000365static PyObject*(*dll_PyString_FromStringAndSize)(const char *, PyInt);
366static PyInt(*dll_PyString_Size)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367static PyTypeObject* dll_PyString_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200368static PyTypeObject* dll_PyUnicode_Type;
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200369static PyObject *(*py_PyUnicode_AsEncodedString)(PyObject *, char *, char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200370static double(*dll_PyFloat_AsDouble)(PyObject *);
371static PyObject*(*dll_PyFloat_FromDouble)(double);
372static PyTypeObject* dll_PyFloat_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373static int(*dll_PySys_SetObject)(char *, PyObject *);
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200374static PyObject *(*dll_PySys_GetObject)(char *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375static int(*dll_PySys_SetArgv)(int, char **);
376static PyTypeObject* dll_PyType_Type;
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100377static int (*dll_PyType_Ready)(PyTypeObject *type);
Bram Moolenaara9922d62013-05-30 13:01:18 +0200378static PyObject* (*dll_PyType_GenericAlloc)(PyTypeObject *type, PyInt nitems);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379static PyObject*(*dll_Py_BuildValue)(char *, ...);
380static PyObject*(*dll_Py_FindMethod)(struct PyMethodDef[], PyObject *, char *);
381static PyObject*(*dll_Py_InitModule4)(char *, struct PyMethodDef *, char *, PyObject *, int);
Bram Moolenaardb913952012-06-29 12:54:53 +0200382static PyObject*(*dll_PyImport_AddModule)(char *);
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100383static void(*dll_Py_SetPythonHome)(char *home);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384static void(*dll_Py_Initialize)(void);
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000385static void(*dll_Py_Finalize)(void);
386static int(*dll_Py_IsInitialized)(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387static PyObject*(*dll__PyObject_New)(PyTypeObject *, PyObject *);
Bram Moolenaar774267b2013-05-21 20:51:59 +0200388static PyObject*(*dll__PyObject_GC_New)(PyTypeObject *);
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200389# ifdef Py_underscore_GC
390static void(*dll__PyObject_GC_Del)(void *);
391static void(*dll__PyObject_GC_UnTrack)(void *);
392# else
Bram Moolenaar774267b2013-05-21 20:51:59 +0200393static void(*dll_PyObject_GC_Del)(void *);
394static void(*dll_PyObject_GC_UnTrack)(void *);
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200395# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396static PyObject*(*dll__PyObject_Init)(PyObject *, PyTypeObject *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200397static PyObject* (*dll_PyObject_GetIter)(PyObject *);
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200398static int (*dll_PyObject_IsTrue)(PyObject *);
Bram Moolenaare7211222012-06-30 13:21:08 +0200399# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
Bram Moolenaardb913952012-06-29 12:54:53 +0200400static iternextfunc dll__PyObject_NextNotImplemented;
Bram Moolenaare7211222012-06-30 13:21:08 +0200401# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402static PyObject* dll__Py_NoneStruct;
Bram Moolenaar66b79852012-09-21 14:00:35 +0200403static PyObject* _Py_ZeroStruct;
404static PyObject* dll__Py_TrueStruct;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
406static int (*dll_PyType_IsSubtype)(PyTypeObject *, PyTypeObject *);
Bram Moolenaar0014a532013-05-29 21:33:39 +0200407# ifdef Py_DEBUG
408static void (*dll__Py_NegativeRefcount)(const char *fname, int lineno, PyObject *op);
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200409static PyInt* dll__Py_RefTotal;
Bram Moolenaar0014a532013-05-29 21:33:39 +0200410static void (*dll__Py_Dealloc)(PyObject *obj);
411# endif
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200412# endif
413# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
Bram Moolenaar0014a532013-05-29 21:33:39 +0200414# if defined(Py_DEBUG) && !defined(Py_DEBUG_NO_PYMALLOC)
415static void (*dll__PyObject_DebugFree)(void*);
416static void* (*dll__PyObject_DebugMalloc)(size_t);
417# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418static void* (*dll_PyObject_Malloc)(size_t);
419static void (*dll_PyObject_Free)(void*);
Bram Moolenaar0014a532013-05-29 21:33:39 +0200420# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200422# ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +0200423static PyObject* (*dll_PyCapsule_New)(void *, char *, PyCapsule_Destructor);
424static void* (*dll_PyCapsule_GetPointer)(PyObject *, char *);
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200425# else
Bram Moolenaar221d6872012-06-30 13:34:34 +0200426static PyObject* (*dll_PyCObject_FromVoidPtr)(void *cobj, void (*destr)(void *));
427static void* (*dll_PyCObject_AsVoidPtr)(PyObject *);
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200428# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429
430static HINSTANCE hinstPython = 0; /* Instance of python.dll */
431
432/* Imported exception objects */
433static PyObject *imp_PyExc_AttributeError;
434static PyObject *imp_PyExc_IndexError;
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200435static PyObject *imp_PyExc_KeyError;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436static PyObject *imp_PyExc_KeyboardInterrupt;
437static PyObject *imp_PyExc_TypeError;
438static PyObject *imp_PyExc_ValueError;
Bram Moolenaar8661b172013-05-15 15:44:28 +0200439static PyObject *imp_PyExc_RuntimeError;
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200440static PyObject *imp_PyExc_ImportError;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441
442# define PyExc_AttributeError imp_PyExc_AttributeError
443# define PyExc_IndexError imp_PyExc_IndexError
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200444# define PyExc_KeyError imp_PyExc_KeyError
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445# define PyExc_KeyboardInterrupt imp_PyExc_KeyboardInterrupt
446# define PyExc_TypeError imp_PyExc_TypeError
447# define PyExc_ValueError imp_PyExc_ValueError
Bram Moolenaar8661b172013-05-15 15:44:28 +0200448# define PyExc_RuntimeError imp_PyExc_RuntimeError
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200449# define PyExc_ImportError imp_PyExc_ImportError
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450
451/*
452 * Table of name to function pointer of python.
453 */
454# define PYTHON_PROC FARPROC
455static struct
456{
457 char *name;
458 PYTHON_PROC *ptr;
459} python_funcname_table[] =
460{
Bram Moolenaare8cdcef2012-09-12 20:21:43 +0200461#ifndef PY_SSIZE_T_CLEAN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462 {"PyArg_Parse", (PYTHON_PROC*)&dll_PyArg_Parse},
463 {"PyArg_ParseTuple", (PYTHON_PROC*)&dll_PyArg_ParseTuple},
Bram Moolenaare8cdcef2012-09-12 20:21:43 +0200464 {"Py_BuildValue", (PYTHON_PROC*)&dll_Py_BuildValue},
465#else
466 {"_PyArg_Parse_SizeT", (PYTHON_PROC*)&dll_PyArg_Parse},
467 {"_PyArg_ParseTuple_SizeT", (PYTHON_PROC*)&dll_PyArg_ParseTuple},
468 {"_Py_BuildValue_SizeT", (PYTHON_PROC*)&dll_Py_BuildValue},
469#endif
Bram Moolenaar19e60942011-06-19 00:27:51 +0200470 {"PyMem_Free", (PYTHON_PROC*)&dll_PyMem_Free},
Bram Moolenaardb913952012-06-29 12:54:53 +0200471 {"PyMem_Malloc", (PYTHON_PROC*)&dll_PyMem_Malloc},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472 {"PyDict_SetItemString", (PYTHON_PROC*)&dll_PyDict_SetItemString},
473 {"PyErr_BadArgument", (PYTHON_PROC*)&dll_PyErr_BadArgument},
Bram Moolenaard5f729c2013-05-15 16:04:40 +0200474 {"PyErr_NewException", (PYTHON_PROC*)&dll_PyErr_NewException},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000475 {"PyErr_Clear", (PYTHON_PROC*)&dll_PyErr_Clear},
Bram Moolenaar4d369872013-02-20 16:09:43 +0100476 {"PyErr_PrintEx", (PYTHON_PROC*)&dll_PyErr_PrintEx},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477 {"PyErr_NoMemory", (PYTHON_PROC*)&dll_PyErr_NoMemory},
478 {"PyErr_Occurred", (PYTHON_PROC*)&dll_PyErr_Occurred},
479 {"PyErr_SetNone", (PYTHON_PROC*)&dll_PyErr_SetNone},
480 {"PyErr_SetString", (PYTHON_PROC*)&dll_PyErr_SetString},
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200481 {"PyErr_SetObject", (PYTHON_PROC*)&dll_PyErr_SetObject},
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200482 {"PyErr_ExceptionMatches", (PYTHON_PROC*)&dll_PyErr_ExceptionMatches},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483 {"PyEval_InitThreads", (PYTHON_PROC*)&dll_PyEval_InitThreads},
484 {"PyEval_RestoreThread", (PYTHON_PROC*)&dll_PyEval_RestoreThread},
485 {"PyEval_SaveThread", (PYTHON_PROC*)&dll_PyEval_SaveThread},
486# ifdef PY_CAN_RECURSE
487 {"PyGILState_Ensure", (PYTHON_PROC*)&dll_PyGILState_Ensure},
488 {"PyGILState_Release", (PYTHON_PROC*)&dll_PyGILState_Release},
489# endif
490 {"PyInt_AsLong", (PYTHON_PROC*)&dll_PyInt_AsLong},
491 {"PyInt_FromLong", (PYTHON_PROC*)&dll_PyInt_FromLong},
Bram Moolenaardb913952012-06-29 12:54:53 +0200492 {"PyLong_AsLong", (PYTHON_PROC*)&dll_PyLong_AsLong},
493 {"PyLong_FromLong", (PYTHON_PROC*)&dll_PyLong_FromLong},
Bram Moolenaar66b79852012-09-21 14:00:35 +0200494 {"PyBool_Type", (PYTHON_PROC*)&dll_PyBool_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495 {"PyInt_Type", (PYTHON_PROC*)&dll_PyInt_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200496 {"PyLong_Type", (PYTHON_PROC*)&dll_PyLong_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 {"PyList_GetItem", (PYTHON_PROC*)&dll_PyList_GetItem},
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000498 {"PyList_Append", (PYTHON_PROC*)&dll_PyList_Append},
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200499 {"PyList_Insert", (PYTHON_PROC*)&dll_PyList_Insert},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 {"PyList_New", (PYTHON_PROC*)&dll_PyList_New},
501 {"PyList_SetItem", (PYTHON_PROC*)&dll_PyList_SetItem},
502 {"PyList_Size", (PYTHON_PROC*)&dll_PyList_Size},
503 {"PyList_Type", (PYTHON_PROC*)&dll_PyList_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200504 {"PySequence_Size", (PYTHON_PROC*)&dll_PySequence_Size},
505 {"PySequence_Check", (PYTHON_PROC*)&dll_PySequence_Check},
Bram Moolenaara9922d62013-05-30 13:01:18 +0200506 {"PySequence_GetItem", (PYTHON_PROC*)&dll_PySequence_GetItem},
507 {"PySequence_Fast", (PYTHON_PROC*)&dll_PySequence_Fast},
Bram Moolenaardb913952012-06-29 12:54:53 +0200508 {"PyTuple_GetItem", (PYTHON_PROC*)&dll_PyTuple_GetItem},
509 {"PyTuple_Size", (PYTHON_PROC*)&dll_PyTuple_Size},
510 {"PyTuple_Type", (PYTHON_PROC*)&dll_PyTuple_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511 {"PyImport_ImportModule", (PYTHON_PROC*)&dll_PyImport_ImportModule},
512 {"PyDict_GetItemString", (PYTHON_PROC*)&dll_PyDict_GetItemString},
Bram Moolenaardb913952012-06-29 12:54:53 +0200513 {"PyDict_Next", (PYTHON_PROC*)&dll_PyDict_Next},
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000514 {"PyDict_New", (PYTHON_PROC*)&dll_PyDict_New},
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200515 {"PyDict_Type", (PYTHON_PROC*)&dll_PyDict_Type},
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200516# ifndef PY_NO_MAPPING_KEYS
517 {"PyMapping_Keys", (PYTHON_PROC*)&dll_PyMapping_Keys},
Bram Moolenaardb913952012-06-29 12:54:53 +0200518# endif
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200519 {"PyObject_GetItem", (PYTHON_PROC*)&dll_PyObject_GetItem},
Bram Moolenaardb913952012-06-29 12:54:53 +0200520 {"PyObject_CallMethod", (PYTHON_PROC*)&dll_PyObject_CallMethod},
521 {"PyMapping_Check", (PYTHON_PROC*)&dll_PyMapping_Check},
522 {"PyIter_Next", (PYTHON_PROC*)&dll_PyIter_Next},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 {"PyModule_GetDict", (PYTHON_PROC*)&dll_PyModule_GetDict},
Bram Moolenaarf9c9b322013-06-10 20:47:36 +0200524 {"PyModule_AddObject", (PYTHON_PROC*)&dll_PyModule_AddObject},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525 {"PyRun_SimpleString", (PYTHON_PROC*)&dll_PyRun_SimpleString},
Bram Moolenaardb913952012-06-29 12:54:53 +0200526 {"PyRun_String", (PYTHON_PROC*)&dll_PyRun_String},
Bram Moolenaard620aa92013-05-17 16:40:06 +0200527 {"PyObject_GetAttrString", (PYTHON_PROC*)&dll_PyObject_GetAttrString},
Bram Moolenaara9922d62013-05-30 13:01:18 +0200528 {"PyObject_HasAttrString", (PYTHON_PROC*)&dll_PyObject_HasAttrString},
Bram Moolenaard620aa92013-05-17 16:40:06 +0200529 {"PyObject_SetAttrString", (PYTHON_PROC*)&dll_PyObject_SetAttrString},
530 {"PyObject_CallFunctionObjArgs", (PYTHON_PROC*)&dll_PyObject_CallFunctionObjArgs},
Bram Moolenaar9f3685a2013-06-12 14:20:36 +0200531 {"PyObject_CallFunction", (PYTHON_PROC*)&dll_PyObject_CallFunction},
Bram Moolenaarf4258302013-06-02 18:20:17 +0200532 {"PyObject_Call", (PYTHON_PROC*)&dll_PyObject_Call},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533 {"PyString_AsString", (PYTHON_PROC*)&dll_PyString_AsString},
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200534 {"PyString_AsStringAndSize", (PYTHON_PROC*)&dll_PyString_AsStringAndSize},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 {"PyString_FromString", (PYTHON_PROC*)&dll_PyString_FromString},
Bram Moolenaar1a3b5692013-05-30 12:40:39 +0200536 {"PyString_FromFormat", (PYTHON_PROC*)&dll_PyString_FromFormat},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537 {"PyString_FromStringAndSize", (PYTHON_PROC*)&dll_PyString_FromStringAndSize},
538 {"PyString_Size", (PYTHON_PROC*)&dll_PyString_Size},
539 {"PyString_Type", (PYTHON_PROC*)&dll_PyString_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200540 {"PyUnicode_Type", (PYTHON_PROC*)&dll_PyUnicode_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200541 {"PyFloat_Type", (PYTHON_PROC*)&dll_PyFloat_Type},
542 {"PyFloat_AsDouble", (PYTHON_PROC*)&dll_PyFloat_AsDouble},
543 {"PyFloat_FromDouble", (PYTHON_PROC*)&dll_PyFloat_FromDouble},
544 {"PyImport_AddModule", (PYTHON_PROC*)&dll_PyImport_AddModule},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545 {"PySys_SetObject", (PYTHON_PROC*)&dll_PySys_SetObject},
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200546 {"PySys_GetObject", (PYTHON_PROC*)&dll_PySys_GetObject},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547 {"PySys_SetArgv", (PYTHON_PROC*)&dll_PySys_SetArgv},
548 {"PyType_Type", (PYTHON_PROC*)&dll_PyType_Type},
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100549 {"PyType_Ready", (PYTHON_PROC*)&dll_PyType_Ready},
Bram Moolenaara9922d62013-05-30 13:01:18 +0200550 {"PyType_GenericAlloc", (PYTHON_PROC*)&dll_PyType_GenericAlloc},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 {"Py_FindMethod", (PYTHON_PROC*)&dll_Py_FindMethod},
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100552 {"Py_SetPythonHome", (PYTHON_PROC*)&dll_Py_SetPythonHome},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 {"Py_Initialize", (PYTHON_PROC*)&dll_Py_Initialize},
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000554 {"Py_Finalize", (PYTHON_PROC*)&dll_Py_Finalize},
555 {"Py_IsInitialized", (PYTHON_PROC*)&dll_Py_IsInitialized},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 {"_PyObject_New", (PYTHON_PROC*)&dll__PyObject_New},
Bram Moolenaar774267b2013-05-21 20:51:59 +0200557 {"_PyObject_GC_New", (PYTHON_PROC*)&dll__PyObject_GC_New},
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200558# ifdef Py_underscore_GC
559 {"_PyObject_GC_Del", (PYTHON_PROC*)&dll__PyObject_GC_Del},
560 {"_PyObject_GC_UnTrack", (PYTHON_PROC*)&dll__PyObject_GC_UnTrack},
561# else
Bram Moolenaar774267b2013-05-21 20:51:59 +0200562 {"PyObject_GC_Del", (PYTHON_PROC*)&dll_PyObject_GC_Del},
563 {"PyObject_GC_UnTrack", (PYTHON_PROC*)&dll_PyObject_GC_UnTrack},
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200564# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 {"PyObject_Init", (PYTHON_PROC*)&dll__PyObject_Init},
Bram Moolenaardb913952012-06-29 12:54:53 +0200566 {"PyObject_GetIter", (PYTHON_PROC*)&dll_PyObject_GetIter},
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200567 {"PyObject_IsTrue", (PYTHON_PROC*)&dll_PyObject_IsTrue},
Bram Moolenaare7211222012-06-30 13:21:08 +0200568# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
Bram Moolenaardb913952012-06-29 12:54:53 +0200569 {"_PyObject_NextNotImplemented", (PYTHON_PROC*)&dll__PyObject_NextNotImplemented},
Bram Moolenaare7211222012-06-30 13:21:08 +0200570# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 {"_Py_NoneStruct", (PYTHON_PROC*)&dll__Py_NoneStruct},
Bram Moolenaar66b79852012-09-21 14:00:35 +0200572 {"_Py_ZeroStruct", (PYTHON_PROC*)&dll__Py_ZeroStruct},
573 {"_Py_TrueStruct", (PYTHON_PROC*)&dll__Py_TrueStruct},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
Bram Moolenaar0014a532013-05-29 21:33:39 +0200575# ifdef Py_DEBUG
576 {"_Py_NegativeRefcount", (PYTHON_PROC*)&dll__Py_NegativeRefcount},
577 {"_Py_RefTotal", (PYTHON_PROC*)&dll__Py_RefTotal},
578 {"_Py_Dealloc", (PYTHON_PROC*)&dll__Py_Dealloc},
579# endif
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200580 {"PyType_IsSubtype", (PYTHON_PROC*)&dll_PyType_IsSubtype},
581# endif
582# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
Bram Moolenaar0014a532013-05-29 21:33:39 +0200583# if defined(Py_DEBUG) && !defined(Py_DEBUG_NO_PYMALLOC)
584 {"_PyObject_DebugFree", (PYTHON_PROC*)&dll__PyObject_DebugFree},
585 {"_PyObject_DebugMalloc", (PYTHON_PROC*)&dll__PyObject_DebugMalloc},
586# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587 {"PyObject_Malloc", (PYTHON_PROC*)&dll_PyObject_Malloc},
588 {"PyObject_Free", (PYTHON_PROC*)&dll_PyObject_Free},
Bram Moolenaar0014a532013-05-29 21:33:39 +0200589# endif
590# endif
591# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02050000 \
592 && SIZEOF_SIZE_T != SIZEOF_INT
593# ifdef Py_DEBUG
594 {"Py_InitModule4TraceRefs_64", (PYTHON_PROC*)&dll_Py_InitModule4},
595# else
596 {"Py_InitModule4_64", (PYTHON_PROC*)&dll_Py_InitModule4},
597# endif
598# else
599# ifdef Py_DEBUG
600 {"Py_InitModule4TraceRefs", (PYTHON_PROC*)&dll_Py_InitModule4},
601# else
602 {"Py_InitModule4", (PYTHON_PROC*)&dll_Py_InitModule4},
603# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200605# ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +0200606 {"PyCapsule_New", (PYTHON_PROC*)&dll_PyCapsule_New},
607 {"PyCapsule_GetPointer", (PYTHON_PROC*)&dll_PyCapsule_GetPointer},
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200608# else
609 {"PyCObject_FromVoidPtr", (PYTHON_PROC*)&dll_PyCObject_FromVoidPtr},
610 {"PyCObject_AsVoidPtr", (PYTHON_PROC*)&dll_PyCObject_AsVoidPtr},
611# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 {"", NULL},
613};
614
615/*
616 * Free python.dll
617 */
618 static void
619end_dynamic_python(void)
620{
621 if (hinstPython)
622 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200623 close_dll(hinstPython);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 hinstPython = 0;
625 }
626}
627
628/*
629 * Load library and get all pointers.
630 * Parameter 'libname' provides name of DLL.
631 * Return OK or FAIL.
632 */
633 static int
634python_runtime_link_init(char *libname, int verbose)
635{
636 int i;
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200637 void *ucs_as_encoded_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100639#if !(defined(PY_NO_RTLD_GLOBAL) && defined(PY3_NO_RTLD_GLOBAL)) && defined(UNIX) && defined(FEAT_PYTHON3)
Bram Moolenaarb744b2f2010-08-13 16:22:57 +0200640 /* Can't have Python and Python3 loaded at the same time.
641 * It cause a crash, because RTLD_GLOBAL is needed for
642 * standard C extension libraries of one or both python versions. */
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200643 if (python3_loaded())
644 {
Bram Moolenaar9dc93ae2011-08-28 16:00:19 +0200645 if (verbose)
646 EMSG(_("E836: This Vim cannot execute :python after using :py3"));
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200647 return FAIL;
648 }
649#endif
650
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651 if (hinstPython)
652 return OK;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200653 hinstPython = load_dll(libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654 if (!hinstPython)
655 {
656 if (verbose)
657 EMSG2(_(e_loadlib), libname);
658 return FAIL;
659 }
660
661 for (i = 0; python_funcname_table[i].ptr; ++i)
662 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200663 if ((*python_funcname_table[i].ptr = symbol_from_dll(hinstPython,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 python_funcname_table[i].name)) == NULL)
665 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200666 close_dll(hinstPython);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667 hinstPython = 0;
668 if (verbose)
669 EMSG2(_(e_loadfunc), python_funcname_table[i].name);
670 return FAIL;
671 }
672 }
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200673
674 /* Load unicode functions separately as only the ucs2 or the ucs4 functions
675 * will be present in the library. */
676 ucs_as_encoded_string = symbol_from_dll(hinstPython,
677 "PyUnicodeUCS2_AsEncodedString");
678 if (ucs_as_encoded_string == NULL)
679 ucs_as_encoded_string = symbol_from_dll(hinstPython,
680 "PyUnicodeUCS4_AsEncodedString");
681 if (ucs_as_encoded_string != NULL)
682 py_PyUnicode_AsEncodedString = ucs_as_encoded_string;
683 else
684 {
685 close_dll(hinstPython);
686 hinstPython = 0;
687 if (verbose)
688 EMSG2(_(e_loadfunc), "PyUnicode_UCSX_*");
689 return FAIL;
690 }
691
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 return OK;
693}
694
695/*
696 * If python is enabled (there is installed python on Windows system) return
697 * TRUE, else FALSE.
698 */
699 int
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000700python_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701{
702 return python_runtime_link_init(DYNAMIC_PYTHON_DLL, verbose) == OK;
703}
704
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200705/*
706 * Load the standard Python exceptions - don't import the symbols from the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 * DLL, as this can cause errors (importing data symbols is not reliable).
708 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 static void
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200710get_exceptions(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711{
712 PyObject *exmod = PyImport_ImportModule("exceptions");
713 PyObject *exdict = PyModule_GetDict(exmod);
714 imp_PyExc_AttributeError = PyDict_GetItemString(exdict, "AttributeError");
715 imp_PyExc_IndexError = PyDict_GetItemString(exdict, "IndexError");
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200716 imp_PyExc_KeyError = PyDict_GetItemString(exdict, "KeyError");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 imp_PyExc_KeyboardInterrupt = PyDict_GetItemString(exdict, "KeyboardInterrupt");
718 imp_PyExc_TypeError = PyDict_GetItemString(exdict, "TypeError");
719 imp_PyExc_ValueError = PyDict_GetItemString(exdict, "ValueError");
Bram Moolenaar8661b172013-05-15 15:44:28 +0200720 imp_PyExc_RuntimeError = PyDict_GetItemString(exdict, "RuntimeError");
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200721 imp_PyExc_ImportError = PyDict_GetItemString(exdict, "ImportError");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722 Py_XINCREF(imp_PyExc_AttributeError);
723 Py_XINCREF(imp_PyExc_IndexError);
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200724 Py_XINCREF(imp_PyExc_KeyError);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 Py_XINCREF(imp_PyExc_KeyboardInterrupt);
726 Py_XINCREF(imp_PyExc_TypeError);
727 Py_XINCREF(imp_PyExc_ValueError);
Bram Moolenaar8661b172013-05-15 15:44:28 +0200728 Py_XINCREF(imp_PyExc_RuntimeError);
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200729 Py_XINCREF(imp_PyExc_ImportError);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 Py_XDECREF(exmod);
731}
732#endif /* DYNAMIC_PYTHON */
733
Bram Moolenaardb913952012-06-29 12:54:53 +0200734static int initialised = 0;
735#define PYINITIALISED initialised
736
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +0200737#define DESTRUCTOR_FINISH(self) self->ob_type->tp_free((PyObject*)self);
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200738
Bram Moolenaar971db462013-05-12 18:44:48 +0200739#define WIN_PYTHON_REF(win) win->w_python_ref
740#define BUF_PYTHON_REF(buf) buf->b_python_ref
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200741#define TAB_PYTHON_REF(tab) tab->tp_python_ref
Bram Moolenaar971db462013-05-12 18:44:48 +0200742
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200743static PyObject *OutputGetattr(PyObject *, char *);
744static PyObject *BufferGetattr(PyObject *, char *);
745static PyObject *WindowGetattr(PyObject *, char *);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200746static PyObject *TabPageGetattr(PyObject *, char *);
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200747static PyObject *RangeGetattr(PyObject *, char *);
748static PyObject *DictionaryGetattr(PyObject *, char*);
749static PyObject *ListGetattr(PyObject *, char *);
750static PyObject *FunctionGetattr(PyObject *, char *);
751
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +0200752#ifndef Py_VISIT
753# define Py_VISIT(obj) visit(obj, arg)
754#endif
755#ifndef Py_CLEAR
756# define Py_CLEAR(obj) \
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200757 { \
758 Py_XDECREF(obj); \
759 obj = NULL; \
760 }
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +0200761#endif
762
Bram Moolenaarfdde8802013-05-30 15:38:24 +0200763#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
764 static void *
765py_memsave(void *p, size_t len)
766{
767 void *r;
768
769 if (!(r = PyMem_Malloc(len)))
770 return NULL;
771 mch_memmove(r, p, len);
772 return r;
773}
774
775# define PY_STRSAVE(s) ((char_u *) py_memsave(s, STRLEN(s) + 1))
776#endif
777
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200778/*
779 * Include the code shared with if_python3.c
780 */
781#include "if_py_both.h"
782
783
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784/******************************************************
785 * Internal function prototypes.
786 */
787
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788static int PythonMod_Init(void);
789
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790
791/******************************************************
792 * 1. Python interpreter main program.
793 */
794
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795#if PYTHON_API_VERSION < 1007 /* Python 1.4 */
796typedef PyObject PyThreadState;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000797#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798
Bram Moolenaar71700b82013-05-15 17:49:05 +0200799#ifndef PY_CAN_RECURSE
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000800static PyThreadState *saved_python_thread = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801
802/*
803 * Suspend a thread of the Python interpreter, other threads are allowed to
804 * run.
805 */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000806 static void
807Python_SaveThread(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808{
809 saved_python_thread = PyEval_SaveThread();
810}
811
812/*
813 * Restore a thread of the Python interpreter, waits for other threads to
814 * block.
815 */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000816 static void
817Python_RestoreThread(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818{
819 PyEval_RestoreThread(saved_python_thread);
820 saved_python_thread = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000821}
Bram Moolenaar71700b82013-05-15 17:49:05 +0200822#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 void
825python_end()
826{
Bram Moolenaara5792f52005-11-23 21:25:05 +0000827 static int recurse = 0;
828
829 /* If a crash occurs while doing this, don't try again. */
830 if (recurse != 0)
831 return;
832
833 ++recurse;
834
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835#ifdef DYNAMIC_PYTHON
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000836 if (hinstPython && Py_IsInitialized())
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000837 {
Bram Moolenaar71700b82013-05-15 17:49:05 +0200838# ifdef PY_CAN_RECURSE
839 PyGILState_Ensure();
840# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000841 Python_RestoreThread(); /* enter python */
Bram Moolenaar71700b82013-05-15 17:49:05 +0200842# endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000843 Py_Finalize();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000844 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 end_dynamic_python();
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000846#else
847 if (Py_IsInitialized())
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000848 {
Bram Moolenaar71700b82013-05-15 17:49:05 +0200849# ifdef PY_CAN_RECURSE
850 PyGILState_Ensure();
851# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000852 Python_RestoreThread(); /* enter python */
Bram Moolenaar71700b82013-05-15 17:49:05 +0200853# endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000854 Py_Finalize();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000855 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856#endif
Bram Moolenaara5792f52005-11-23 21:25:05 +0000857
858 --recurse;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859}
860
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200861#if (defined(DYNAMIC_PYTHON) && defined(FEAT_PYTHON3)) || defined(PROTO)
862 int
863python_loaded()
864{
865 return (hinstPython != 0);
866}
867#endif
868
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 static int
870Python_Init(void)
871{
872 if (!initialised)
873 {
874#ifdef DYNAMIC_PYTHON
875 if (!python_enabled(TRUE))
876 {
877 EMSG(_("E263: Sorry, this command is disabled, the Python library could not be loaded."));
878 goto fail;
879 }
880#endif
881
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100882#ifdef PYTHON_HOME
883 Py_SetPythonHome(PYTHON_HOME);
884#endif
885
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200886 init_structs();
887
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888#if !defined(MACOS) || defined(MACOS_X_UNIX)
889 Py_Initialize();
890#else
891 PyMac_Initialize();
892#endif
Bram Moolenaar02366252013-01-30 11:44:39 +0100893 /* Initialise threads, and below save the state using
Bram Moolenaar76d711c2013-02-13 14:17:08 +0100894 * PyEval_SaveThread. Without the call to PyEval_SaveThread, thread
Bram Moolenaar02366252013-01-30 11:44:39 +0100895 * specific state (such as the system trace hook), will be lost
896 * between invocations of Python code. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 PyEval_InitThreads();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898#ifdef DYNAMIC_PYTHON
899 get_exceptions();
900#endif
901
Bram Moolenaar1dc28782013-05-21 19:11:01 +0200902 if (PythonIO_Init_io())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 goto fail;
904
905 if (PythonMod_Init())
906 goto fail;
907
Bram Moolenaardb913952012-06-29 12:54:53 +0200908 globals = PyModule_GetDict(PyImport_AddModule("__main__"));
909
Bram Moolenaar9774ecc2008-11-20 10:04:53 +0000910 /* Remove the element from sys.path that was added because of our
911 * argv[0] value in PythonMod_Init(). Previously we used an empty
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200912 * string, but depending on the OS we then get an empty entry or
Bram Moolenaar9774ecc2008-11-20 10:04:53 +0000913 * the current directory in sys.path. */
914 PyRun_SimpleString("import sys; sys.path = filter(lambda x: x != '/must>not&exist', sys.path)");
915
Bram Moolenaar76d711c2013-02-13 14:17:08 +0100916 /* lock is created and acquired in PyEval_InitThreads() and thread
917 * state is created in Py_Initialize()
918 * there _PyGILState_NoteThreadState() also sets gilcounter to 1
919 * (python must have threads enabled!)
920 * so the following does both: unlock GIL and save thread state in TLS
921 * without deleting thread state
922 */
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200923#ifndef PY_CAN_RECURSE
924 saved_python_thread =
925#endif
926 PyEval_SaveThread();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927
928 initialised = 1;
929 }
930
931 return 0;
932
933fail:
934 /* We call PythonIO_Flush() here to print any Python errors.
935 * This is OK, as it is possible to call this function even
Bram Moolenaar1dc28782013-05-21 19:11:01 +0200936 * if PythonIO_Init_io() has not completed successfully (it will
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937 * not do anything in this case).
938 */
939 PythonIO_Flush();
940 return -1;
941}
942
943/*
944 * External interface
945 */
946 static void
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200947DoPyCommand(const char *cmd, rangeinitializer init_range, runner run, void *arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000949#ifndef PY_CAN_RECURSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 static int recursive = 0;
951#endif
952#if defined(MACOS) && !defined(MACOS_X_UNIX)
953 GrafPtr oldPort;
954#endif
955#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
956 char *saved_locale;
957#endif
Bram Moolenaar71700b82013-05-15 17:49:05 +0200958#ifdef PY_CAN_RECURSE
959 PyGILState_STATE pygilstate;
960#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961
962#ifndef PY_CAN_RECURSE
963 if (recursive)
964 {
965 EMSG(_("E659: Cannot invoke Python recursively"));
966 return;
967 }
968 ++recursive;
969#endif
970
971#if defined(MACOS) && !defined(MACOS_X_UNIX)
972 GetPort(&oldPort);
973 /* Check if the Python library is available */
974 if ((Ptr)PyMac_Initialize == (Ptr)kUnresolvedCFragSymbolAddress)
975 goto theend;
976#endif
977 if (Python_Init())
978 goto theend;
979
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200980 init_range(arg);
981
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 Python_Release_Vim(); /* leave vim */
983
984#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
985 /* Python only works properly when the LC_NUMERIC locale is "C". */
986 saved_locale = setlocale(LC_NUMERIC, NULL);
987 if (saved_locale == NULL || STRCMP(saved_locale, "C") == 0)
988 saved_locale = NULL;
989 else
990 {
991 /* Need to make a copy, value may change when setting new locale. */
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200992 saved_locale = (char *) PY_STRSAVE(saved_locale);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 (void)setlocale(LC_NUMERIC, "C");
994 }
995#endif
996
Bram Moolenaar71700b82013-05-15 17:49:05 +0200997#ifdef PY_CAN_RECURSE
998 pygilstate = PyGILState_Ensure();
999#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 Python_RestoreThread(); /* enter python */
Bram Moolenaar71700b82013-05-15 17:49:05 +02001001#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02001003 run((char *) cmd, arg
1004#ifdef PY_CAN_RECURSE
1005 , &pygilstate
1006#endif
1007 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008
Bram Moolenaar71700b82013-05-15 17:49:05 +02001009#ifdef PY_CAN_RECURSE
1010 PyGILState_Release(pygilstate);
1011#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 Python_SaveThread(); /* leave python */
Bram Moolenaar71700b82013-05-15 17:49:05 +02001013#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014
1015#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1016 if (saved_locale != NULL)
1017 {
1018 (void)setlocale(LC_NUMERIC, saved_locale);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02001019 PyMem_Free(saved_locale);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020 }
1021#endif
1022
1023 Python_Lock_Vim(); /* enter vim */
1024 PythonIO_Flush();
1025#if defined(MACOS) && !defined(MACOS_X_UNIX)
1026 SetPort(oldPort);
1027#endif
1028
1029theend:
1030#ifndef PY_CAN_RECURSE
1031 --recursive;
1032#endif
Bram Moolenaardb913952012-06-29 12:54:53 +02001033 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034}
1035
1036/*
1037 * ":python"
1038 */
1039 void
1040ex_python(exarg_T *eap)
1041{
1042 char_u *script;
1043
1044 script = script_get(eap, eap->arg);
1045 if (!eap->skip)
1046 {
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001047 DoPyCommand(script == NULL ? (char *) eap->arg : (char *) script,
1048 (rangeinitializer) init_range_cmd,
1049 (runner) run_cmd,
1050 (void *) eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 }
1052 vim_free(script);
1053}
1054
1055#define BUFFER_SIZE 1024
1056
1057/*
1058 * ":pyfile"
1059 */
1060 void
1061ex_pyfile(exarg_T *eap)
1062{
1063 static char buffer[BUFFER_SIZE];
1064 const char *file = (char *)eap->arg;
1065 char *p;
1066
1067 /* Have to do it like this. PyRun_SimpleFile requires you to pass a
1068 * stdio file pointer, but Vim and the Python DLL are compiled with
1069 * different options under Windows, meaning that stdio pointers aren't
1070 * compatible between the two. Yuk.
1071 *
1072 * Put the string "execfile('file')" into buffer. But, we need to
1073 * escape any backslashes or single quotes in the file name, so that
1074 * Python won't mangle the file name.
1075 */
1076 strcpy(buffer, "execfile('");
1077 p = buffer + 10; /* size of "execfile('" */
1078
1079 while (*file && p < buffer + (BUFFER_SIZE - 3))
1080 {
1081 if (*file == '\\' || *file == '\'')
1082 *p++ = '\\';
1083 *p++ = *file++;
1084 }
1085
1086 /* If we didn't finish the file name, we hit a buffer overflow */
1087 if (*file != '\0')
1088 return;
1089
1090 /* Put in the terminating "')" and a null */
1091 *p++ = '\'';
1092 *p++ = ')';
1093 *p++ = '\0';
1094
1095 /* Execute the file */
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001096 DoPyCommand(buffer,
1097 (rangeinitializer) init_range_cmd,
1098 (runner) run_cmd,
1099 (void *) eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100}
1101
Bram Moolenaard620aa92013-05-17 16:40:06 +02001102 void
1103ex_pydo(exarg_T *eap)
1104{
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001105 DoPyCommand((char *)eap->arg,
1106 (rangeinitializer) init_range_cmd,
1107 (runner)run_do,
1108 (void *)eap);
Bram Moolenaard620aa92013-05-17 16:40:06 +02001109}
1110
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111/******************************************************
1112 * 2. Python output stream: writes output via [e]msg().
1113 */
1114
1115/* Implementation functions
1116 */
1117
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 static PyObject *
1119OutputGetattr(PyObject *self, char *name)
1120{
1121 if (strcmp(name, "softspace") == 0)
1122 return PyInt_FromLong(((OutputObject *)(self))->softspace);
Bram Moolenaardd8aca62013-05-29 22:36:10 +02001123 else if (strcmp(name, "__members__") == 0)
1124 return ObjectDir(NULL, OutputAttrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125
1126 return Py_FindMethod(OutputMethods, self, name);
1127}
1128
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129/******************************************************
1130 * 3. Implementation of the Vim module for Python
1131 */
1132
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133/* Window type - Implementation functions
1134 * --------------------------------------
1135 */
1136
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137#define WindowType_Check(obj) ((obj)->ob_type == &WindowType)
1138
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139/* Buffer type - Implementation functions
1140 * --------------------------------------
1141 */
1142
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143#define BufferType_Check(obj) ((obj)->ob_type == &BufferType)
1144
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001145static PyInt BufferAssItem(PyObject *, PyInt, PyObject *);
1146static PyInt BufferAssSlice(PyObject *, PyInt, PyInt, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148/* Line range type - Implementation functions
1149 * --------------------------------------
1150 */
1151
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152#define RangeType_Check(obj) ((obj)->ob_type == &RangeType)
1153
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001154static PyInt RangeAssItem(PyObject *, PyInt, PyObject *);
1155static PyInt RangeAssSlice(PyObject *, PyInt, PyInt, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157/* Current objects type - Implementation functions
1158 * -----------------------------------------------
1159 */
1160
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161static PySequenceMethods BufferAsSeq = {
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001162 (PyInquiry) BufferLength, /* sq_length, len(x) */
Bram Moolenaar77fceb82012-09-05 18:54:48 +02001163 (binaryfunc) 0, /* BufferConcat, sq_concat, x+y */
1164 (PyIntArgFunc) 0, /* BufferRepeat, sq_repeat, x*n */
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001165 (PyIntArgFunc) BufferItem, /* sq_item, x[i] */
1166 (PyIntIntArgFunc) BufferSlice, /* sq_slice, x[i:j] */
1167 (PyIntObjArgProc) BufferAssItem, /* sq_ass_item, x[i]=v */
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001168 (PyIntIntObjArgProc) BufferAssSlice, /* sq_ass_slice, x[i:j]=v */
1169 (objobjproc) 0,
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001170 (binaryfunc) 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172};
1173
1174/* Buffer object - Implementation
1175 */
1176
1177 static PyObject *
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178BufferGetattr(PyObject *self, char *name)
1179{
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001180 PyObject *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181
Bram Moolenaar9e822c02013-05-29 22:15:30 +02001182 if ((r = BufferAttrValid((BufferObject *)(self), name)))
1183 return r;
1184
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001185 if (CheckBuffer((BufferObject *)(self)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 return NULL;
1187
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001188 r = BufferAttr((BufferObject *)(self), name);
1189 if (r || PyErr_Occurred())
1190 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 else
1192 return Py_FindMethod(BufferMethods, self, name);
1193}
1194
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195/******************/
1196
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001197 static PyInt
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001198BufferAssItem(PyObject *self, PyInt n, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199{
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02001200 return RBAsItem((BufferObject *)(self), n, val, 1, -1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201}
1202
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001203 static PyInt
1204BufferAssSlice(PyObject *self, PyInt lo, PyInt hi, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205{
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02001206 return RBAsSlice((BufferObject *)(self), lo, hi, val, 1, -1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207}
1208
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209static PySequenceMethods RangeAsSeq = {
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001210 (PyInquiry) RangeLength, /* sq_length, len(x) */
1211 (binaryfunc) 0, /* RangeConcat, */ /* sq_concat, x+y */
1212 (PyIntArgFunc) 0, /* RangeRepeat, */ /* sq_repeat, x*n */
1213 (PyIntArgFunc) RangeItem, /* sq_item, x[i] */
1214 (PyIntIntArgFunc) RangeSlice, /* sq_slice, x[i:j] */
1215 (PyIntObjArgProc) RangeAssItem, /* sq_ass_item, x[i]=v */
1216 (PyIntIntObjArgProc) RangeAssSlice, /* sq_ass_slice, x[i:j]=v */
1217 (objobjproc) 0,
1218#if PY_MAJOR_VERSION >= 2
1219 (binaryfunc) 0,
1220 0,
1221#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222};
1223
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224/* Line range object - Implementation
1225 */
1226
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 static PyObject *
1228RangeGetattr(PyObject *self, char *name)
1229{
1230 if (strcmp(name, "start") == 0)
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001231 return Py_BuildValue(Py_ssize_t_fmt, ((RangeObject *)(self))->start - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 else if (strcmp(name, "end") == 0)
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001233 return Py_BuildValue(Py_ssize_t_fmt, ((RangeObject *)(self))->end - 1);
Bram Moolenaardd8aca62013-05-29 22:36:10 +02001234 else if (strcmp(name, "__members__") == 0)
1235 return ObjectDir(NULL, RangeAttrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 else
1237 return Py_FindMethod(RangeMethods, self, name);
1238}
1239
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240/****************/
1241
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001242 static PyInt
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001243RangeAssItem(PyObject *self, PyInt n, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244{
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001245 return RBAsItem(((RangeObject *)(self))->buf, n, val,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001246 ((RangeObject *)(self))->start,
1247 ((RangeObject *)(self))->end,
1248 &((RangeObject *)(self))->end);
1249}
1250
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001251 static PyInt
1252RangeAssSlice(PyObject *self, PyInt lo, PyInt hi, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253{
Bram Moolenaar19e60942011-06-19 00:27:51 +02001254 return RBAsSlice(((RangeObject *)(self))->buf, lo, hi, val,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 ((RangeObject *)(self))->start,
1256 ((RangeObject *)(self))->end,
1257 &((RangeObject *)(self))->end);
1258}
1259
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001260/* TabPage object - Implementation
1261 */
1262
1263 static PyObject *
1264TabPageGetattr(PyObject *self, char *name)
1265{
1266 PyObject *r;
1267
Bram Moolenaar9e822c02013-05-29 22:15:30 +02001268 if ((r = TabPageAttrValid((TabPageObject *)(self), name)))
1269 return r;
1270
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001271 if (CheckTabPage((TabPageObject *)(self)))
1272 return NULL;
1273
1274 r = TabPageAttr((TabPageObject *)(self), name);
1275 if (r || PyErr_Occurred())
1276 return r;
1277 else
1278 return Py_FindMethod(TabPageMethods, self, name);
1279}
1280
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281/* Window object - Implementation
1282 */
1283
1284 static PyObject *
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285WindowGetattr(PyObject *self, char *name)
1286{
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001287 PyObject *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288
Bram Moolenaar9e822c02013-05-29 22:15:30 +02001289 if ((r = WindowAttrValid((WindowObject *)(self), name)))
1290 return r;
1291
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001292 if (CheckWindow((WindowObject *)(self)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 return NULL;
1294
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001295 r = WindowAttr((WindowObject *)(self), name);
1296 if (r || PyErr_Occurred())
1297 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 else
1299 return Py_FindMethod(WindowMethods, self, name);
1300}
1301
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001302/* Tab page list object - Definitions
1303 */
1304
1305static PySequenceMethods TabListAsSeq = {
1306 (PyInquiry) TabListLength, /* sq_length, len(x) */
1307 (binaryfunc) 0, /* sq_concat, x+y */
1308 (PyIntArgFunc) 0, /* sq_repeat, x*n */
1309 (PyIntArgFunc) TabListItem, /* sq_item, x[i] */
1310 (PyIntIntArgFunc) 0, /* sq_slice, x[i:j] */
1311 (PyIntObjArgProc) 0, /* sq_ass_item, x[i]=v */
1312 (PyIntIntObjArgProc) 0, /* sq_ass_slice, x[i:j]=v */
1313 (objobjproc) 0,
1314#if PY_MAJOR_VERSION >= 2
1315 (binaryfunc) 0,
1316 0,
1317#endif
1318};
1319
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320/* Window list object - Definitions
1321 */
1322
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323static PySequenceMethods WinListAsSeq = {
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001324 (PyInquiry) WinListLength, /* sq_length, len(x) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 (binaryfunc) 0, /* sq_concat, x+y */
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001326 (PyIntArgFunc) 0, /* sq_repeat, x*n */
1327 (PyIntArgFunc) WinListItem, /* sq_item, x[i] */
1328 (PyIntIntArgFunc) 0, /* sq_slice, x[i:j] */
1329 (PyIntObjArgProc) 0, /* sq_ass_item, x[i]=v */
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001330 (PyIntIntObjArgProc) 0, /* sq_ass_slice, x[i:j]=v */
1331 (objobjproc) 0,
1332#if PY_MAJOR_VERSION >= 2
1333 (binaryfunc) 0,
1334 0,
1335#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336};
1337
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338/* External interface
1339 */
1340
1341 void
1342python_buffer_free(buf_T *buf)
1343{
Bram Moolenaar971db462013-05-12 18:44:48 +02001344 if (BUF_PYTHON_REF(buf) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345 {
Bram Moolenaar971db462013-05-12 18:44:48 +02001346 BufferObject *bp = BUF_PYTHON_REF(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 bp->buf = INVALID_BUFFER_VALUE;
Bram Moolenaar971db462013-05-12 18:44:48 +02001348 BUF_PYTHON_REF(buf) = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 }
1350}
1351
1352#if defined(FEAT_WINDOWS) || defined(PROTO)
1353 void
1354python_window_free(win_T *win)
1355{
Bram Moolenaar971db462013-05-12 18:44:48 +02001356 if (WIN_PYTHON_REF(win) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 {
Bram Moolenaar971db462013-05-12 18:44:48 +02001358 WindowObject *wp = WIN_PYTHON_REF(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 wp->win = INVALID_WINDOW_VALUE;
Bram Moolenaar971db462013-05-12 18:44:48 +02001360 WIN_PYTHON_REF(win) = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 }
1362}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001363
1364 void
1365python_tabpage_free(tabpage_T *tab)
1366{
1367 if (TAB_PYTHON_REF(tab) != NULL)
1368 {
1369 TabPageObject *tp = TAB_PYTHON_REF(tab);
1370 tp->tab = INVALID_TABPAGE_VALUE;
1371 TAB_PYTHON_REF(tab) = NULL;
1372 }
1373}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374#endif
1375
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001376 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377PythonMod_Init(void)
1378{
Bram Moolenaar9774ecc2008-11-20 10:04:53 +00001379 /* The special value is removed from sys.path in Python_Init(). */
Bram Moolenaar9f3685a2013-06-12 14:20:36 +02001380 static char *(argv[2]) = {"/must>not&exist/foo", NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001382 if (init_types())
1383 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384
1385 /* Set sys.argv[] to avoid a crash in warn(). */
1386 PySys_SetArgv(1, argv);
1387
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001388 vim_module = Py_InitModule4("vim", VimMethods, (char *)NULL,
1389 (PyObject *)NULL, PYTHON_API_VERSION);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001391 if (populate_module(vim_module, PyModule_AddObject,
1392 PyObject_GetAttrString))
1393 return -1;
1394
1395 if (init_sys_path())
1396 return -1;
1397
1398 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399}
1400
1401/*************************************************************************
1402 * 4. Utility functions for handling the interface between Vim and Python.
1403 */
1404
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405/* Convert a Vim line into a Python string.
1406 * All internal newlines are replaced by null characters.
1407 *
1408 * On errors, the Python exception data is set, and NULL is returned.
1409 */
1410 static PyObject *
1411LineToString(const char *str)
1412{
1413 PyObject *result;
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001414 PyInt len = strlen(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415 char *p;
1416
1417 /* Allocate an Python string object, with uninitialised contents. We
1418 * must do it this way, so that we can modify the string in place
1419 * later. See the Python source, Objects/stringobject.c for details.
1420 */
1421 result = PyString_FromStringAndSize(NULL, len);
1422 if (result == NULL)
1423 return NULL;
1424
1425 p = PyString_AsString(result);
1426
1427 while (*str)
1428 {
1429 if (*str == '\n')
1430 *p = '\0';
1431 else
1432 *p = *str;
1433
1434 ++p;
1435 ++str;
1436 }
1437
1438 return result;
1439}
1440
Bram Moolenaardb913952012-06-29 12:54:53 +02001441 static PyObject *
1442DictionaryGetattr(PyObject *self, char *name)
1443{
Bram Moolenaar66b79852012-09-21 14:00:35 +02001444 DictionaryObject *this = ((DictionaryObject *) (self));
1445
1446 if (strcmp(name, "locked") == 0)
1447 return PyInt_FromLong(this->dict->dv_lock);
1448 else if (strcmp(name, "scope") == 0)
1449 return PyInt_FromLong(this->dict->dv_scope);
Bram Moolenaardd8aca62013-05-29 22:36:10 +02001450 else if (strcmp(name, "__members__") == 0)
1451 return ObjectDir(NULL, DictionaryAttrs);
Bram Moolenaar66b79852012-09-21 14:00:35 +02001452
Bram Moolenaardb913952012-06-29 12:54:53 +02001453 return Py_FindMethod(DictionaryMethods, self, name);
1454}
1455
Bram Moolenaardb913952012-06-29 12:54:53 +02001456static PySequenceMethods ListAsSeq = {
1457 (PyInquiry) ListLength,
1458 (binaryfunc) 0,
1459 (PyIntArgFunc) 0,
1460 (PyIntArgFunc) ListItem,
1461 (PyIntIntArgFunc) ListSlice,
1462 (PyIntObjArgProc) ListAssItem,
1463 (PyIntIntObjArgProc) ListAssSlice,
1464 (objobjproc) 0,
1465#if PY_MAJOR_VERSION >= 2
1466 (binaryfunc) ListConcatInPlace,
1467 0,
1468#endif
1469};
1470
Bram Moolenaardb913952012-06-29 12:54:53 +02001471 static PyObject *
1472ListGetattr(PyObject *self, char *name)
1473{
Bram Moolenaar66b79852012-09-21 14:00:35 +02001474 if (strcmp(name, "locked") == 0)
1475 return PyInt_FromLong(((ListObject *)(self))->list->lv_lock);
Bram Moolenaardd8aca62013-05-29 22:36:10 +02001476 else if (strcmp(name, "__members__") == 0)
1477 return ObjectDir(NULL, ListAttrs);
Bram Moolenaar66b79852012-09-21 14:00:35 +02001478
Bram Moolenaardb913952012-06-29 12:54:53 +02001479 return Py_FindMethod(ListMethods, self, name);
1480}
1481
Bram Moolenaardb913952012-06-29 12:54:53 +02001482 static PyObject *
1483FunctionGetattr(PyObject *self, char *name)
1484{
1485 FunctionObject *this = (FunctionObject *)(self);
1486
1487 if (strcmp(name, "name") == 0)
1488 return PyString_FromString((char *)(this->name));
Bram Moolenaardd8aca62013-05-29 22:36:10 +02001489 else if (strcmp(name, "__members__") == 0)
1490 return ObjectDir(NULL, FunctionAttrs);
Bram Moolenaardb913952012-06-29 12:54:53 +02001491 else
1492 return Py_FindMethod(FunctionMethods, self, name);
1493}
1494
1495 void
1496do_pyeval (char_u *str, typval_T *rettv)
1497{
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001498 DoPyCommand((char *) str,
1499 (rangeinitializer) init_range_eval,
1500 (runner) run_eval,
1501 (void *) rettv);
Bram Moolenaardb913952012-06-29 12:54:53 +02001502 switch(rettv->v_type)
1503 {
1504 case VAR_DICT: ++rettv->vval.v_dict->dv_refcount; break;
1505 case VAR_LIST: ++rettv->vval.v_list->lv_refcount; break;
1506 case VAR_FUNC: func_ref(rettv->vval.v_string); break;
Bram Moolenaar77fceb82012-09-05 18:54:48 +02001507 case VAR_UNKNOWN:
1508 rettv->v_type = VAR_NUMBER;
1509 rettv->vval.v_number = 0;
1510 break;
Bram Moolenaardb913952012-06-29 12:54:53 +02001511 }
1512}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513
1514/* Don't generate a prototype for the next function, it generates an error on
1515 * newer Python versions. */
1516#if PYTHON_API_VERSION < 1007 /* Python 1.4 */ && !defined(PROTO)
1517
1518 char *
1519Py_GetProgramName(void)
1520{
1521 return "vim";
1522}
1523#endif /* Python 1.4 */
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001524
Bram Moolenaardb913952012-06-29 12:54:53 +02001525 void
1526set_ref_in_python (int copyID)
1527{
1528 set_ref_in_py(copyID);
1529}