blob: 99781fcc80485e7a5c3183025908c52b956daabc [file] [log] [blame]
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001/* vi:set ts=8 sts=4 sw=4:
2 *
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/*
21 * Roland Puntaier 2009/sept/16:
22 * Adaptations to support both python3.x and python2.x
23 */
24
Bram Moolenaar0c1f3f42011-02-25 15:18:50 +010025/* uncomment this if used with the debug version of python */
26/* #define Py_DEBUG */
Bram Moolenaar0bdda372013-06-10 18:36:24 +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 Moolenaar0bdda372013-06-10 18:36:24 +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 */
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +020032
33#include "vim.h"
34
35#include <limits.h>
36
37/* Python.h defines _POSIX_THREADS itself (if needed) */
38#ifdef _POSIX_THREADS
39# undef _POSIX_THREADS
40#endif
41
Bram Moolenaard68554d2010-07-25 13:43:20 +020042#if defined(_WIN32) && defined(HAVE_FCNTL_H)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +020043# undef HAVE_FCNTL_H
44#endif
45
46#ifdef _DEBUG
47# undef _DEBUG
48#endif
49
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +020050#ifdef F_BLANK
51# undef F_BLANK
52#endif
53
Bram Moolenaar6df6f472010-07-18 18:04:50 +020054#ifdef HAVE_STDARG_H
55# undef HAVE_STDARG_H /* Python's config.h defines it as well. */
56#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +020057#ifdef _POSIX_C_SOURCE /* defined in feature.h */
58# undef _POSIX_C_SOURCE
59#endif
Bram Moolenaar6df6f472010-07-18 18:04:50 +020060#ifdef _XOPEN_SOURCE
61# undef _XOPEN_SOURCE /* pyconfig.h defines it as well. */
62#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +020063
Bram Moolenaar0bdda372013-06-10 18:36:24 +020064#define PY_SSIZE_T_CLEAN
65
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +020066#include <Python.h>
Bram Moolenaar0bdda372013-06-10 18:36:24 +020067
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +020068#if defined(MACOS) && !defined(MACOS_X_UNIX)
69# include "macglue.h"
70# include <CodeFragments.h>
71#endif
72#undef main /* Defined in python.h - aargh */
73#undef HAVE_FCNTL_H /* Clash with os_win32.h */
74
Bram Moolenaar3d64a312011-07-15 15:54:44 +020075/* The "surrogateescape" error handler is new in Python 3.1 */
76#if PY_VERSION_HEX >= 0x030100f0
77# define CODEC_ERROR_HANDLER "surrogateescape"
78#else
79# define CODEC_ERROR_HANDLER NULL
80#endif
81
Bram Moolenaar2afa3232012-06-29 16:28:28 +020082/* Python 3 does not support CObjects, always use Capsules */
83#define PY_USE_CAPSULE
84
Bram Moolenaar170bf1a2010-07-24 23:51:45 +020085#define PyInt Py_ssize_t
Bram Moolenaar32ac8cd2013-07-03 18:49:17 +020086#ifndef PyString_Check
87# define PyString_Check(obj) PyUnicode_Check(obj)
88#endif
Bram Moolenaare0324612013-07-09 17:30:55 +020089#define PyString_FromString(repr) \
90 PyUnicode_Decode(repr, STRLEN(repr), ENC_OPT, NULL)
Bram Moolenaar1a3b5692013-05-30 12:40:39 +020091#define PyString_FromFormat PyUnicode_FromFormat
Bram Moolenaar32ac8cd2013-07-03 18:49:17 +020092#ifndef PyInt_Check
93# define PyInt_Check(obj) PyLong_Check(obj)
94#endif
Bram Moolenaar77045652012-09-21 13:46:06 +020095#define PyInt_FromLong(i) PyLong_FromLong(i)
96#define PyInt_AsLong(obj) PyLong_AsLong(obj)
Bram Moolenaar4d1da492013-04-24 13:39:15 +020097#define Py_ssize_t_fmt "n"
Bram Moolenaara9922d62013-05-30 13:01:18 +020098#define Py_bytes_fmt "y"
Bram Moolenaar170bf1a2010-07-24 23:51:45 +020099
Bram Moolenaar063a46b2014-01-14 16:36:51 +0100100#define PyIntArgFunc ssizeargfunc
101#define PyIntObjArgProc ssizeobjargproc
102
Bram Moolenaar0c1f3f42011-02-25 15:18:50 +0100103#if defined(DYNAMIC_PYTHON3) || defined(PROTO)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200104
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200105# ifndef WIN3264
106# include <dlfcn.h>
107# define FARPROC void*
108# define HINSTANCE void*
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100109# if defined(PY_NO_RTLD_GLOBAL) && defined(PY3_NO_RTLD_GLOBAL)
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200110# define load_dll(n) dlopen((n), RTLD_LAZY)
111# else
112# define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
113# endif
114# define close_dll dlclose
115# define symbol_from_dll dlsym
116# else
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200117# define load_dll vimLoadLib
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200118# define close_dll FreeLibrary
119# define symbol_from_dll GetProcAddress
120# endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200121/*
122 * Wrapper defines
123 */
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200124# undef PyArg_Parse
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200125# define PyArg_Parse py3_PyArg_Parse
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200126# undef PyArg_ParseTuple
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200127# define PyArg_ParseTuple py3_PyArg_ParseTuple
Bram Moolenaar19e60942011-06-19 00:27:51 +0200128# define PyMem_Free py3_PyMem_Free
Bram Moolenaardb913952012-06-29 12:54:53 +0200129# define PyMem_Malloc py3_PyMem_Malloc
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200130# define PyDict_SetItemString py3_PyDict_SetItemString
131# define PyErr_BadArgument py3_PyErr_BadArgument
132# define PyErr_Clear py3_PyErr_Clear
Bram Moolenaarc476e522013-06-23 13:46:40 +0200133# define PyErr_Format py3_PyErr_Format
Bram Moolenaar4d369872013-02-20 16:09:43 +0100134# define PyErr_PrintEx py3_PyErr_PrintEx
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200135# define PyErr_NoMemory py3_PyErr_NoMemory
136# define PyErr_Occurred py3_PyErr_Occurred
137# define PyErr_SetNone py3_PyErr_SetNone
138# define PyErr_SetString py3_PyErr_SetString
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200139# define PyErr_SetObject py3_PyErr_SetObject
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200140# define PyErr_ExceptionMatches py3_PyErr_ExceptionMatches
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200141# define PyEval_InitThreads py3_PyEval_InitThreads
142# define PyEval_RestoreThread py3_PyEval_RestoreThread
143# define PyEval_SaveThread py3_PyEval_SaveThread
144# define PyGILState_Ensure py3_PyGILState_Ensure
145# define PyGILState_Release py3_PyGILState_Release
146# define PyLong_AsLong py3_PyLong_AsLong
147# define PyLong_FromLong py3_PyLong_FromLong
148# define PyList_GetItem py3_PyList_GetItem
149# define PyList_Append py3_PyList_Append
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200150# define PyList_Insert py3_PyList_Insert
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200151# define PyList_New py3_PyList_New
152# define PyList_SetItem py3_PyList_SetItem
153# define PyList_Size py3_PyList_Size
Bram Moolenaardb913952012-06-29 12:54:53 +0200154# define PySequence_Check py3_PySequence_Check
155# define PySequence_Size py3_PySequence_Size
156# define PySequence_GetItem py3_PySequence_GetItem
Bram Moolenaara9922d62013-05-30 13:01:18 +0200157# define PySequence_Fast py3_PySequence_Fast
Bram Moolenaardb913952012-06-29 12:54:53 +0200158# define PyTuple_Size py3_PyTuple_Size
159# define PyTuple_GetItem py3_PyTuple_GetItem
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200160# define PySlice_GetIndicesEx py3_PySlice_GetIndicesEx
161# define PyImport_ImportModule py3_PyImport_ImportModule
162# define PyObject_Init py3__PyObject_Init
163# define PyDict_New py3_PyDict_New
164# define PyDict_GetItemString py3_PyDict_GetItemString
Bram Moolenaardb913952012-06-29 12:54:53 +0200165# define PyDict_Next py3_PyDict_Next
166# define PyMapping_Check py3_PyMapping_Check
Bram Moolenaar32ac8cd2013-07-03 18:49:17 +0200167# ifndef PyMapping_Keys
168# define PyMapping_Keys py3_PyMapping_Keys
169# endif
Bram Moolenaardb913952012-06-29 12:54:53 +0200170# define PyIter_Next py3_PyIter_Next
171# define PyObject_GetIter py3_PyObject_GetIter
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200172# define PyObject_Repr py3_PyObject_Repr
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200173# define PyObject_GetItem py3_PyObject_GetItem
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200174# define PyObject_IsTrue py3_PyObject_IsTrue
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200175# define PyModule_GetDict py3_PyModule_GetDict
176#undef PyRun_SimpleString
177# define PyRun_SimpleString py3_PyRun_SimpleString
Bram Moolenaardb913952012-06-29 12:54:53 +0200178#undef PyRun_String
179# define PyRun_String py3_PyRun_String
Bram Moolenaar3dab2802013-05-15 18:28:13 +0200180# define PyObject_GetAttrString py3_PyObject_GetAttrString
Bram Moolenaara9922d62013-05-30 13:01:18 +0200181# define PyObject_HasAttrString py3_PyObject_HasAttrString
Bram Moolenaar3dab2802013-05-15 18:28:13 +0200182# define PyObject_SetAttrString py3_PyObject_SetAttrString
183# define PyObject_CallFunctionObjArgs py3_PyObject_CallFunctionObjArgs
Bram Moolenaar81c40c52013-06-12 14:41:04 +0200184# define _PyObject_CallFunction_SizeT py3__PyObject_CallFunction_SizeT
Bram Moolenaarf4258302013-06-02 18:20:17 +0200185# define PyObject_Call py3_PyObject_Call
Bram Moolenaar3dab2802013-05-15 18:28:13 +0200186# define PyEval_GetLocals py3_PyEval_GetLocals
187# define PyEval_GetGlobals py3_PyEval_GetGlobals
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200188# define PySys_SetObject py3_PySys_SetObject
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200189# define PySys_GetObject py3_PySys_GetObject
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200190# define PySys_SetArgv py3_PySys_SetArgv
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200191# define PyType_Ready py3_PyType_Ready
192#undef Py_BuildValue
193# define Py_BuildValue py3_Py_BuildValue
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100194# define Py_SetPythonHome py3_Py_SetPythonHome
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200195# define Py_Initialize py3_Py_Initialize
196# define Py_Finalize py3_Py_Finalize
197# define Py_IsInitialized py3_Py_IsInitialized
198# define _Py_NoneStruct (*py3__Py_NoneStruct)
Bram Moolenaar66b79852012-09-21 14:00:35 +0200199# define _Py_FalseStruct (*py3__Py_FalseStruct)
200# define _Py_TrueStruct (*py3__Py_TrueStruct)
Bram Moolenaardb913952012-06-29 12:54:53 +0200201# define _PyObject_NextNotImplemented (*py3__PyObject_NextNotImplemented)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200202# define PyModule_AddObject py3_PyModule_AddObject
203# define PyImport_AppendInittab py3_PyImport_AppendInittab
Bram Moolenaar3dab2802013-05-15 18:28:13 +0200204# define PyImport_AddModule py3_PyImport_AddModule
Bram Moolenaar7bc4f932012-10-14 03:22:56 +0200205# if PY_VERSION_HEX >= 0x030300f0
206# undef _PyUnicode_AsString
Bram Moolenaar9c9cbf12012-10-23 05:17:37 +0200207# define _PyUnicode_AsString py3_PyUnicode_AsUTF8
Bram Moolenaar7bc4f932012-10-14 03:22:56 +0200208# else
209# define _PyUnicode_AsString py3__PyUnicode_AsString
210# endif
Bram Moolenaar19e60942011-06-19 00:27:51 +0200211# undef PyUnicode_AsEncodedString
212# define PyUnicode_AsEncodedString py3_PyUnicode_AsEncodedString
213# undef PyBytes_AsString
214# define PyBytes_AsString py3_PyBytes_AsString
Bram Moolenaar32ac8cd2013-07-03 18:49:17 +0200215# ifndef PyBytes_AsStringAndSize
216# define PyBytes_AsStringAndSize py3_PyBytes_AsStringAndSize
217# endif
Bram Moolenaardb913952012-06-29 12:54:53 +0200218# undef PyBytes_FromString
219# define PyBytes_FromString py3_PyBytes_FromString
220# define PyFloat_FromDouble py3_PyFloat_FromDouble
221# define PyFloat_AsDouble py3_PyFloat_AsDouble
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200222# define PyObject_GenericGetAttr py3_PyObject_GenericGetAttr
Bram Moolenaar66b79852012-09-21 14:00:35 +0200223# define PyType_Type (*py3_PyType_Type)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200224# define PySlice_Type (*py3_PySlice_Type)
Bram Moolenaardb913952012-06-29 12:54:53 +0200225# define PyFloat_Type (*py3_PyFloat_Type)
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200226# define PyNumber_Check (*py3_PyNumber_Check)
227# define PyNumber_Long (*py3_PyNumber_Long)
Bram Moolenaar66b79852012-09-21 14:00:35 +0200228# define PyBool_Type (*py3_PyBool_Type)
Bram Moolenaar19e60942011-06-19 00:27:51 +0200229# define PyErr_NewException py3_PyErr_NewException
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200230# ifdef Py_DEBUG
231# define _Py_NegativeRefcount py3__Py_NegativeRefcount
232# define _Py_RefTotal (*py3__Py_RefTotal)
233# define _Py_Dealloc py3__Py_Dealloc
Bram Moolenaar0014a532013-05-29 21:33:39 +0200234# define PyModule_Create2TraceRefs py3_PyModule_Create2TraceRefs
235# else
236# define PyModule_Create2 py3_PyModule_Create2
237# endif
238# if defined(Py_DEBUG) && !defined(Py_DEBUG_NO_PYMALLOC)
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200239# define _PyObject_DebugMalloc py3__PyObject_DebugMalloc
240# define _PyObject_DebugFree py3__PyObject_DebugFree
241# else
242# define PyObject_Malloc py3_PyObject_Malloc
243# define PyObject_Free py3_PyObject_Free
244# endif
Bram Moolenaar774267b2013-05-21 20:51:59 +0200245# define _PyObject_GC_New py3__PyObject_GC_New
246# define PyObject_GC_Del py3_PyObject_GC_Del
247# define PyObject_GC_UnTrack py3_PyObject_GC_UnTrack
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200248# define PyType_GenericAlloc py3_PyType_GenericAlloc
249# define PyType_GenericNew py3_PyType_GenericNew
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200250# undef PyUnicode_FromString
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200251# define PyUnicode_FromString py3_PyUnicode_FromString
Bram Moolenaar1a3b5692013-05-30 12:40:39 +0200252# ifndef PyUnicode_FromFormat
253# define PyUnicode_FromFormat py3_PyUnicode_FromFormat
254# else
255# define Py_UNICODE_USE_UCS_FUNCTIONS
256# ifdef Py_UNICODE_WIDE
257# define PyUnicodeUCS4_FromFormat py3_PyUnicodeUCS4_FromFormat
258# else
259# define PyUnicodeUCS2_FromFormat py3_PyUnicodeUCS2_FromFormat
260# endif
261# endif
Bram Moolenaar19e60942011-06-19 00:27:51 +0200262# undef PyUnicode_Decode
263# define PyUnicode_Decode py3_PyUnicode_Decode
Bram Moolenaardb913952012-06-29 12:54:53 +0200264# define PyType_IsSubtype py3_PyType_IsSubtype
265# define PyCapsule_New py3_PyCapsule_New
266# define PyCapsule_GetPointer py3_PyCapsule_GetPointer
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200267
Bram Moolenaar0014a532013-05-29 21:33:39 +0200268# if defined(Py_DEBUG) && !defined(Py_DEBUG_NO_PYMALLOC)
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200269# undef PyObject_NEW
270# define PyObject_NEW(type, typeobj) \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200271( (type *) PyObject_Init( \
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200272 (PyObject *) _PyObject_DebugMalloc( _PyObject_SIZE(typeobj) ), (typeobj)) )
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200273# endif
274
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200275/*
276 * Pointers for dynamic link
277 */
278static int (*py3_PySys_SetArgv)(int, wchar_t **);
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100279static void (*py3_Py_SetPythonHome)(wchar_t *home);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200280static void (*py3_Py_Initialize)(void);
281static PyObject* (*py3_PyList_New)(Py_ssize_t size);
282static PyGILState_STATE (*py3_PyGILState_Ensure)(void);
283static void (*py3_PyGILState_Release)(PyGILState_STATE);
284static int (*py3_PySys_SetObject)(char *, PyObject *);
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200285static PyObject* (*py3_PySys_GetObject)(char *);
286static int (*py3_PyList_Append)(PyObject *, PyObject *);
287static int (*py3_PyList_Insert)(PyObject *, int, PyObject *);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200288static Py_ssize_t (*py3_PyList_Size)(PyObject *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200289static int (*py3_PySequence_Check)(PyObject *);
290static Py_ssize_t (*py3_PySequence_Size)(PyObject *);
291static PyObject* (*py3_PySequence_GetItem)(PyObject *, Py_ssize_t);
Bram Moolenaara9922d62013-05-30 13:01:18 +0200292static PyObject* (*py3_PySequence_Fast)(PyObject *, const char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200293static Py_ssize_t (*py3_PyTuple_Size)(PyObject *);
294static PyObject* (*py3_PyTuple_GetItem)(PyObject *, Py_ssize_t);
295static int (*py3_PyMapping_Check)(PyObject *);
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200296static PyObject* (*py3_PyMapping_Keys)(PyObject *);
Bram Moolenaar5395e7a2014-01-14 19:35:56 +0100297static int (*py3_PySlice_GetIndicesEx)(PySliceObject *r, Py_ssize_t length,
Bram Moolenaar063a46b2014-01-14 16:36:51 +0100298 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step,
299 Py_ssize_t *slicelen);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200300static PyObject* (*py3_PyErr_NoMemory)(void);
301static void (*py3_Py_Finalize)(void);
302static void (*py3_PyErr_SetString)(PyObject *, const char *);
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200303static void (*py3_PyErr_SetObject)(PyObject *, PyObject *);
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200304static int (*py3_PyErr_ExceptionMatches)(PyObject *);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200305static int (*py3_PyRun_SimpleString)(char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200306static PyObject* (*py3_PyRun_String)(char *, int, PyObject *, PyObject *);
Bram Moolenaar3dab2802013-05-15 18:28:13 +0200307static PyObject* (*py3_PyObject_GetAttrString)(PyObject *, const char *);
Bram Moolenaara9922d62013-05-30 13:01:18 +0200308static int (*py3_PyObject_HasAttrString)(PyObject *, const char *);
Bram Moolenaar0b400082013-11-03 00:28:25 +0100309static int (*py3_PyObject_SetAttrString)(PyObject *, const char *, PyObject *);
Bram Moolenaar3dab2802013-05-15 18:28:13 +0200310static PyObject* (*py3_PyObject_CallFunctionObjArgs)(PyObject *, ...);
Bram Moolenaar81c40c52013-06-12 14:41:04 +0200311static PyObject* (*py3__PyObject_CallFunction_SizeT)(PyObject *, char *, ...);
Bram Moolenaarf4258302013-06-02 18:20:17 +0200312static PyObject* (*py3_PyObject_Call)(PyObject *, PyObject *, PyObject *);
Bram Moolenaar3dab2802013-05-15 18:28:13 +0200313static PyObject* (*py3_PyEval_GetGlobals)();
314static PyObject* (*py3_PyEval_GetLocals)();
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200315static PyObject* (*py3_PyList_GetItem)(PyObject *, Py_ssize_t);
316static PyObject* (*py3_PyImport_ImportModule)(const char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200317static PyObject* (*py3_PyImport_AddModule)(const char *);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200318static int (*py3_PyErr_BadArgument)(void);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200319static PyObject* (*py3_PyErr_Occurred)(void);
320static PyObject* (*py3_PyModule_GetDict)(PyObject *);
321static int (*py3_PyList_SetItem)(PyObject *, Py_ssize_t, PyObject *);
322static PyObject* (*py3_PyDict_GetItemString)(PyObject *, const char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200323static int (*py3_PyDict_Next)(PyObject *, Py_ssize_t *, PyObject **, PyObject **);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200324static PyObject* (*py3_PyLong_FromLong)(long);
325static PyObject* (*py3_PyDict_New)(void);
Bram Moolenaardb913952012-06-29 12:54:53 +0200326static PyObject* (*py3_PyIter_Next)(PyObject *);
327static PyObject* (*py3_PyObject_GetIter)(PyObject *);
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200328static PyObject* (*py3_PyObject_Repr)(PyObject *);
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200329static PyObject* (*py3_PyObject_GetItem)(PyObject *, PyObject *);
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200330static int (*py3_PyObject_IsTrue)(PyObject *);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200331static PyObject* (*py3_Py_BuildValue)(char *, ...);
332static int (*py3_PyType_Ready)(PyTypeObject *type);
333static int (*py3_PyDict_SetItemString)(PyObject *dp, char *key, PyObject *item);
334static PyObject* (*py3_PyUnicode_FromString)(const char *u);
Bram Moolenaar1a3b5692013-05-30 12:40:39 +0200335# ifndef Py_UNICODE_USE_UCS_FUNCTIONS
336static PyObject* (*py3_PyUnicode_FromFormat)(const char *u, ...);
337# else
338# ifdef Py_UNICODE_WIDE
339static PyObject* (*py3_PyUnicodeUCS4_FromFormat)(const char *u, ...);
340# else
341static PyObject* (*py3_PyUnicodeUCS2_FromFormat)(const char *u, ...);
342# endif
343# endif
Bram Moolenaar19e60942011-06-19 00:27:51 +0200344static PyObject* (*py3_PyUnicode_Decode)(const char *u, Py_ssize_t size,
345 const char *encoding, const char *errors);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200346static long (*py3_PyLong_AsLong)(PyObject *);
347static void (*py3_PyErr_SetNone)(PyObject *);
348static void (*py3_PyEval_InitThreads)(void);
349static void(*py3_PyEval_RestoreThread)(PyThreadState *);
350static PyThreadState*(*py3_PyEval_SaveThread)(void);
351static int (*py3_PyArg_Parse)(PyObject *, char *, ...);
352static int (*py3_PyArg_ParseTuple)(PyObject *, char *, ...);
Bram Moolenaar19e60942011-06-19 00:27:51 +0200353static int (*py3_PyMem_Free)(void *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200354static void* (*py3_PyMem_Malloc)(size_t);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200355static int (*py3_Py_IsInitialized)(void);
356static void (*py3_PyErr_Clear)(void);
Bram Moolenaarc476e522013-06-23 13:46:40 +0200357static PyObject* (*py3_PyErr_Format)(PyObject *, const char *, ...);
Bram Moolenaar4d369872013-02-20 16:09:43 +0100358static void (*py3_PyErr_PrintEx)(int);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200359static PyObject*(*py3__PyObject_Init)(PyObject *, PyTypeObject *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200360static iternextfunc py3__PyObject_NextNotImplemented;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200361static PyObject* py3__Py_NoneStruct;
Bram Moolenaar66b79852012-09-21 14:00:35 +0200362static PyObject* py3__Py_FalseStruct;
363static PyObject* py3__Py_TrueStruct;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200364static int (*py3_PyModule_AddObject)(PyObject *m, const char *name, PyObject *o);
365static int (*py3_PyImport_AppendInittab)(const char *name, PyObject* (*initfunc)(void));
Bram Moolenaar9c9cbf12012-10-23 05:17:37 +0200366# if PY_VERSION_HEX >= 0x030300f0
367static char* (*py3_PyUnicode_AsUTF8)(PyObject *unicode);
368# else
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200369static char* (*py3__PyUnicode_AsString)(PyObject *unicode);
Bram Moolenaar9c9cbf12012-10-23 05:17:37 +0200370# endif
Bram Moolenaar19e60942011-06-19 00:27:51 +0200371static PyObject* (*py3_PyUnicode_AsEncodedString)(PyObject *unicode, const char* encoding, const char* errors);
372static char* (*py3_PyBytes_AsString)(PyObject *bytes);
Bram Moolenaar808c2bc2013-06-23 13:11:18 +0200373static int (*py3_PyBytes_AsStringAndSize)(PyObject *bytes, char **buffer, Py_ssize_t *length);
Bram Moolenaardb913952012-06-29 12:54:53 +0200374static PyObject* (*py3_PyBytes_FromString)(char *str);
375static PyObject* (*py3_PyFloat_FromDouble)(double num);
376static double (*py3_PyFloat_AsDouble)(PyObject *);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200377static PyObject* (*py3_PyObject_GenericGetAttr)(PyObject *obj, PyObject *name);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200378static PyObject* (*py3_PyType_GenericAlloc)(PyTypeObject *type, Py_ssize_t nitems);
379static PyObject* (*py3_PyType_GenericNew)(PyTypeObject *type, PyObject *args, PyObject *kwds);
Bram Moolenaar66b79852012-09-21 14:00:35 +0200380static PyTypeObject* py3_PyType_Type;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200381static PyTypeObject* py3_PySlice_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200382static PyTypeObject* py3_PyFloat_Type;
Bram Moolenaar66b79852012-09-21 14:00:35 +0200383static PyTypeObject* py3_PyBool_Type;
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200384static int (*py3_PyNumber_Check)(PyObject *);
385static PyObject* (*py3_PyNumber_Long)(PyObject *);
Bram Moolenaar19e60942011-06-19 00:27:51 +0200386static PyObject* (*py3_PyErr_NewException)(char *name, PyObject *base, PyObject *dict);
Bram Moolenaardb913952012-06-29 12:54:53 +0200387static PyObject* (*py3_PyCapsule_New)(void *, char *, PyCapsule_Destructor);
388static void* (*py3_PyCapsule_GetPointer)(PyObject *, char *);
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200389# ifdef Py_DEBUG
Bram Moolenaar0014a532013-05-29 21:33:39 +0200390static void (*py3__Py_NegativeRefcount)(const char *fname, int lineno, PyObject *op);
391static Py_ssize_t* py3__Py_RefTotal;
392static void (*py3__Py_Dealloc)(PyObject *obj);
393static PyObject* (*py3_PyModule_Create2TraceRefs)(struct PyModuleDef* module, int module_api_version);
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200394# else
Bram Moolenaar0014a532013-05-29 21:33:39 +0200395static PyObject* (*py3_PyModule_Create2)(struct PyModuleDef* module, int module_api_version);
396# endif
397# if defined(Py_DEBUG) && !defined(Py_DEBUG_NO_PYMALLOC)
398static void (*py3__PyObject_DebugFree)(void*);
399static void* (*py3__PyObject_DebugMalloc)(size_t);
400# else
401static void (*py3_PyObject_Free)(void*);
402static void* (*py3_PyObject_Malloc)(size_t);
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200403# endif
Bram Moolenaar774267b2013-05-21 20:51:59 +0200404static PyObject*(*py3__PyObject_GC_New)(PyTypeObject *);
405static void(*py3_PyObject_GC_Del)(void *);
406static void(*py3_PyObject_GC_UnTrack)(void *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200407static int (*py3_PyType_IsSubtype)(PyTypeObject *, PyTypeObject *);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200408
409static HINSTANCE hinstPy3 = 0; /* Instance of python.dll */
410
411/* Imported exception objects */
412static PyObject *p3imp_PyExc_AttributeError;
413static PyObject *p3imp_PyExc_IndexError;
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200414static PyObject *p3imp_PyExc_KeyError;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200415static PyObject *p3imp_PyExc_KeyboardInterrupt;
416static PyObject *p3imp_PyExc_TypeError;
417static PyObject *p3imp_PyExc_ValueError;
Bram Moolenaar41009372013-07-01 22:03:04 +0200418static PyObject *p3imp_PyExc_SystemExit;
Bram Moolenaar8661b172013-05-15 15:44:28 +0200419static PyObject *p3imp_PyExc_RuntimeError;
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200420static PyObject *p3imp_PyExc_ImportError;
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200421static PyObject *p3imp_PyExc_OverflowError;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200422
423# define PyExc_AttributeError p3imp_PyExc_AttributeError
424# define PyExc_IndexError p3imp_PyExc_IndexError
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200425# define PyExc_KeyError p3imp_PyExc_KeyError
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200426# define PyExc_KeyboardInterrupt p3imp_PyExc_KeyboardInterrupt
427# define PyExc_TypeError p3imp_PyExc_TypeError
428# define PyExc_ValueError p3imp_PyExc_ValueError
Bram Moolenaar41009372013-07-01 22:03:04 +0200429# define PyExc_SystemExit p3imp_PyExc_SystemExit
Bram Moolenaar8661b172013-05-15 15:44:28 +0200430# define PyExc_RuntimeError p3imp_PyExc_RuntimeError
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200431# define PyExc_ImportError p3imp_PyExc_ImportError
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200432# define PyExc_OverflowError p3imp_PyExc_OverflowError
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200433
434/*
435 * Table of name to function pointer of python.
436 */
437# define PYTHON_PROC FARPROC
438static struct
439{
440 char *name;
441 PYTHON_PROC *ptr;
442} py3_funcname_table[] =
443{
444 {"PySys_SetArgv", (PYTHON_PROC*)&py3_PySys_SetArgv},
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100445 {"Py_SetPythonHome", (PYTHON_PROC*)&py3_Py_SetPythonHome},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200446 {"Py_Initialize", (PYTHON_PROC*)&py3_Py_Initialize},
Bram Moolenaare8cdcef2012-09-12 20:21:43 +0200447 {"_PyArg_ParseTuple_SizeT", (PYTHON_PROC*)&py3_PyArg_ParseTuple},
448 {"_Py_BuildValue_SizeT", (PYTHON_PROC*)&py3_Py_BuildValue},
Bram Moolenaar19e60942011-06-19 00:27:51 +0200449 {"PyMem_Free", (PYTHON_PROC*)&py3_PyMem_Free},
Bram Moolenaardb913952012-06-29 12:54:53 +0200450 {"PyMem_Malloc", (PYTHON_PROC*)&py3_PyMem_Malloc},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200451 {"PyList_New", (PYTHON_PROC*)&py3_PyList_New},
452 {"PyGILState_Ensure", (PYTHON_PROC*)&py3_PyGILState_Ensure},
453 {"PyGILState_Release", (PYTHON_PROC*)&py3_PyGILState_Release},
454 {"PySys_SetObject", (PYTHON_PROC*)&py3_PySys_SetObject},
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200455 {"PySys_GetObject", (PYTHON_PROC*)&py3_PySys_GetObject},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200456 {"PyList_Append", (PYTHON_PROC*)&py3_PyList_Append},
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200457 {"PyList_Insert", (PYTHON_PROC*)&py3_PyList_Insert},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200458 {"PyList_Size", (PYTHON_PROC*)&py3_PyList_Size},
Bram Moolenaardb913952012-06-29 12:54:53 +0200459 {"PySequence_Check", (PYTHON_PROC*)&py3_PySequence_Check},
460 {"PySequence_Size", (PYTHON_PROC*)&py3_PySequence_Size},
461 {"PySequence_GetItem", (PYTHON_PROC*)&py3_PySequence_GetItem},
Bram Moolenaara9922d62013-05-30 13:01:18 +0200462 {"PySequence_Fast", (PYTHON_PROC*)&py3_PySequence_Fast},
Bram Moolenaardb913952012-06-29 12:54:53 +0200463 {"PyTuple_Size", (PYTHON_PROC*)&py3_PyTuple_Size},
464 {"PyTuple_GetItem", (PYTHON_PROC*)&py3_PyTuple_GetItem},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200465 {"PySlice_GetIndicesEx", (PYTHON_PROC*)&py3_PySlice_GetIndicesEx},
466 {"PyErr_NoMemory", (PYTHON_PROC*)&py3_PyErr_NoMemory},
467 {"Py_Finalize", (PYTHON_PROC*)&py3_Py_Finalize},
468 {"PyErr_SetString", (PYTHON_PROC*)&py3_PyErr_SetString},
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200469 {"PyErr_SetObject", (PYTHON_PROC*)&py3_PyErr_SetObject},
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200470 {"PyErr_ExceptionMatches", (PYTHON_PROC*)&py3_PyErr_ExceptionMatches},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200471 {"PyRun_SimpleString", (PYTHON_PROC*)&py3_PyRun_SimpleString},
Bram Moolenaardb913952012-06-29 12:54:53 +0200472 {"PyRun_String", (PYTHON_PROC*)&py3_PyRun_String},
Bram Moolenaar3dab2802013-05-15 18:28:13 +0200473 {"PyObject_GetAttrString", (PYTHON_PROC*)&py3_PyObject_GetAttrString},
Bram Moolenaara9922d62013-05-30 13:01:18 +0200474 {"PyObject_HasAttrString", (PYTHON_PROC*)&py3_PyObject_HasAttrString},
Bram Moolenaar3dab2802013-05-15 18:28:13 +0200475 {"PyObject_SetAttrString", (PYTHON_PROC*)&py3_PyObject_SetAttrString},
476 {"PyObject_CallFunctionObjArgs", (PYTHON_PROC*)&py3_PyObject_CallFunctionObjArgs},
Bram Moolenaar81c40c52013-06-12 14:41:04 +0200477 {"_PyObject_CallFunction_SizeT", (PYTHON_PROC*)&py3__PyObject_CallFunction_SizeT},
Bram Moolenaarf4258302013-06-02 18:20:17 +0200478 {"PyObject_Call", (PYTHON_PROC*)&py3_PyObject_Call},
Bram Moolenaar3dab2802013-05-15 18:28:13 +0200479 {"PyEval_GetGlobals", (PYTHON_PROC*)&py3_PyEval_GetGlobals},
480 {"PyEval_GetLocals", (PYTHON_PROC*)&py3_PyEval_GetLocals},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200481 {"PyList_GetItem", (PYTHON_PROC*)&py3_PyList_GetItem},
482 {"PyImport_ImportModule", (PYTHON_PROC*)&py3_PyImport_ImportModule},
Bram Moolenaardb913952012-06-29 12:54:53 +0200483 {"PyImport_AddModule", (PYTHON_PROC*)&py3_PyImport_AddModule},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200484 {"PyErr_BadArgument", (PYTHON_PROC*)&py3_PyErr_BadArgument},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200485 {"PyErr_Occurred", (PYTHON_PROC*)&py3_PyErr_Occurred},
486 {"PyModule_GetDict", (PYTHON_PROC*)&py3_PyModule_GetDict},
487 {"PyList_SetItem", (PYTHON_PROC*)&py3_PyList_SetItem},
488 {"PyDict_GetItemString", (PYTHON_PROC*)&py3_PyDict_GetItemString},
Bram Moolenaardb913952012-06-29 12:54:53 +0200489 {"PyDict_Next", (PYTHON_PROC*)&py3_PyDict_Next},
490 {"PyMapping_Check", (PYTHON_PROC*)&py3_PyMapping_Check},
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200491 {"PyMapping_Keys", (PYTHON_PROC*)&py3_PyMapping_Keys},
Bram Moolenaardb913952012-06-29 12:54:53 +0200492 {"PyIter_Next", (PYTHON_PROC*)&py3_PyIter_Next},
493 {"PyObject_GetIter", (PYTHON_PROC*)&py3_PyObject_GetIter},
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200494 {"PyObject_Repr", (PYTHON_PROC*)&py3_PyObject_Repr},
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200495 {"PyObject_GetItem", (PYTHON_PROC*)&py3_PyObject_GetItem},
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200496 {"PyObject_IsTrue", (PYTHON_PROC*)&py3_PyObject_IsTrue},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200497 {"PyLong_FromLong", (PYTHON_PROC*)&py3_PyLong_FromLong},
498 {"PyDict_New", (PYTHON_PROC*)&py3_PyDict_New},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200499 {"PyType_Ready", (PYTHON_PROC*)&py3_PyType_Ready},
500 {"PyDict_SetItemString", (PYTHON_PROC*)&py3_PyDict_SetItemString},
501 {"PyLong_AsLong", (PYTHON_PROC*)&py3_PyLong_AsLong},
502 {"PyErr_SetNone", (PYTHON_PROC*)&py3_PyErr_SetNone},
503 {"PyEval_InitThreads", (PYTHON_PROC*)&py3_PyEval_InitThreads},
504 {"PyEval_RestoreThread", (PYTHON_PROC*)&py3_PyEval_RestoreThread},
505 {"PyEval_SaveThread", (PYTHON_PROC*)&py3_PyEval_SaveThread},
Bram Moolenaar5f87b232013-06-13 20:57:50 +0200506 {"_PyArg_Parse_SizeT", (PYTHON_PROC*)&py3_PyArg_Parse},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200507 {"Py_IsInitialized", (PYTHON_PROC*)&py3_Py_IsInitialized},
Bram Moolenaardb913952012-06-29 12:54:53 +0200508 {"_PyObject_NextNotImplemented", (PYTHON_PROC*)&py3__PyObject_NextNotImplemented},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200509 {"_Py_NoneStruct", (PYTHON_PROC*)&py3__Py_NoneStruct},
Bram Moolenaar66b79852012-09-21 14:00:35 +0200510 {"_Py_FalseStruct", (PYTHON_PROC*)&py3__Py_FalseStruct},
511 {"_Py_TrueStruct", (PYTHON_PROC*)&py3__Py_TrueStruct},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200512 {"PyErr_Clear", (PYTHON_PROC*)&py3_PyErr_Clear},
Bram Moolenaarc476e522013-06-23 13:46:40 +0200513 {"PyErr_Format", (PYTHON_PROC*)&py3_PyErr_Format},
Bram Moolenaar4d369872013-02-20 16:09:43 +0100514 {"PyErr_PrintEx", (PYTHON_PROC*)&py3_PyErr_PrintEx},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200515 {"PyObject_Init", (PYTHON_PROC*)&py3__PyObject_Init},
516 {"PyModule_AddObject", (PYTHON_PROC*)&py3_PyModule_AddObject},
517 {"PyImport_AppendInittab", (PYTHON_PROC*)&py3_PyImport_AppendInittab},
Bram Moolenaar9c9cbf12012-10-23 05:17:37 +0200518# if PY_VERSION_HEX >= 0x030300f0
519 {"PyUnicode_AsUTF8", (PYTHON_PROC*)&py3_PyUnicode_AsUTF8},
520# else
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200521 {"_PyUnicode_AsString", (PYTHON_PROC*)&py3__PyUnicode_AsString},
Bram Moolenaar9c9cbf12012-10-23 05:17:37 +0200522# endif
Bram Moolenaar1a3b5692013-05-30 12:40:39 +0200523# ifndef Py_UNICODE_USE_UCS_FUNCTIONS
524 {"PyUnicode_FromFormat", (PYTHON_PROC*)&py3_PyUnicode_FromFormat},
525# else
526# ifdef Py_UNICODE_WIDE
527 {"PyUnicodeUCS4_FromFormat", (PYTHON_PROC*)&py3_PyUnicodeUCS4_FromFormat},
528# else
529 {"PyUnicodeUCS2_FromFormat", (PYTHON_PROC*)&py3_PyUnicodeUCS2_FromFormat},
530# endif
531# endif
Bram Moolenaar19e60942011-06-19 00:27:51 +0200532 {"PyBytes_AsString", (PYTHON_PROC*)&py3_PyBytes_AsString},
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200533 {"PyBytes_AsStringAndSize", (PYTHON_PROC*)&py3_PyBytes_AsStringAndSize},
Bram Moolenaardb913952012-06-29 12:54:53 +0200534 {"PyBytes_FromString", (PYTHON_PROC*)&py3_PyBytes_FromString},
535 {"PyFloat_FromDouble", (PYTHON_PROC*)&py3_PyFloat_FromDouble},
536 {"PyFloat_AsDouble", (PYTHON_PROC*)&py3_PyFloat_AsDouble},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200537 {"PyObject_GenericGetAttr", (PYTHON_PROC*)&py3_PyObject_GenericGetAttr},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200538 {"PyType_GenericAlloc", (PYTHON_PROC*)&py3_PyType_GenericAlloc},
539 {"PyType_GenericNew", (PYTHON_PROC*)&py3_PyType_GenericNew},
Bram Moolenaar66b79852012-09-21 14:00:35 +0200540 {"PyType_Type", (PYTHON_PROC*)&py3_PyType_Type},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200541 {"PySlice_Type", (PYTHON_PROC*)&py3_PySlice_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200542 {"PyFloat_Type", (PYTHON_PROC*)&py3_PyFloat_Type},
Bram Moolenaar66b79852012-09-21 14:00:35 +0200543 {"PyBool_Type", (PYTHON_PROC*)&py3_PyBool_Type},
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200544 {"PyNumber_Check", (PYTHON_PROC*)&py3_PyNumber_Check},
545 {"PyNumber_Long", (PYTHON_PROC*)&py3_PyNumber_Long},
Bram Moolenaar19e60942011-06-19 00:27:51 +0200546 {"PyErr_NewException", (PYTHON_PROC*)&py3_PyErr_NewException},
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200547# ifdef Py_DEBUG
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200548 {"_Py_NegativeRefcount", (PYTHON_PROC*)&py3__Py_NegativeRefcount},
549 {"_Py_RefTotal", (PYTHON_PROC*)&py3__Py_RefTotal},
550 {"_Py_Dealloc", (PYTHON_PROC*)&py3__Py_Dealloc},
Bram Moolenaar0014a532013-05-29 21:33:39 +0200551 {"PyModule_Create2TraceRefs", (PYTHON_PROC*)&py3_PyModule_Create2TraceRefs},
552# else
553 {"PyModule_Create2", (PYTHON_PROC*)&py3_PyModule_Create2},
554# endif
555# if defined(Py_DEBUG) && !defined(Py_DEBUG_NO_PYMALLOC)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200556 {"_PyObject_DebugFree", (PYTHON_PROC*)&py3__PyObject_DebugFree},
557 {"_PyObject_DebugMalloc", (PYTHON_PROC*)&py3__PyObject_DebugMalloc},
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200558# else
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200559 {"PyObject_Malloc", (PYTHON_PROC*)&py3_PyObject_Malloc},
560 {"PyObject_Free", (PYTHON_PROC*)&py3_PyObject_Free},
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200561# endif
Bram Moolenaar774267b2013-05-21 20:51:59 +0200562 {"_PyObject_GC_New", (PYTHON_PROC*)&py3__PyObject_GC_New},
563 {"PyObject_GC_Del", (PYTHON_PROC*)&py3_PyObject_GC_Del},
564 {"PyObject_GC_UnTrack", (PYTHON_PROC*)&py3_PyObject_GC_UnTrack},
Bram Moolenaardb913952012-06-29 12:54:53 +0200565 {"PyType_IsSubtype", (PYTHON_PROC*)&py3_PyType_IsSubtype},
566 {"PyCapsule_New", (PYTHON_PROC*)&py3_PyCapsule_New},
567 {"PyCapsule_GetPointer", (PYTHON_PROC*)&py3_PyCapsule_GetPointer},
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200568 {"", NULL},
569};
570
571/*
572 * Free python.dll
573 */
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200574 static void
575end_dynamic_python3(void)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200576{
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200577 if (hinstPy3 != 0)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200578 {
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200579 close_dll(hinstPy3);
580 hinstPy3 = 0;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200581 }
582}
583
584/*
585 * Load library and get all pointers.
586 * Parameter 'libname' provides name of DLL.
587 * Return OK or FAIL.
588 */
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200589 static int
590py3_runtime_link_init(char *libname, int verbose)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200591{
592 int i;
Bram Moolenaar19e60942011-06-19 00:27:51 +0200593 void *ucs_from_string, *ucs_decode, *ucs_as_encoded_string;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200594
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100595# if !(defined(PY_NO_RTLD_GLOBAL) && defined(PY3_NO_RTLD_GLOBAL)) && defined(UNIX) && defined(FEAT_PYTHON)
Bram Moolenaarb744b2f2010-08-13 16:22:57 +0200596 /* Can't have Python and Python3 loaded at the same time.
597 * It cause a crash, because RTLD_GLOBAL is needed for
598 * standard C extension libraries of one or both python versions. */
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200599 if (python_loaded())
600 {
Bram Moolenaar9dc93ae2011-08-28 16:00:19 +0200601 if (verbose)
602 EMSG(_("E837: This Vim cannot execute :py3 after using :python"));
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200603 return FAIL;
604 }
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200605# endif
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200606
607 if (hinstPy3 != 0)
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200608 return OK;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200609 hinstPy3 = load_dll(libname);
610
611 if (!hinstPy3)
612 {
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200613 if (verbose)
614 EMSG2(_(e_loadlib), libname);
615 return FAIL;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200616 }
617
618 for (i = 0; py3_funcname_table[i].ptr; ++i)
619 {
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200620 if ((*py3_funcname_table[i].ptr = symbol_from_dll(hinstPy3,
621 py3_funcname_table[i].name)) == NULL)
622 {
623 close_dll(hinstPy3);
624 hinstPy3 = 0;
625 if (verbose)
626 EMSG2(_(e_loadfunc), py3_funcname_table[i].name);
627 return FAIL;
628 }
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200629 }
630
Bram Moolenaar69154f22010-07-18 21:42:34 +0200631 /* Load unicode functions separately as only the ucs2 or the ucs4 functions
632 * will be present in the library. */
Bram Moolenaar9c9cbf12012-10-23 05:17:37 +0200633# if PY_VERSION_HEX >= 0x030300f0
Bram Moolenaar7bc4f932012-10-14 03:22:56 +0200634 ucs_from_string = symbol_from_dll(hinstPy3, "PyUnicode_FromString");
635 ucs_decode = symbol_from_dll(hinstPy3, "PyUnicode_Decode");
636 ucs_as_encoded_string = symbol_from_dll(hinstPy3,
637 "PyUnicode_AsEncodedString");
Bram Moolenaar9c9cbf12012-10-23 05:17:37 +0200638# else
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200639 ucs_from_string = symbol_from_dll(hinstPy3, "PyUnicodeUCS2_FromString");
Bram Moolenaar19e60942011-06-19 00:27:51 +0200640 ucs_decode = symbol_from_dll(hinstPy3,
641 "PyUnicodeUCS2_Decode");
642 ucs_as_encoded_string = symbol_from_dll(hinstPy3,
643 "PyUnicodeUCS2_AsEncodedString");
644 if (!ucs_from_string || !ucs_decode || !ucs_as_encoded_string)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200645 {
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200646 ucs_from_string = symbol_from_dll(hinstPy3,
647 "PyUnicodeUCS4_FromString");
Bram Moolenaar19e60942011-06-19 00:27:51 +0200648 ucs_decode = symbol_from_dll(hinstPy3,
649 "PyUnicodeUCS4_Decode");
650 ucs_as_encoded_string = symbol_from_dll(hinstPy3,
651 "PyUnicodeUCS4_AsEncodedString");
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200652 }
Bram Moolenaar9c9cbf12012-10-23 05:17:37 +0200653# endif
Bram Moolenaar19e60942011-06-19 00:27:51 +0200654 if (ucs_from_string && ucs_decode && ucs_as_encoded_string)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200655 {
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200656 py3_PyUnicode_FromString = ucs_from_string;
Bram Moolenaar19e60942011-06-19 00:27:51 +0200657 py3_PyUnicode_Decode = ucs_decode;
658 py3_PyUnicode_AsEncodedString = ucs_as_encoded_string;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200659 }
660 else
661 {
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200662 close_dll(hinstPy3);
663 hinstPy3 = 0;
664 if (verbose)
665 EMSG2(_(e_loadfunc), "PyUnicode_UCSX_*");
666 return FAIL;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200667 }
668
669 return OK;
670}
671
672/*
673 * If python is enabled (there is installed python on Windows system) return
674 * TRUE, else FALSE.
675 */
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200676 int
677python3_enabled(int verbose)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200678{
679 return py3_runtime_link_init(DYNAMIC_PYTHON3_DLL, verbose) == OK;
680}
681
682/* Load the standard Python exceptions - don't import the symbols from the
683 * DLL, as this can cause errors (importing data symbols is not reliable).
684 */
685static void get_py3_exceptions __ARGS((void));
686
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200687 static void
688get_py3_exceptions()
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200689{
690 PyObject *exmod = PyImport_ImportModule("builtins");
691 PyObject *exdict = PyModule_GetDict(exmod);
692 p3imp_PyExc_AttributeError = PyDict_GetItemString(exdict, "AttributeError");
693 p3imp_PyExc_IndexError = PyDict_GetItemString(exdict, "IndexError");
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200694 p3imp_PyExc_KeyError = PyDict_GetItemString(exdict, "KeyError");
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200695 p3imp_PyExc_KeyboardInterrupt = PyDict_GetItemString(exdict, "KeyboardInterrupt");
696 p3imp_PyExc_TypeError = PyDict_GetItemString(exdict, "TypeError");
697 p3imp_PyExc_ValueError = PyDict_GetItemString(exdict, "ValueError");
Bram Moolenaar41009372013-07-01 22:03:04 +0200698 p3imp_PyExc_SystemExit = PyDict_GetItemString(exdict, "SystemExit");
Bram Moolenaar8661b172013-05-15 15:44:28 +0200699 p3imp_PyExc_RuntimeError = PyDict_GetItemString(exdict, "RuntimeError");
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200700 p3imp_PyExc_ImportError = PyDict_GetItemString(exdict, "ImportError");
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200701 p3imp_PyExc_OverflowError = PyDict_GetItemString(exdict, "OverflowError");
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200702 Py_XINCREF(p3imp_PyExc_AttributeError);
703 Py_XINCREF(p3imp_PyExc_IndexError);
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200704 Py_XINCREF(p3imp_PyExc_KeyError);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200705 Py_XINCREF(p3imp_PyExc_KeyboardInterrupt);
706 Py_XINCREF(p3imp_PyExc_TypeError);
707 Py_XINCREF(p3imp_PyExc_ValueError);
Bram Moolenaar41009372013-07-01 22:03:04 +0200708 Py_XINCREF(p3imp_PyExc_SystemExit);
Bram Moolenaar8661b172013-05-15 15:44:28 +0200709 Py_XINCREF(p3imp_PyExc_RuntimeError);
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200710 Py_XINCREF(p3imp_PyExc_ImportError);
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200711 Py_XINCREF(p3imp_PyExc_OverflowError);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200712 Py_XDECREF(exmod);
713}
714#endif /* DYNAMIC_PYTHON3 */
715
Bram Moolenaardb913952012-06-29 12:54:53 +0200716static int py3initialised = 0;
717
718#define PYINITIALISED py3initialised
719
Bram Moolenaar774267b2013-05-21 20:51:59 +0200720#define DESTRUCTOR_FINISH(self) Py_TYPE(self)->tp_free((PyObject*)self)
Bram Moolenaardb913952012-06-29 12:54:53 +0200721
Bram Moolenaar971db462013-05-12 18:44:48 +0200722#define WIN_PYTHON_REF(win) win->w_python3_ref
723#define BUF_PYTHON_REF(buf) buf->b_python3_ref
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200724#define TAB_PYTHON_REF(tab) tab->tp_python3_ref
Bram Moolenaar971db462013-05-12 18:44:48 +0200725
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200726 static void
727call_PyObject_Free(void *p)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200728{
Bram Moolenaar0014a532013-05-29 21:33:39 +0200729#if defined(Py_DEBUG) && !defined(Py_DEBUG_NO_PYMALLOC)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200730 _PyObject_DebugFree(p);
731#else
732 PyObject_Free(p);
733#endif
734}
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200735
736 static PyObject *
737call_PyType_GenericNew(PyTypeObject *type, PyObject *args, PyObject *kwds)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200738{
739 return PyType_GenericNew(type,args,kwds);
740}
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200741
742 static PyObject *
743call_PyType_GenericAlloc(PyTypeObject *type, Py_ssize_t nitems)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200744{
745 return PyType_GenericAlloc(type,nitems);
746}
747
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200748static PyObject *OutputGetattro(PyObject *, PyObject *);
749static int OutputSetattro(PyObject *, PyObject *, PyObject *);
750static PyObject *BufferGetattro(PyObject *, PyObject *);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200751static int BufferSetattro(PyObject *, PyObject *, PyObject *);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200752static PyObject *TabPageGetattro(PyObject *, PyObject *);
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200753static PyObject *WindowGetattro(PyObject *, PyObject *);
754static int WindowSetattro(PyObject *, PyObject *, PyObject *);
755static PyObject *RangeGetattro(PyObject *, PyObject *);
756static PyObject *CurrentGetattro(PyObject *, PyObject *);
757static int CurrentSetattro(PyObject *, PyObject *, PyObject *);
758static PyObject *DictionaryGetattro(PyObject *, PyObject *);
759static int DictionarySetattro(PyObject *, PyObject *, PyObject *);
760static PyObject *ListGetattro(PyObject *, PyObject *);
761static int ListSetattro(PyObject *, PyObject *, PyObject *);
762static PyObject *FunctionGetattro(PyObject *, PyObject *);
763
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200764static PyObject *VimPathHook(PyObject *, PyObject *);
765
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200766static struct PyModuleDef vimmodule;
767
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +0200768#define PY_CAN_RECURSE
769
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200770/*
771 * Include the code shared with if_python.c
772 */
773#include "if_py_both.h"
774
775#define GET_ATTR_STRING(name, nameobj) \
776 char *name = ""; \
777 if (PyUnicode_Check(nameobj)) \
778 name = _PyUnicode_AsString(nameobj)
779
780#define PY3OBJ_DELETED(obj) (obj->ob_base.ob_refcnt<=0)
781
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200782/******************************************************
783 * Internal function prototypes.
784 */
785
Bram Moolenaar7854e3a2012-11-28 15:33:14 +0100786static PyObject *Py3Init_vim(void);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200787
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200788/******************************************************
789 * 1. Python interpreter main program.
790 */
791
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200792 void
793python3_end()
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200794{
795 static int recurse = 0;
796
797 /* If a crash occurs while doing this, don't try again. */
798 if (recurse != 0)
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200799 return;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200800
801 ++recurse;
802
803#ifdef DYNAMIC_PYTHON3
804 if (hinstPy3)
805#endif
806 if (Py_IsInitialized())
807 {
808 // acquire lock before finalizing
Bram Moolenaar71700b82013-05-15 17:49:05 +0200809 PyGILState_Ensure();
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200810
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200811 Py_Finalize();
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200812 }
813
814#ifdef DYNAMIC_PYTHON3
815 end_dynamic_python3();
816#endif
817
818 --recurse;
819}
820
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200821#if (defined(DYNAMIC_PYTHON) && defined(FEAT_PYTHON)) || defined(PROTO)
822 int
823python3_loaded()
824{
825 return (hinstPy3 != 0);
826}
827#endif
828
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200829 static int
830Python3_Init(void)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200831{
832 if (!py3initialised)
833 {
834#ifdef DYNAMIC_PYTHON3
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200835 if (!python3_enabled(TRUE))
836 {
837 EMSG(_("E263: Sorry, this command is disabled, the Python library could not be loaded."));
838 goto fail;
839 }
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200840#endif
841
842 init_structs();
843
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100844
845#ifdef PYTHON3_HOME
846 Py_SetPythonHome(PYTHON3_HOME);
847#endif
848
Bram Moolenaar7bc4f932012-10-14 03:22:56 +0200849 PyImport_AppendInittab("vim", Py3Init_vim);
850
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200851#if !defined(MACOS) || defined(MACOS_X_UNIX)
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200852 Py_Initialize();
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200853#else
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200854 PyMac_Initialize();
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200855#endif
Bram Moolenaar76d711c2013-02-13 14:17:08 +0100856 /* Initialise threads, and below save the state using
857 * PyEval_SaveThread. Without the call to PyEval_SaveThread, thread
858 * specific state (such as the system trace hook), will be lost
859 * between invocations of Python code. */
Bram Moolenaar456f2bb2011-06-12 21:37:13 +0200860 PyEval_InitThreads();
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200861#ifdef DYNAMIC_PYTHON3
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200862 get_py3_exceptions();
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200863#endif
864
Bram Moolenaar1dc28782013-05-21 19:11:01 +0200865 if (PythonIO_Init_io())
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200866 goto fail;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200867
Bram Moolenaardb913952012-06-29 12:54:53 +0200868 globals = PyModule_GetDict(PyImport_AddModule("__main__"));
869
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200870 /* Remove the element from sys.path that was added because of our
871 * argv[0] value in Py3Init_vim(). Previously we used an empty
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200872 * string, but depending on the OS we then get an empty entry or
Bram Moolenaar19e60942011-06-19 00:27:51 +0200873 * the current directory in sys.path.
874 * Only after vim has been imported, the element does exist in
875 * sys.path.
876 */
877 PyRun_SimpleString("import vim; import sys; sys.path = list(filter(lambda x: not x.endswith('must>not&exist'), sys.path))");
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200878
Bram Moolenaar76d711c2013-02-13 14:17:08 +0100879 /* lock is created and acquired in PyEval_InitThreads() and thread
880 * state is created in Py_Initialize()
881 * there _PyGILState_NoteThreadState() also sets gilcounter to 1
882 * (python must have threads enabled!)
883 * so the following does both: unlock GIL and save thread state in TLS
884 * without deleting thread state
885 */
886 PyEval_SaveThread();
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200887
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200888 py3initialised = 1;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200889 }
890
891 return 0;
892
893fail:
894 /* We call PythonIO_Flush() here to print any Python errors.
895 * This is OK, as it is possible to call this function even
Bram Moolenaar1dc28782013-05-21 19:11:01 +0200896 * if PythonIO_Init_io() has not completed successfully (it will
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200897 * not do anything in this case).
898 */
899 PythonIO_Flush();
900 return -1;
901}
902
903/*
904 * External interface
905 */
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200906 static void
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200907DoPyCommand(const char *cmd, rangeinitializer init_range, runner run, void *arg)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200908{
909#if defined(MACOS) && !defined(MACOS_X_UNIX)
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200910 GrafPtr oldPort;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200911#endif
912#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200913 char *saved_locale;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200914#endif
Bram Moolenaar19e60942011-06-19 00:27:51 +0200915 PyObject *cmdstr;
916 PyObject *cmdbytes;
Bram Moolenaar71700b82013-05-15 17:49:05 +0200917 PyGILState_STATE pygilstate;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200918
919#if defined(MACOS) && !defined(MACOS_X_UNIX)
920 GetPort(&oldPort);
921 /* Check if the Python library is available */
922 if ((Ptr)PyMac_Initialize == (Ptr)kUnresolvedCFragSymbolAddress)
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200923 goto theend;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200924#endif
925 if (Python3_Init())
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200926 goto theend;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200927
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200928 init_range(arg);
929
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200930 Python_Release_Vim(); /* leave vim */
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200931
932#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
933 /* Python only works properly when the LC_NUMERIC locale is "C". */
934 saved_locale = setlocale(LC_NUMERIC, NULL);
935 if (saved_locale == NULL || STRCMP(saved_locale, "C") == 0)
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200936 saved_locale = NULL;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200937 else
938 {
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200939 /* Need to make a copy, value may change when setting new locale. */
940 saved_locale = (char *)vim_strsave((char_u *)saved_locale);
941 (void)setlocale(LC_NUMERIC, "C");
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200942 }
943#endif
944
945 pygilstate = PyGILState_Ensure();
946
Bram Moolenaar19e60942011-06-19 00:27:51 +0200947 /* PyRun_SimpleString expects a UTF-8 string. Wrong encoding may cause
948 * SyntaxError (unicode error). */
Bram Moolenaar3d64a312011-07-15 15:54:44 +0200949 cmdstr = PyUnicode_Decode(cmd, strlen(cmd),
950 (char *)ENC_OPT, CODEC_ERROR_HANDLER);
951 cmdbytes = PyUnicode_AsEncodedString(cmdstr, "utf-8", CODEC_ERROR_HANDLER);
Bram Moolenaar19e60942011-06-19 00:27:51 +0200952 Py_XDECREF(cmdstr);
Bram Moolenaardb913952012-06-29 12:54:53 +0200953
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200954 run(PyBytes_AsString(cmdbytes), arg, &pygilstate);
Bram Moolenaar19e60942011-06-19 00:27:51 +0200955 Py_XDECREF(cmdbytes);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200956
957 PyGILState_Release(pygilstate);
958
959#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
960 if (saved_locale != NULL)
961 {
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200962 (void)setlocale(LC_NUMERIC, saved_locale);
963 vim_free(saved_locale);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200964 }
965#endif
966
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200967 Python_Lock_Vim(); /* enter vim */
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200968 PythonIO_Flush();
969#if defined(MACOS) && !defined(MACOS_X_UNIX)
970 SetPort(oldPort);
971#endif
972
973theend:
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200974 return; /* keeps lint happy */
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200975}
976
977/*
Bram Moolenaar368373e2010-07-19 20:46:22 +0200978 * ":py3"
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200979 */
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200980 void
981ex_py3(exarg_T *eap)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200982{
983 char_u *script;
984
985 script = script_get(eap, eap->arg);
986 if (!eap->skip)
987 {
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200988 DoPyCommand(script == NULL ? (char *) eap->arg : (char *) script,
989 (rangeinitializer) init_range_cmd,
990 (runner) run_cmd,
991 (void *) eap);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200992 }
993 vim_free(script);
994}
995
996#define BUFFER_SIZE 2048
997
998/*
Bram Moolenaar6df6f472010-07-18 18:04:50 +0200999 * ":py3file"
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001000 */
1001 void
1002ex_py3file(exarg_T *eap)
1003{
1004 static char buffer[BUFFER_SIZE];
1005 const char *file;
1006 char *p;
1007 int i;
1008
1009 /* Have to do it like this. PyRun_SimpleFile requires you to pass a
1010 * stdio file pointer, but Vim and the Python DLL are compiled with
1011 * different options under Windows, meaning that stdio pointers aren't
1012 * compatible between the two. Yuk.
1013 *
Bram Moolenaar19e60942011-06-19 00:27:51 +02001014 * construct: exec(compile(open('a_filename', 'rb').read(), 'a_filename', 'exec'))
1015 *
1016 * Using bytes so that Python can detect the source encoding as it normally
1017 * does. The doc does not say "compile" accept bytes, though.
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001018 *
1019 * We need to escape any backslashes or single quotes in the file name, so that
1020 * Python won't mangle the file name.
1021 */
1022
1023 strcpy(buffer, "exec(compile(open('");
1024 p = buffer + 19; /* size of "exec(compile(open('" */
1025
1026 for (i=0; i<2; ++i)
1027 {
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001028 file = (char *)eap->arg;
1029 while (*file && p < buffer + (BUFFER_SIZE - 3))
1030 {
1031 if (*file == '\\' || *file == '\'')
1032 *p++ = '\\';
1033 *p++ = *file++;
1034 }
1035 /* If we didn't finish the file name, we hit a buffer overflow */
1036 if (*file != '\0')
1037 return;
1038 if (i==0)
1039 {
Bram Moolenaar19e60942011-06-19 00:27:51 +02001040 strcpy(p,"','rb').read(),'");
1041 p += 16;
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001042 }
1043 else
1044 {
1045 strcpy(p,"','exec'))");
1046 p += 10;
1047 }
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001048 }
1049
1050
1051 /* Execute the file */
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001052 DoPyCommand(buffer,
1053 (rangeinitializer) init_range_cmd,
1054 (runner) run_cmd,
1055 (void *) eap);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001056}
1057
Bram Moolenaar54e8f002013-05-15 19:44:39 +02001058 void
1059ex_py3do(exarg_T *eap)
Bram Moolenaar3dab2802013-05-15 18:28:13 +02001060{
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001061 DoPyCommand((char *)eap->arg,
1062 (rangeinitializer)init_range_cmd,
1063 (runner)run_do,
1064 (void *)eap);
Bram Moolenaar3dab2802013-05-15 18:28:13 +02001065}
1066
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001067/******************************************************
1068 * 2. Python output stream: writes output via [e]msg().
1069 */
1070
1071/* Implementation functions
1072 */
1073
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001074 static PyObject *
1075OutputGetattro(PyObject *self, PyObject *nameobj)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001076{
Bram Moolenaar77045652012-09-21 13:46:06 +02001077 GET_ATTR_STRING(name, nameobj);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001078
1079 if (strcmp(name, "softspace") == 0)
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001080 return PyLong_FromLong(((OutputObject *)(self))->softspace);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001081
1082 return PyObject_GenericGetAttr(self, nameobj);
1083}
1084
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001085 static int
1086OutputSetattro(PyObject *self, PyObject *nameobj, PyObject *val)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001087{
Bram Moolenaar77045652012-09-21 13:46:06 +02001088 GET_ATTR_STRING(name, nameobj);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001089
Bram Moolenaard6e39182013-05-21 18:30:34 +02001090 return OutputSetattr((OutputObject *)(self), name, val);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001091}
1092
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001093/******************************************************
1094 * 3. Implementation of the Vim module for Python
1095 */
1096
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001097/* Window type - Implementation functions
1098 * --------------------------------------
1099 */
1100
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001101#define WindowType_Check(obj) ((obj)->ob_base.ob_type == &WindowType)
1102
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001103/* Buffer type - Implementation functions
1104 * --------------------------------------
1105 */
1106
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001107#define BufferType_Check(obj) ((obj)->ob_base.ob_type == &BufferType)
1108
Bram Moolenaarba4897e2011-09-14 15:01:58 +02001109static PyObject* BufferSubscript(PyObject *self, PyObject *idx);
1110static Py_ssize_t BufferAsSubscript(PyObject *self, PyObject *idx, PyObject *val);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001111
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001112/* Line range type - Implementation functions
1113 * --------------------------------------
1114 */
1115
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001116#define RangeType_Check(obj) ((obj)->ob_base.ob_type == &RangeType)
1117
Bram Moolenaarba4897e2011-09-14 15:01:58 +02001118static PyObject* RangeSubscript(PyObject *self, PyObject *idx);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001119static Py_ssize_t RangeAsItem(PyObject *, Py_ssize_t, PyObject *);
Bram Moolenaarba4897e2011-09-14 15:01:58 +02001120static Py_ssize_t RangeAsSubscript(PyObject *self, PyObject *idx, PyObject *val);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001121
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001122/* Current objects type - Implementation functions
1123 * -----------------------------------------------
1124 */
1125
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001126static PySequenceMethods BufferAsSeq = {
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001127 (lenfunc) BufferLength, /* sq_length, len(x) */
1128 (binaryfunc) 0, /* sq_concat, x+y */
1129 (ssizeargfunc) 0, /* sq_repeat, x*n */
1130 (ssizeargfunc) BufferItem, /* sq_item, x[i] */
1131 0, /* was_sq_slice, x[i:j] */
Bram Moolenaar19e60942011-06-19 00:27:51 +02001132 0, /* sq_ass_item, x[i]=v */
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001133 0, /* sq_ass_slice, x[i:j]=v */
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001134 0, /* sq_contains */
1135 0, /* sq_inplace_concat */
1136 0, /* sq_inplace_repeat */
1137};
1138
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001139static PyMappingMethods BufferAsMapping = {
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001140 /* mp_length */ (lenfunc)BufferLength,
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001141 /* mp_subscript */ (binaryfunc)BufferSubscript,
Bram Moolenaar19e60942011-06-19 00:27:51 +02001142 /* mp_ass_subscript */ (objobjargproc)BufferAsSubscript,
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001143};
1144
1145
Bram Moolenaar971db462013-05-12 18:44:48 +02001146/* Buffer object
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001147 */
1148
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001149 static PyObject *
Bram Moolenaar9e822c02013-05-29 22:15:30 +02001150BufferGetattro(PyObject *self, PyObject *nameobj)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001151{
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001152 PyObject *r;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001153
Bram Moolenaar77045652012-09-21 13:46:06 +02001154 GET_ATTR_STRING(name, nameobj);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001155
Bram Moolenaar9e822c02013-05-29 22:15:30 +02001156 if ((r = BufferAttrValid((BufferObject *)(self), name)))
1157 return r;
1158
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001159 if (CheckBuffer((BufferObject *)(self)))
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001160 return NULL;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001161
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001162 r = BufferAttr((BufferObject *)(self), name);
1163 if (r || PyErr_Occurred())
1164 return r;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001165 else
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001166 return PyObject_GenericGetAttr(self, nameobj);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001167}
1168
Bram Moolenaare9ba5162013-05-29 22:02:22 +02001169 static int
1170BufferSetattro(PyObject *self, PyObject *nameobj, PyObject *val)
1171{
1172 GET_ATTR_STRING(name, nameobj);
1173
1174 return BufferSetattr((BufferObject *)(self), name, val);
1175}
1176
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001177/******************/
1178
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001179 static PyObject *
1180BufferSubscript(PyObject *self, PyObject* idx)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001181{
Bram Moolenaardb913952012-06-29 12:54:53 +02001182 if (PyLong_Check(idx))
1183 {
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001184 long _idx = PyLong_AsLong(idx);
Bram Moolenaard6e39182013-05-21 18:30:34 +02001185 return BufferItem((BufferObject *)(self), _idx);
Bram Moolenaardb913952012-06-29 12:54:53 +02001186 } else if (PySlice_Check(idx))
1187 {
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001188 Py_ssize_t start, stop, step, slicelen;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001189
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02001190 if (CheckBuffer((BufferObject *) self))
1191 return NULL;
1192
Bram Moolenaar5395e7a2014-01-14 19:35:56 +01001193 if (PySlice_GetIndicesEx((PySliceObject *)idx,
Bram Moolenaarbd80f352013-05-12 21:16:23 +02001194 (Py_ssize_t)((BufferObject *)(self))->buf->b_ml.ml_line_count,
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001195 &start, &stop,
Bram Moolenaardb913952012-06-29 12:54:53 +02001196 &step, &slicelen) < 0)
1197 {
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001198 return NULL;
1199 }
Bram Moolenaard6e39182013-05-21 18:30:34 +02001200 return BufferSlice((BufferObject *)(self), start, stop);
Bram Moolenaardb913952012-06-29 12:54:53 +02001201 }
1202 else
1203 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02001204 RAISE_INVALID_INDEX_TYPE(idx);
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001205 return NULL;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001206 }
1207}
1208
Bram Moolenaar19e60942011-06-19 00:27:51 +02001209 static Py_ssize_t
1210BufferAsSubscript(PyObject *self, PyObject* idx, PyObject* val)
1211{
Bram Moolenaardb913952012-06-29 12:54:53 +02001212 if (PyLong_Check(idx))
1213 {
Bram Moolenaar19e60942011-06-19 00:27:51 +02001214 long n = PyLong_AsLong(idx);
1215 return RBAsItem((BufferObject *)(self), n, val, 1,
1216 (Py_ssize_t)((BufferObject *)(self))->buf->b_ml.ml_line_count,
1217 NULL);
Bram Moolenaardb913952012-06-29 12:54:53 +02001218 } else if (PySlice_Check(idx))
1219 {
Bram Moolenaar19e60942011-06-19 00:27:51 +02001220 Py_ssize_t start, stop, step, slicelen;
1221
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02001222 if (CheckBuffer((BufferObject *) self))
1223 return -1;
1224
Bram Moolenaar5395e7a2014-01-14 19:35:56 +01001225 if (PySlice_GetIndicesEx((PySliceObject *)idx,
Bram Moolenaarbd80f352013-05-12 21:16:23 +02001226 (Py_ssize_t)((BufferObject *)(self))->buf->b_ml.ml_line_count,
Bram Moolenaar19e60942011-06-19 00:27:51 +02001227 &start, &stop,
Bram Moolenaardb913952012-06-29 12:54:53 +02001228 &step, &slicelen) < 0)
1229 {
Bram Moolenaar19e60942011-06-19 00:27:51 +02001230 return -1;
1231 }
1232 return RBAsSlice((BufferObject *)(self), start, stop, val, 1,
1233 (PyInt)((BufferObject *)(self))->buf->b_ml.ml_line_count,
1234 NULL);
Bram Moolenaardb913952012-06-29 12:54:53 +02001235 }
1236 else
1237 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02001238 RAISE_INVALID_INDEX_TYPE(idx);
Bram Moolenaar19e60942011-06-19 00:27:51 +02001239 return -1;
1240 }
1241}
1242
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001243static PySequenceMethods RangeAsSeq = {
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001244 (lenfunc) RangeLength, /* sq_length, len(x) */
1245 (binaryfunc) 0, /* RangeConcat, sq_concat, x+y */
1246 (ssizeargfunc) 0, /* RangeRepeat, sq_repeat, x*n */
1247 (ssizeargfunc) RangeItem, /* sq_item, x[i] */
1248 0, /* was_sq_slice, x[i:j] */
1249 (ssizeobjargproc) RangeAsItem, /* sq_as_item, x[i]=v */
1250 0, /* sq_ass_slice, x[i:j]=v */
1251 0, /* sq_contains */
1252 0, /* sq_inplace_concat */
1253 0, /* sq_inplace_repeat */
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001254};
1255
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001256static PyMappingMethods RangeAsMapping = {
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001257 /* mp_length */ (lenfunc)RangeLength,
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001258 /* mp_subscript */ (binaryfunc)RangeSubscript,
Bram Moolenaarba4897e2011-09-14 15:01:58 +02001259 /* mp_ass_subscript */ (objobjargproc)RangeAsSubscript,
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001260};
1261
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001262/* Line range object - Implementation
1263 */
1264
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001265 static PyObject *
1266RangeGetattro(PyObject *self, PyObject *nameobj)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001267{
Bram Moolenaar77045652012-09-21 13:46:06 +02001268 GET_ATTR_STRING(name, nameobj);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001269
1270 if (strcmp(name, "start") == 0)
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001271 return Py_BuildValue("n", ((RangeObject *)(self))->start - 1);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001272 else if (strcmp(name, "end") == 0)
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001273 return Py_BuildValue("n", ((RangeObject *)(self))->end - 1);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001274 else
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001275 return PyObject_GenericGetAttr(self, nameobj);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001276}
1277
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001278/****************/
1279
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001280 static Py_ssize_t
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001281RangeAsItem(PyObject *self, Py_ssize_t n, PyObject *val)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001282{
1283 return RBAsItem(((RangeObject *)(self))->buf, n, val,
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001284 ((RangeObject *)(self))->start,
1285 ((RangeObject *)(self))->end,
1286 &((RangeObject *)(self))->end);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001287}
1288
Bram Moolenaarba4897e2011-09-14 15:01:58 +02001289 static Py_ssize_t
1290RangeAsSlice(PyObject *self, Py_ssize_t lo, Py_ssize_t hi, PyObject *val)
1291{
1292 return RBAsSlice(((RangeObject *)(self))->buf, lo, hi, val,
1293 ((RangeObject *)(self))->start,
1294 ((RangeObject *)(self))->end,
1295 &((RangeObject *)(self))->end);
1296}
1297
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001298 static PyObject *
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001299RangeSubscript(PyObject *self, PyObject* idx)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001300{
Bram Moolenaardb913952012-06-29 12:54:53 +02001301 if (PyLong_Check(idx))
1302 {
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001303 long _idx = PyLong_AsLong(idx);
Bram Moolenaard6e39182013-05-21 18:30:34 +02001304 return RangeItem((RangeObject *)(self), _idx);
Bram Moolenaardb913952012-06-29 12:54:53 +02001305 } else if (PySlice_Check(idx))
1306 {
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001307 Py_ssize_t start, stop, step, slicelen;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001308
Bram Moolenaar5395e7a2014-01-14 19:35:56 +01001309 if (PySlice_GetIndicesEx((PySliceObject *)idx,
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001310 ((RangeObject *)(self))->end-((RangeObject *)(self))->start+1,
1311 &start, &stop,
Bram Moolenaardb913952012-06-29 12:54:53 +02001312 &step, &slicelen) < 0)
1313 {
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001314 return NULL;
1315 }
Bram Moolenaard6e39182013-05-21 18:30:34 +02001316 return RangeSlice((RangeObject *)(self), start, stop);
Bram Moolenaardb913952012-06-29 12:54:53 +02001317 }
1318 else
1319 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02001320 RAISE_INVALID_INDEX_TYPE(idx);
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001321 return NULL;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001322 }
1323}
1324
Bram Moolenaarba4897e2011-09-14 15:01:58 +02001325 static Py_ssize_t
1326RangeAsSubscript(PyObject *self, PyObject *idx, PyObject *val)
1327{
Bram Moolenaardb913952012-06-29 12:54:53 +02001328 if (PyLong_Check(idx))
1329 {
Bram Moolenaarba4897e2011-09-14 15:01:58 +02001330 long n = PyLong_AsLong(idx);
1331 return RangeAsItem(self, n, val);
Bram Moolenaardb913952012-06-29 12:54:53 +02001332 } else if (PySlice_Check(idx))
1333 {
Bram Moolenaarba4897e2011-09-14 15:01:58 +02001334 Py_ssize_t start, stop, step, slicelen;
1335
Bram Moolenaar5395e7a2014-01-14 19:35:56 +01001336 if (PySlice_GetIndicesEx((PySliceObject *)idx,
Bram Moolenaarba4897e2011-09-14 15:01:58 +02001337 ((RangeObject *)(self))->end-((RangeObject *)(self))->start+1,
1338 &start, &stop,
Bram Moolenaardb913952012-06-29 12:54:53 +02001339 &step, &slicelen) < 0)
1340 {
Bram Moolenaarba4897e2011-09-14 15:01:58 +02001341 return -1;
1342 }
1343 return RangeAsSlice(self, start, stop, val);
Bram Moolenaardb913952012-06-29 12:54:53 +02001344 }
1345 else
1346 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02001347 RAISE_INVALID_INDEX_TYPE(idx);
Bram Moolenaarba4897e2011-09-14 15:01:58 +02001348 return -1;
1349 }
1350}
1351
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001352/* TabPage object - Implementation
1353 */
1354
1355 static PyObject *
1356TabPageGetattro(PyObject *self, PyObject *nameobj)
1357{
1358 PyObject *r;
1359
1360 GET_ATTR_STRING(name, nameobj);
1361
Bram Moolenaar9e822c02013-05-29 22:15:30 +02001362 if ((r = TabPageAttrValid((TabPageObject *)(self), name)))
1363 return r;
1364
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001365 if (CheckTabPage((TabPageObject *)(self)))
1366 return NULL;
1367
1368 r = TabPageAttr((TabPageObject *)(self), name);
1369 if (r || PyErr_Occurred())
1370 return r;
1371 else
1372 return PyObject_GenericGetAttr(self, nameobj);
1373}
1374
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001375/* Window object - Implementation
1376 */
1377
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001378 static PyObject *
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001379WindowGetattro(PyObject *self, PyObject *nameobj)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001380{
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001381 PyObject *r;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001382
Bram Moolenaar77045652012-09-21 13:46:06 +02001383 GET_ATTR_STRING(name, nameobj);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001384
Bram Moolenaar9e822c02013-05-29 22:15:30 +02001385 if ((r = WindowAttrValid((WindowObject *)(self), name)))
1386 return r;
1387
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001388 if (CheckWindow((WindowObject *)(self)))
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001389 return NULL;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001390
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001391 r = WindowAttr((WindowObject *)(self), name);
1392 if (r || PyErr_Occurred())
1393 return r;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001394 else
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001395 return PyObject_GenericGetAttr(self, nameobj);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001396}
1397
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001398 static int
1399WindowSetattro(PyObject *self, PyObject *nameobj, PyObject *val)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001400{
Bram Moolenaar77045652012-09-21 13:46:06 +02001401 GET_ATTR_STRING(name, nameobj);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001402
Bram Moolenaard6e39182013-05-21 18:30:34 +02001403 return WindowSetattr((WindowObject *)(self), name, val);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001404}
1405
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001406/* Tab page list object - Definitions
1407 */
1408
1409static PySequenceMethods TabListAsSeq = {
1410 (lenfunc) TabListLength, /* sq_length, len(x) */
1411 (binaryfunc) 0, /* sq_concat, x+y */
1412 (ssizeargfunc) 0, /* sq_repeat, x*n */
1413 (ssizeargfunc) TabListItem, /* sq_item, x[i] */
1414 0, /* sq_slice, x[i:j] */
1415 (ssizeobjargproc)0, /* sq_as_item, x[i]=v */
1416 0, /* sq_ass_slice, x[i:j]=v */
1417 0, /* sq_contains */
1418 0, /* sq_inplace_concat */
1419 0, /* sq_inplace_repeat */
1420};
1421
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001422/* Window list object - Definitions
1423 */
1424
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001425static PySequenceMethods WinListAsSeq = {
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001426 (lenfunc) WinListLength, /* sq_length, len(x) */
1427 (binaryfunc) 0, /* sq_concat, x+y */
1428 (ssizeargfunc) 0, /* sq_repeat, x*n */
1429 (ssizeargfunc) WinListItem, /* sq_item, x[i] */
1430 0, /* sq_slice, x[i:j] */
1431 (ssizeobjargproc)0, /* sq_as_item, x[i]=v */
1432 0, /* sq_ass_slice, x[i:j]=v */
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001433 0, /* sq_contains */
1434 0, /* sq_inplace_concat */
1435 0, /* sq_inplace_repeat */
1436};
1437
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001438/* Current items object - Implementation
1439 */
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001440 static PyObject *
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001441CurrentGetattro(PyObject *self, PyObject *nameobj)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001442{
Bram Moolenaardd8aca62013-05-29 22:36:10 +02001443 PyObject *r;
Bram Moolenaar77045652012-09-21 13:46:06 +02001444 GET_ATTR_STRING(name, nameobj);
Bram Moolenaardd8aca62013-05-29 22:36:10 +02001445 if (!(r = CurrentGetattr(self, name)))
1446 return PyObject_GenericGetAttr(self, nameobj);
1447 return r;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001448}
1449
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001450 static int
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001451CurrentSetattro(PyObject *self, PyObject *nameobj, PyObject *value)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001452{
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001453 GET_ATTR_STRING(name, nameobj);
1454 return CurrentSetattr(self, name, value);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001455}
1456
Bram Moolenaardb913952012-06-29 12:54:53 +02001457/* Dictionary object - Definitions
1458 */
1459
Bram Moolenaar66b79852012-09-21 14:00:35 +02001460 static PyObject *
1461DictionaryGetattro(PyObject *self, PyObject *nameobj)
1462{
1463 DictionaryObject *this = ((DictionaryObject *) (self));
1464
1465 GET_ATTR_STRING(name, nameobj);
1466
1467 if (strcmp(name, "locked") == 0)
1468 return PyLong_FromLong(this->dict->dv_lock);
1469 else if (strcmp(name, "scope") == 0)
1470 return PyLong_FromLong(this->dict->dv_scope);
1471
1472 return PyObject_GenericGetAttr(self, nameobj);
1473}
1474
1475 static int
1476DictionarySetattro(PyObject *self, PyObject *nameobj, PyObject *val)
1477{
1478 GET_ATTR_STRING(name, nameobj);
Bram Moolenaard6e39182013-05-21 18:30:34 +02001479 return DictionarySetattr((DictionaryObject *)(self), name, val);
Bram Moolenaardb913952012-06-29 12:54:53 +02001480}
1481
1482/* List object - Definitions
1483 */
1484
Bram Moolenaar66b79852012-09-21 14:00:35 +02001485 static PyObject *
1486ListGetattro(PyObject *self, PyObject *nameobj)
1487{
1488 GET_ATTR_STRING(name, nameobj);
1489
1490 if (strcmp(name, "locked") == 0)
1491 return PyLong_FromLong(((ListObject *) (self))->list->lv_lock);
1492
1493 return PyObject_GenericGetAttr(self, nameobj);
1494}
1495
1496 static int
1497ListSetattro(PyObject *self, PyObject *nameobj, PyObject *val)
1498{
1499 GET_ATTR_STRING(name, nameobj);
Bram Moolenaard6e39182013-05-21 18:30:34 +02001500 return ListSetattr((ListObject *)(self), name, val);
Bram Moolenaardb913952012-06-29 12:54:53 +02001501}
1502
1503/* Function object - Definitions
1504 */
1505
Bram Moolenaardb913952012-06-29 12:54:53 +02001506 static PyObject *
1507FunctionGetattro(PyObject *self, PyObject *nameobj)
1508{
1509 FunctionObject *this = (FunctionObject *)(self);
Bram Moolenaar77045652012-09-21 13:46:06 +02001510
1511 GET_ATTR_STRING(name, nameobj);
Bram Moolenaardb913952012-06-29 12:54:53 +02001512
1513 if (strcmp(name, "name") == 0)
1514 return PyUnicode_FromString((char *)(this->name));
1515
1516 return PyObject_GenericGetAttr(self, nameobj);
1517}
1518
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001519/* External interface
1520 */
1521
1522 void
1523python3_buffer_free(buf_T *buf)
1524{
Bram Moolenaar971db462013-05-12 18:44:48 +02001525 if (BUF_PYTHON_REF(buf) != NULL)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001526 {
Bram Moolenaar971db462013-05-12 18:44:48 +02001527 BufferObject *bp = BUF_PYTHON_REF(buf);
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001528 bp->buf = INVALID_BUFFER_VALUE;
Bram Moolenaar971db462013-05-12 18:44:48 +02001529 BUF_PYTHON_REF(buf) = NULL;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001530 }
1531}
1532
1533#if defined(FEAT_WINDOWS) || defined(PROTO)
1534 void
1535python3_window_free(win_T *win)
1536{
Bram Moolenaar971db462013-05-12 18:44:48 +02001537 if (WIN_PYTHON_REF(win) != NULL)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001538 {
Bram Moolenaar971db462013-05-12 18:44:48 +02001539 WindowObject *wp = WIN_PYTHON_REF(win);
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001540 wp->win = INVALID_WINDOW_VALUE;
Bram Moolenaar971db462013-05-12 18:44:48 +02001541 WIN_PYTHON_REF(win) = NULL;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001542 }
1543}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001544
1545 void
1546python3_tabpage_free(tabpage_T *tab)
1547{
1548 if (TAB_PYTHON_REF(tab) != NULL)
1549 {
1550 TabPageObject *tp = TAB_PYTHON_REF(tab);
1551 tp->tab = INVALID_TABPAGE_VALUE;
1552 TAB_PYTHON_REF(tab) = NULL;
1553 }
1554}
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001555#endif
1556
Bram Moolenaar7854e3a2012-11-28 15:33:14 +01001557 static PyObject *
1558Py3Init_vim(void)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001559{
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001560 /* The special value is removed from sys.path in Python3_Init(). */
1561 static wchar_t *(argv[2]) = {L"/must>not&exist/foo", NULL};
1562
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001563 if (init_types())
1564 return NULL;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001565
1566 /* Set sys.argv[] to avoid a crash in warn(). */
1567 PySys_SetArgv(1, argv);
1568
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001569 if ((vim_module = PyModule_Create(&vimmodule)) == NULL)
Bram Moolenaar19e60942011-06-19 00:27:51 +02001570 return NULL;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001571
Bram Moolenaardee2e312013-06-23 16:35:47 +02001572 if (populate_module(vim_module))
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001573 return NULL;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001574
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001575 if (init_sys_path())
1576 return NULL;
1577
1578 return vim_module;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001579}
1580
1581/*************************************************************************
1582 * 4. Utility functions for handling the interface between Vim and Python.
1583 */
1584
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001585/* Convert a Vim line into a Python string.
1586 * All internal newlines are replaced by null characters.
1587 *
1588 * On errors, the Python exception data is set, and NULL is returned.
1589 */
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001590 static PyObject *
1591LineToString(const char *str)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001592{
1593 PyObject *result;
1594 Py_ssize_t len = strlen(str);
1595 char *tmp,*p;
1596
1597 tmp = (char *)alloc((unsigned)(len+1));
1598 p = tmp;
1599 if (p == NULL)
1600 {
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001601 PyErr_NoMemory();
1602 return NULL;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001603 }
1604
1605 while (*str)
1606 {
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001607 if (*str == '\n')
1608 *p = '\0';
1609 else
1610 *p = *str;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001611
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001612 ++p;
1613 ++str;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001614 }
1615 *p = '\0';
1616
Bram Moolenaar3d64a312011-07-15 15:54:44 +02001617 result = PyUnicode_Decode(tmp, len, (char *)ENC_OPT, CODEC_ERROR_HANDLER);
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001618
1619 vim_free(tmp);
1620 return result;
1621}
1622
Bram Moolenaardb913952012-06-29 12:54:53 +02001623 void
1624do_py3eval (char_u *str, typval_T *rettv)
1625{
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001626 DoPyCommand((char *) str,
1627 (rangeinitializer) init_range_eval,
1628 (runner) run_eval,
1629 (void *) rettv);
Bram Moolenaardb913952012-06-29 12:54:53 +02001630 switch(rettv->v_type)
1631 {
1632 case VAR_DICT: ++rettv->vval.v_dict->dv_refcount; break;
1633 case VAR_LIST: ++rettv->vval.v_list->lv_refcount; break;
1634 case VAR_FUNC: func_ref(rettv->vval.v_string); break;
Bram Moolenaar77fceb82012-09-05 18:54:48 +02001635 case VAR_UNKNOWN:
1636 rettv->v_type = VAR_NUMBER;
1637 rettv->vval.v_number = 0;
1638 break;
Bram Moolenaardb913952012-06-29 12:54:53 +02001639 }
1640}
1641
1642 void
1643set_ref_in_python3 (int copyID)
1644{
1645 set_ref_in_py(copyID);
1646}