blob: 83f14793c2f41d2ce1aae6eb63be90c49a6f1a6c [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* 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 */
8/*
9 * if_perl.xs: Main code for Perl interface support.
10 * Mostly written by Sven Verdoolaege.
11 */
12
13#define _memory_h /* avoid memset redeclaration */
14#define IN_PERL_FILE /* don't include if_perl.pro from proto.h */
15
Bram Moolenaaraee1f4a2013-08-02 16:10:32 +020016/*
Bram Moolenaar6b107212013-12-11 15:06:40 +010017 * Currently 32-bit version of ActivePerl is built with VC6 (or MinGW since
18 * ActivePerl 5.18).
Bram Moolenaaraee1f4a2013-08-02 16:10:32 +020019 * (http://community.activestate.com/faq/windows-compilers-perl-modules)
20 * It means that time_t should be 32-bit. However the default size of
21 * time_t is 64-bit since VC8. So we have to define _USE_32BIT_TIME_T.
22 */
23#if defined(WIN32) && !defined(_WIN64)
24# define _USE_32BIT_TIME_T
25#endif
26
Bram Moolenaar6b107212013-12-11 15:06:40 +010027/*
28 * Prevent including winsock.h. perl.h tries to detect whether winsock.h is
29 * already included before including winsock2.h, because winsock2.h isn't
30 * compatible with winsock.h. However the detection doesn't work with some
31 * versions of MinGW. If WIN32_LEAN_AND_MEAN is defined, windows.h will not
32 * include winsock.h.
33 */
34#ifdef WIN32
35# define WIN32_LEAN_AND_MEAN
36#endif
37
Bram Moolenaar071d4272004-06-13 20:20:40 +000038#include "vim.h"
39
Bram Moolenaar7c0daf02013-12-14 11:46:08 +010040/* Work around for perl-5.18.
41 * Don't include "perl\lib\CORE\inline.h" for now,
42 * include it after Perl_sv_free2 is defined. */
43#ifdef DYNAMIC_PERL
44# define PERL_NO_INLINE_FUNCTIONS
45#endif
46
Bram Moolenaar207fd752013-12-14 11:50:35 +010047/* Work around for using MSVC and ActivePerl 5.18. */
48#ifdef _MSC_VER
49# define __inline__ __inline
50#endif
51
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +010052#ifdef __GNUC__
53# pragma GCC diagnostic push
54# pragma GCC diagnostic ignored "-Wunused-variable"
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +010055#endif
56
Bram Moolenaaraee1f4a2013-08-02 16:10:32 +020057#include <EXTERN.h>
58#include <perl.h>
59#include <XSUB.h>
Bram Moolenaar6244a0f2016-04-14 14:09:25 +020060#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
61# include <perliol.h>
62#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000063
Bram Moolenaarcf190c62016-06-02 11:54:06 +020064/* Workaround for perl < 5.8.7 */
65#ifndef PERLIO_FUNCS_DECL
66# ifdef PERLIO_FUNCS_CONST
67# define PERLIO_FUNCS_DECL(funcs) const PerlIO_funcs funcs
68# define PERLIO_FUNCS_CAST(funcs) (PerlIO_funcs*)(funcs)
69# else
70# define PERLIO_FUNCS_DECL(funcs) PerlIO_funcs funcs
71# define PERLIO_FUNCS_CAST(funcs) (funcs)
72# endif
73#endif
74
Bram Moolenaar071d4272004-06-13 20:20:40 +000075/*
76 * Work around clashes between Perl and Vim namespace. proto.h doesn't
77 * include if_perl.pro and perlsfio.pro when IN_PERL_FILE is defined, because
78 * we need the CV typedef. proto.h can't be moved to after including
79 * if_perl.h, because we get all sorts of name clashes then.
80 */
81#ifndef PROTO
82#ifndef __MINGW32__
83# include "proto/if_perl.pro"
84# include "proto/if_perlsfio.pro"
85#endif
86#endif
87
88/* Perl compatibility stuff. This should ensure compatibility with older
89 * versions of Perl.
90 */
91
92#ifndef PERL_VERSION
93# include <patchlevel.h>
94# define PERL_REVISION 5
95# define PERL_VERSION PATCHLEVEL
96# define PERL_SUBVERSION SUBVERSION
97#endif
98
Bram Moolenaar700d1d72007-09-13 13:20:16 +000099/*
100 * Quoting Jan Dubois of Active State:
101 * ActivePerl build 822 still identifies itself as 5.8.8 but already
102 * contains many of the changes from the upcoming Perl 5.8.9 release.
103 *
104 * The changes include addition of two symbols (Perl_sv_2iv_flags,
105 * Perl_newXS_flags) not present in earlier releases.
106 *
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000107 * Jan Dubois suggested the following guarding scheme.
108 *
109 * Active State defined ACTIVEPERL_VERSION as a string in versions before
110 * 5.8.8; and so the comparison to 822 below needs to be guarded.
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000111 */
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000112#if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 8)
113# if (ACTIVEPERL_VERSION >= 822) || (PERL_SUBVERSION >= 9)
114# define PERL589_OR_LATER
115# endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000116#endif
117#if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
118# define PERL589_OR_LATER
119#endif
120
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100121#if (PERL_REVISION == 5) && ((PERL_VERSION > 10) || \
122 (PERL_VERSION == 10) && (PERL_SUBVERSION >= 1))
123# define PERL5101_OR_LATER
124#endif
125
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126#ifndef pTHX
127# define pTHX void
128# define pTHX_
129#endif
130
131#ifndef EXTERN_C
132# define EXTERN_C
133#endif
134
Bram Moolenaarc271c482012-08-08 13:17:31 +0200135#if (PERL_REVISION == 5) && (PERL_VERSION >= 14) && defined(_MSC_VER)
136/* Using PL_errgv to get the error message after perl_eval_sv() causes a crash
137 * with MSVC and Perl version 5.14. */
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100138# define CHECK_EVAL_ERR(len) SvPV(perl_get_sv("@", GV_ADD), (len));
139#else
140# define CHECK_EVAL_ERR(len) SvPV(GvSV(PL_errgv), (len));
Bram Moolenaarc271c482012-08-08 13:17:31 +0200141#endif
142
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143/* Compatibility hacks over */
144
145static PerlInterpreter *perl_interp = NULL;
Bram Moolenaard99df422016-01-29 23:20:40 +0100146static void xs_init(pTHX);
147static void VIM_init(void);
148EXTERN_C void boot_DynaLoader(pTHX_ CV*);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149
150/*
Bram Moolenaare06c1882010-07-21 22:05:20 +0200151 * For dynamic linked perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152 */
153#if defined(DYNAMIC_PERL) || defined(PROTO)
Bram Moolenaare06c1882010-07-21 22:05:20 +0200154
155#ifndef DYNAMIC_PERL /* just generating prototypes */
Bram Moolenaar766fb0d2010-07-22 11:34:16 +0200156#ifdef WIN3264
Bram Moolenaare06c1882010-07-21 22:05:20 +0200157typedef int HANDLE;
158#endif
159typedef int XSINIT_t;
160typedef int XSUBADDR_t;
Bram Moolenaard8619992014-03-12 17:08:05 +0100161#endif
162#ifndef USE_ITHREADS
Bram Moolenaare06c1882010-07-21 22:05:20 +0200163typedef int perl_key;
164#endif
165
Bram Moolenaar766fb0d2010-07-22 11:34:16 +0200166#ifndef WIN3264
Bram Moolenaare06c1882010-07-21 22:05:20 +0200167#include <dlfcn.h>
168#define HANDLE void*
169#define PERL_PROC void*
170#define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
171#define symbol_from_dll dlsym
172#define close_dll dlclose
173#else
174#define PERL_PROC FARPROC
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200175#define load_dll vimLoadLib
Bram Moolenaare06c1882010-07-21 22:05:20 +0200176#define symbol_from_dll GetProcAddress
177#define close_dll FreeLibrary
178#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179/*
180 * Wrapper defines
181 */
182# define perl_alloc dll_perl_alloc
183# define perl_construct dll_perl_construct
184# define perl_parse dll_perl_parse
185# define perl_run dll_perl_run
186# define perl_destruct dll_perl_destruct
187# define perl_free dll_perl_free
188# define Perl_get_context dll_Perl_get_context
189# define Perl_croak dll_Perl_croak
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100190# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100191# define Perl_croak_xs_usage dll_Perl_croak_xs_usage
192# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193# ifndef PROTO
194# define Perl_croak_nocontext dll_Perl_croak_nocontext
195# define Perl_call_argv dll_Perl_call_argv
196# define Perl_call_pv dll_Perl_call_pv
197# define Perl_eval_sv dll_Perl_eval_sv
198# define Perl_get_sv dll_Perl_get_sv
199# define Perl_eval_pv dll_Perl_eval_pv
200# define Perl_call_method dll_Perl_call_method
201# endif
202# define Perl_dowantarray dll_Perl_dowantarray
203# define Perl_free_tmps dll_Perl_free_tmps
204# define Perl_gv_stashpv dll_Perl_gv_stashpv
205# define Perl_markstack_grow dll_Perl_markstack_grow
206# define Perl_mg_find dll_Perl_mg_find
207# define Perl_newXS dll_Perl_newXS
208# define Perl_newSV dll_Perl_newSV
209# define Perl_newSViv dll_Perl_newSViv
210# define Perl_newSVpv dll_Perl_newSVpv
211# define Perl_pop_scope dll_Perl_pop_scope
212# define Perl_push_scope dll_Perl_push_scope
213# define Perl_save_int dll_Perl_save_int
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200214# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
215# define Perl_save_strlen dll_Perl_save_strlen
216# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217# define Perl_stack_grow dll_Perl_stack_grow
218# define Perl_set_context dll_Perl_set_context
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200219# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200220# define Perl_sv_2bool_flags dll_Perl_sv_2bool_flags
221# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
222# define Perl_xs_apiversion_bootcheck dll_Perl_xs_apiversion_bootcheck
223# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200224# else
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200225# define Perl_sv_2bool dll_Perl_sv_2bool
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200226# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227# define Perl_sv_2iv dll_Perl_sv_2iv
228# define Perl_sv_2mortal dll_Perl_sv_2mortal
229# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
230# define Perl_sv_2pv_flags dll_Perl_sv_2pv_flags
231# define Perl_sv_2pv_nolen dll_Perl_sv_2pv_nolen
232# else
233# define Perl_sv_2pv dll_Perl_sv_2pv
234# endif
235# define Perl_sv_bless dll_Perl_sv_bless
236# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
237# define Perl_sv_catpvn_flags dll_Perl_sv_catpvn_flags
238# else
239# define Perl_sv_catpvn dll_Perl_sv_catpvn
240# endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000241#ifdef PERL589_OR_LATER
242# define Perl_sv_2iv_flags dll_Perl_sv_2iv_flags
243# define Perl_newXS_flags dll_Perl_newXS_flags
244#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245# define Perl_sv_free dll_Perl_sv_free
Bram Moolenaarccf22172008-09-01 15:56:45 +0000246# if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
247# define Perl_sv_free2 dll_Perl_sv_free2
248# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249# define Perl_sv_isa dll_Perl_sv_isa
250# define Perl_sv_magic dll_Perl_sv_magic
251# define Perl_sv_setiv dll_Perl_sv_setiv
252# define Perl_sv_setpv dll_Perl_sv_setpv
253# define Perl_sv_setpvn dll_Perl_sv_setpvn
254# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
255# define Perl_sv_setsv_flags dll_Perl_sv_setsv_flags
256# else
257# define Perl_sv_setsv dll_Perl_sv_setsv
258# endif
259# define Perl_sv_upgrade dll_Perl_sv_upgrade
260# define Perl_Tstack_sp_ptr dll_Perl_Tstack_sp_ptr
261# define Perl_Top_ptr dll_Perl_Top_ptr
262# define Perl_Tstack_base_ptr dll_Perl_Tstack_base_ptr
263# define Perl_Tstack_max_ptr dll_Perl_Tstack_max_ptr
264# define Perl_Ttmps_ix_ptr dll_Perl_Ttmps_ix_ptr
265# define Perl_Ttmps_floor_ptr dll_Perl_Ttmps_floor_ptr
266# define Perl_Tmarkstack_ptr_ptr dll_Perl_Tmarkstack_ptr_ptr
267# define Perl_Tmarkstack_max_ptr dll_Perl_Tmarkstack_max_ptr
268# define Perl_TSv_ptr dll_Perl_TSv_ptr
269# define Perl_TXpv_ptr dll_Perl_TXpv_ptr
270# define Perl_Tna_ptr dll_Perl_Tna_ptr
271# define Perl_Idefgv_ptr dll_Perl_Idefgv_ptr
272# define Perl_Ierrgv_ptr dll_Perl_Ierrgv_ptr
273# define Perl_Isv_yes_ptr dll_Perl_Isv_yes_ptr
274# define boot_DynaLoader dll_boot_DynaLoader
Bram Moolenaare06c1882010-07-21 22:05:20 +0200275# define Perl_Gthr_key_ptr dll_Perl_Gthr_key_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000277# define Perl_sys_init dll_Perl_sys_init
Bram Moolenaarc236c162008-07-13 17:41:49 +0000278# define Perl_sys_term dll_Perl_sys_term
279# define Perl_ISv_ptr dll_Perl_ISv_ptr
280# define Perl_Istack_max_ptr dll_Perl_Istack_max_ptr
281# define Perl_Istack_base_ptr dll_Perl_Istack_base_ptr
282# define Perl_Itmps_ix_ptr dll_Perl_Itmps_ix_ptr
283# define Perl_Itmps_floor_ptr dll_Perl_Itmps_floor_ptr
284# define Perl_IXpv_ptr dll_Perl_IXpv_ptr
285# define Perl_Ina_ptr dll_Perl_Ina_ptr
286# define Perl_Imarkstack_ptr_ptr dll_Perl_Imarkstack_ptr_ptr
287# define Perl_Imarkstack_max_ptr dll_Perl_Imarkstack_max_ptr
288# define Perl_Istack_sp_ptr dll_Perl_Istack_sp_ptr
289# define Perl_Iop_ptr dll_Perl_Iop_ptr
290# define Perl_call_list dll_Perl_call_list
291# define Perl_Iscopestack_ix_ptr dll_Perl_Iscopestack_ix_ptr
292# define Perl_Iunitcheckav_ptr dll_Perl_Iunitcheckav_ptr
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200293# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
294# define Perl_xs_handshake dll_Perl_xs_handshake
295# define Perl_xs_boot_epilog dll_Perl_xs_boot_epilog
296# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200297# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100298# ifdef USE_ITHREADS
299# define PL_thr_key *dll_PL_thr_key
300# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200301# endif
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100302# define Perl_hv_iternext_flags dll_Perl_hv_iternext_flags
303# define Perl_hv_iterinit dll_Perl_hv_iterinit
304# define Perl_hv_iterkey dll_Perl_hv_iterkey
305# define Perl_hv_iterval dll_Perl_hv_iterval
306# define Perl_av_fetch dll_Perl_av_fetch
307# define Perl_av_len dll_Perl_av_len
308# define Perl_sv_2nv_flags dll_Perl_sv_2nv_flags
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200309# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
310# define PerlIOBase_pushed dll_PerlIOBase_pushed
311# define PerlIO_define_layer dll_PerlIO_define_layer
312# endif
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200313# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
314# define Perl_savetmps dll_Perl_savetmps
315# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000316
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317/*
318 * Declare HANDLE for perl.dll and function pointers.
319 */
320static HANDLE hPerlLib = NULL;
321
322static PerlInterpreter* (*perl_alloc)();
323static void (*perl_construct)(PerlInterpreter*);
324static void (*perl_destruct)(PerlInterpreter*);
325static void (*perl_free)(PerlInterpreter*);
326static int (*perl_run)(PerlInterpreter*);
327static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
328static void* (*Perl_get_context)(void);
Bram Moolenaar864733a2016-04-02 14:18:01 +0200329static void (*Perl_croak)(pTHX_ const char*, ...) __attribute__noreturn__;
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100330#ifdef PERL5101_OR_LATER
Bram Moolenaar6b107212013-12-11 15:06:40 +0100331/* Perl-5.18 has a different Perl_croak_xs_usage signature. */
332# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar864733a2016-04-02 14:18:01 +0200333static void (*Perl_croak_xs_usage)(const CV *const, const char *const params)
334 __attribute__noreturn__;
Bram Moolenaar6b107212013-12-11 15:06:40 +0100335# else
Bram Moolenaar864733a2016-04-02 14:18:01 +0200336static void (*Perl_croak_xs_usage)(pTHX_ const CV *const, const char *const params)
337 __attribute__noreturn__;
Bram Moolenaar6b107212013-12-11 15:06:40 +0100338# endif
Bram Moolenaar9be6e212013-06-15 16:47:35 +0200339#endif
Bram Moolenaar864733a2016-04-02 14:18:01 +0200340static void (*Perl_croak_nocontext)(const char*, ...) __attribute__noreturn__;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341static I32 (*Perl_dowantarray)(pTHX);
342static void (*Perl_free_tmps)(pTHX);
343static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200344#if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
345static I32* (*Perl_markstack_grow)(pTHX);
346#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347static void (*Perl_markstack_grow)(pTHX);
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200348#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349static MAGIC* (*Perl_mg_find)(pTHX_ SV*, int);
350static CV* (*Perl_newXS)(pTHX_ char*, XSUBADDR_t, char*);
351static SV* (*Perl_newSV)(pTHX_ STRLEN);
352static SV* (*Perl_newSViv)(pTHX_ IV);
353static SV* (*Perl_newSVpv)(pTHX_ const char*, STRLEN);
354static I32 (*Perl_call_argv)(pTHX_ const char*, I32, char**);
355static I32 (*Perl_call_pv)(pTHX_ const char*, I32);
356static I32 (*Perl_eval_sv)(pTHX_ SV*, I32);
357static SV* (*Perl_get_sv)(pTHX_ const char*, I32);
358static SV* (*Perl_eval_pv)(pTHX_ const char*, I32);
359static SV* (*Perl_call_method)(pTHX_ const char*, I32);
360static void (*Perl_pop_scope)(pTHX);
361static void (*Perl_push_scope)(pTHX);
362static void (*Perl_save_int)(pTHX_ int*);
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200363#if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
364static void (*Perl_save_strlen)(pTHX_ STRLEN* ptr);
365#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366static SV** (*Perl_stack_grow)(pTHX_ SV**, SV**p, int);
367static SV** (*Perl_set_context)(void*);
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200368#if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
369static bool (*Perl_sv_2bool_flags)(pTHX_ SV*, I32);
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200370# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200371static void (*Perl_xs_apiversion_bootcheck)(pTHX_ SV *module, const char *api_p, STRLEN api_len);
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200372# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200373#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374static bool (*Perl_sv_2bool)(pTHX_ SV*);
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200375#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376static IV (*Perl_sv_2iv)(pTHX_ SV*);
377static SV* (*Perl_sv_2mortal)(pTHX_ SV*);
378#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
379static char* (*Perl_sv_2pv_flags)(pTHX_ SV*, STRLEN*, I32);
380static char* (*Perl_sv_2pv_nolen)(pTHX_ SV*);
381#else
382static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*);
383#endif
384static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*);
385#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
386static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32);
387#else
388static void (*Perl_sv_catpvn)(pTHX_ SV*, const char*, STRLEN);
389#endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000390#ifdef PERL589_OR_LATER
391static IV (*Perl_sv_2iv_flags)(pTHX_ SV* sv, I32 flags);
392static CV * (*Perl_newXS_flags)(pTHX_ const char *name, XSUBADDR_t subaddr, const char *const filename, const char *const proto, U32 flags);
393#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394static void (*Perl_sv_free)(pTHX_ SV*);
395static int (*Perl_sv_isa)(pTHX_ SV*, const char*);
396static void (*Perl_sv_magic)(pTHX_ SV*, SV*, int, const char*, I32);
397static void (*Perl_sv_setiv)(pTHX_ SV*, IV);
398static void (*Perl_sv_setpv)(pTHX_ SV*, const char*);
399static void (*Perl_sv_setpvn)(pTHX_ SV*, const char*, STRLEN);
400#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
401static void (*Perl_sv_setsv_flags)(pTHX_ SV*, SV*, I32);
402#else
403static void (*Perl_sv_setsv)(pTHX_ SV*, SV*);
404#endif
405static bool (*Perl_sv_upgrade)(pTHX_ SV*, U32);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200406#if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407static SV*** (*Perl_Tstack_sp_ptr)(register PerlInterpreter*);
408static OP** (*Perl_Top_ptr)(register PerlInterpreter*);
409static SV*** (*Perl_Tstack_base_ptr)(register PerlInterpreter*);
410static SV*** (*Perl_Tstack_max_ptr)(register PerlInterpreter*);
411static I32* (*Perl_Ttmps_ix_ptr)(register PerlInterpreter*);
412static I32* (*Perl_Ttmps_floor_ptr)(register PerlInterpreter*);
413static I32** (*Perl_Tmarkstack_ptr_ptr)(register PerlInterpreter*);
414static I32** (*Perl_Tmarkstack_max_ptr)(register PerlInterpreter*);
415static SV** (*Perl_TSv_ptr)(register PerlInterpreter*);
416static XPV** (*Perl_TXpv_ptr)(register PerlInterpreter*);
417static STRLEN* (*Perl_Tna_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200418#else
Bram Moolenaar6b107212013-12-11 15:06:40 +0100419/* Perl-5.18 has a different Perl_sv_free2 signature. */
420# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
421static void (*Perl_sv_free2)(pTHX_ SV*, const U32);
422# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000423static void (*Perl_sv_free2)(pTHX_ SV*);
Bram Moolenaar6b107212013-12-11 15:06:40 +0100424# endif
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000425static void (*Perl_sys_init)(int* argc, char*** argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000426static void (*Perl_sys_term)(void);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200427static void (*Perl_call_list)(pTHX_ I32, AV*);
428# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
429# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000430static SV** (*Perl_ISv_ptr)(register PerlInterpreter*);
431static SV*** (*Perl_Istack_max_ptr)(register PerlInterpreter*);
432static SV*** (*Perl_Istack_base_ptr)(register PerlInterpreter*);
433static XPV** (*Perl_IXpv_ptr)(register PerlInterpreter*);
434static I32* (*Perl_Itmps_ix_ptr)(register PerlInterpreter*);
435static I32* (*Perl_Itmps_floor_ptr)(register PerlInterpreter*);
436static STRLEN* (*Perl_Ina_ptr)(register PerlInterpreter*);
437static I32** (*Perl_Imarkstack_ptr_ptr)(register PerlInterpreter*);
438static I32** (*Perl_Imarkstack_max_ptr)(register PerlInterpreter*);
439static SV*** (*Perl_Istack_sp_ptr)(register PerlInterpreter*);
440static OP** (*Perl_Iop_ptr)(register PerlInterpreter*);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000441static I32* (*Perl_Iscopestack_ix_ptr)(register PerlInterpreter*);
442static AV** (*Perl_Iunitcheckav_ptr)(register PerlInterpreter*);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200443# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000444#endif
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200445#if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
446static I32 (*Perl_xs_handshake)(const U32, void *, const char *, ...);
447static void (*Perl_xs_boot_epilog)(pTHX_ const U32);
448#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200450#if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100451# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200452static perl_key* dll_PL_thr_key;
Bram Moolenaard8619992014-03-12 17:08:05 +0100453# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200454#else
Bram Moolenaare06c1882010-07-21 22:05:20 +0200455static GV** (*Perl_Idefgv_ptr)(register PerlInterpreter*);
456static GV** (*Perl_Ierrgv_ptr)(register PerlInterpreter*);
457static SV* (*Perl_Isv_yes_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200458static perl_key* (*Perl_Gthr_key_ptr)_((pTHX));
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200459#endif
460static void (*boot_DynaLoader)_((pTHX_ CV*));
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100461static HE * (*Perl_hv_iternext_flags)(pTHX_ HV *, I32);
462static I32 (*Perl_hv_iterinit)(pTHX_ HV *);
463static char * (*Perl_hv_iterkey)(pTHX_ HE *, I32 *);
464static SV * (*Perl_hv_iterval)(pTHX_ HV *, HE *);
465static SV** (*Perl_av_fetch)(pTHX_ AV *, SSize_t, I32);
466static SSize_t (*Perl_av_len)(pTHX_ AV *);
467static NV (*Perl_sv_2nv_flags)(pTHX_ SV *const, const I32);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200468#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
469static IV (*PerlIOBase_pushed)(pTHX_ PerlIO *, const char *, SV *, PerlIO_funcs *);
470static void (*PerlIO_define_layer)(pTHX_ PerlIO_funcs *);
471#endif
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200472#if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
473static void (*Perl_savetmps)(pTHX);
474#endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200475
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476/*
477 * Table of name to function pointer of perl.
478 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479static struct {
480 char* name;
481 PERL_PROC* ptr;
482} perl_funcname_table[] = {
483 {"perl_alloc", (PERL_PROC*)&perl_alloc},
484 {"perl_construct", (PERL_PROC*)&perl_construct},
485 {"perl_destruct", (PERL_PROC*)&perl_destruct},
486 {"perl_free", (PERL_PROC*)&perl_free},
487 {"perl_run", (PERL_PROC*)&perl_run},
488 {"perl_parse", (PERL_PROC*)&perl_parse},
489 {"Perl_get_context", (PERL_PROC*)&Perl_get_context},
490 {"Perl_croak", (PERL_PROC*)&Perl_croak},
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100491#ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100492 {"Perl_croak_xs_usage", (PERL_PROC*)&Perl_croak_xs_usage},
493#endif
Bram Moolenaard8619992014-03-12 17:08:05 +0100494#ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495 {"Perl_croak_nocontext", (PERL_PROC*)&Perl_croak_nocontext},
Bram Moolenaard8619992014-03-12 17:08:05 +0100496#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 {"Perl_dowantarray", (PERL_PROC*)&Perl_dowantarray},
498 {"Perl_free_tmps", (PERL_PROC*)&Perl_free_tmps},
499 {"Perl_gv_stashpv", (PERL_PROC*)&Perl_gv_stashpv},
500 {"Perl_markstack_grow", (PERL_PROC*)&Perl_markstack_grow},
501 {"Perl_mg_find", (PERL_PROC*)&Perl_mg_find},
502 {"Perl_newXS", (PERL_PROC*)&Perl_newXS},
503 {"Perl_newSV", (PERL_PROC*)&Perl_newSV},
504 {"Perl_newSViv", (PERL_PROC*)&Perl_newSViv},
505 {"Perl_newSVpv", (PERL_PROC*)&Perl_newSVpv},
506 {"Perl_call_argv", (PERL_PROC*)&Perl_call_argv},
507 {"Perl_call_pv", (PERL_PROC*)&Perl_call_pv},
508 {"Perl_eval_sv", (PERL_PROC*)&Perl_eval_sv},
509 {"Perl_get_sv", (PERL_PROC*)&Perl_get_sv},
510 {"Perl_eval_pv", (PERL_PROC*)&Perl_eval_pv},
511 {"Perl_call_method", (PERL_PROC*)&Perl_call_method},
512 {"Perl_pop_scope", (PERL_PROC*)&Perl_pop_scope},
513 {"Perl_push_scope", (PERL_PROC*)&Perl_push_scope},
514 {"Perl_save_int", (PERL_PROC*)&Perl_save_int},
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200515#if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
516 {"Perl_save_strlen", (PERL_PROC*)&Perl_save_strlen},
517#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 {"Perl_stack_grow", (PERL_PROC*)&Perl_stack_grow},
519 {"Perl_set_context", (PERL_PROC*)&Perl_set_context},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200520#if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
521 {"Perl_sv_2bool_flags", (PERL_PROC*)&Perl_sv_2bool_flags},
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200522# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200523 {"Perl_xs_apiversion_bootcheck",(PERL_PROC*)&Perl_xs_apiversion_bootcheck},
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200524# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200525#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526 {"Perl_sv_2bool", (PERL_PROC*)&Perl_sv_2bool},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200527#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000528 {"Perl_sv_2iv", (PERL_PROC*)&Perl_sv_2iv},
529 {"Perl_sv_2mortal", (PERL_PROC*)&Perl_sv_2mortal},
530#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
531 {"Perl_sv_2pv_flags", (PERL_PROC*)&Perl_sv_2pv_flags},
532 {"Perl_sv_2pv_nolen", (PERL_PROC*)&Perl_sv_2pv_nolen},
533#else
534 {"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv},
535#endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000536#ifdef PERL589_OR_LATER
537 {"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags},
538 {"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags},
539#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540 {"Perl_sv_bless", (PERL_PROC*)&Perl_sv_bless},
541#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
542 {"Perl_sv_catpvn_flags", (PERL_PROC*)&Perl_sv_catpvn_flags},
543#else
544 {"Perl_sv_catpvn", (PERL_PROC*)&Perl_sv_catpvn},
545#endif
546 {"Perl_sv_free", (PERL_PROC*)&Perl_sv_free},
547 {"Perl_sv_isa", (PERL_PROC*)&Perl_sv_isa},
548 {"Perl_sv_magic", (PERL_PROC*)&Perl_sv_magic},
549 {"Perl_sv_setiv", (PERL_PROC*)&Perl_sv_setiv},
550 {"Perl_sv_setpv", (PERL_PROC*)&Perl_sv_setpv},
551 {"Perl_sv_setpvn", (PERL_PROC*)&Perl_sv_setpvn},
552#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
553 {"Perl_sv_setsv_flags", (PERL_PROC*)&Perl_sv_setsv_flags},
554#else
555 {"Perl_sv_setsv", (PERL_PROC*)&Perl_sv_setsv},
556#endif
557 {"Perl_sv_upgrade", (PERL_PROC*)&Perl_sv_upgrade},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000558#if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 {"Perl_Tstack_sp_ptr", (PERL_PROC*)&Perl_Tstack_sp_ptr},
560 {"Perl_Top_ptr", (PERL_PROC*)&Perl_Top_ptr},
561 {"Perl_Tstack_base_ptr", (PERL_PROC*)&Perl_Tstack_base_ptr},
562 {"Perl_Tstack_max_ptr", (PERL_PROC*)&Perl_Tstack_max_ptr},
563 {"Perl_Ttmps_ix_ptr", (PERL_PROC*)&Perl_Ttmps_ix_ptr},
564 {"Perl_Ttmps_floor_ptr", (PERL_PROC*)&Perl_Ttmps_floor_ptr},
565 {"Perl_Tmarkstack_ptr_ptr", (PERL_PROC*)&Perl_Tmarkstack_ptr_ptr},
566 {"Perl_Tmarkstack_max_ptr", (PERL_PROC*)&Perl_Tmarkstack_max_ptr},
567 {"Perl_TSv_ptr", (PERL_PROC*)&Perl_TSv_ptr},
568 {"Perl_TXpv_ptr", (PERL_PROC*)&Perl_TXpv_ptr},
569 {"Perl_Tna_ptr", (PERL_PROC*)&Perl_Tna_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000570#else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000571 {"Perl_sv_free2", (PERL_PROC*)&Perl_sv_free2},
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000572 {"Perl_sys_init", (PERL_PROC*)&Perl_sys_init},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000573 {"Perl_sys_term", (PERL_PROC*)&Perl_sys_term},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200574 {"Perl_call_list", (PERL_PROC*)&Perl_call_list},
575# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
576# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000577 {"Perl_ISv_ptr", (PERL_PROC*)&Perl_ISv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000578 {"Perl_Istack_max_ptr", (PERL_PROC*)&Perl_Istack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200579 {"Perl_Istack_base_ptr", (PERL_PROC*)&Perl_Istack_base_ptr},
580 {"Perl_IXpv_ptr", (PERL_PROC*)&Perl_IXpv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000581 {"Perl_Itmps_ix_ptr", (PERL_PROC*)&Perl_Itmps_ix_ptr},
582 {"Perl_Itmps_floor_ptr", (PERL_PROC*)&Perl_Itmps_floor_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200583 {"Perl_Ina_ptr", (PERL_PROC*)&Perl_Ina_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000584 {"Perl_Imarkstack_ptr_ptr", (PERL_PROC*)&Perl_Imarkstack_ptr_ptr},
585 {"Perl_Imarkstack_max_ptr", (PERL_PROC*)&Perl_Imarkstack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200586 {"Perl_Istack_sp_ptr", (PERL_PROC*)&Perl_Istack_sp_ptr},
587 {"Perl_Iop_ptr", (PERL_PROC*)&Perl_Iop_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000588 {"Perl_Iscopestack_ix_ptr", (PERL_PROC*)&Perl_Iscopestack_ix_ptr},
589 {"Perl_Iunitcheckav_ptr", (PERL_PROC*)&Perl_Iunitcheckav_ptr},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200590# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000591#endif
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200592#if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
593 {"Perl_xs_handshake", (PERL_PROC*)&Perl_xs_handshake},
594 {"Perl_xs_boot_epilog", (PERL_PROC*)&Perl_xs_boot_epilog},
595#endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200596#if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100597# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200598 {"PL_thr_key", (PERL_PROC*)&dll_PL_thr_key},
Bram Moolenaard8619992014-03-12 17:08:05 +0100599# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200600#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 {"Perl_Idefgv_ptr", (PERL_PROC*)&Perl_Idefgv_ptr},
602 {"Perl_Ierrgv_ptr", (PERL_PROC*)&Perl_Ierrgv_ptr},
603 {"Perl_Isv_yes_ptr", (PERL_PROC*)&Perl_Isv_yes_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200604 {"Perl_Gthr_key_ptr", (PERL_PROC*)&Perl_Gthr_key_ptr},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200605#endif
606 {"boot_DynaLoader", (PERL_PROC*)&boot_DynaLoader},
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100607 {"Perl_hv_iternext_flags", (PERL_PROC*)&Perl_hv_iternext_flags},
608 {"Perl_hv_iterinit", (PERL_PROC*)&Perl_hv_iterinit},
609 {"Perl_hv_iterkey", (PERL_PROC*)&Perl_hv_iterkey},
610 {"Perl_hv_iterval", (PERL_PROC*)&Perl_hv_iterval},
611 {"Perl_av_fetch", (PERL_PROC*)&Perl_av_fetch},
612 {"Perl_av_len", (PERL_PROC*)&Perl_av_len},
613 {"Perl_sv_2nv_flags", (PERL_PROC*)&Perl_sv_2nv_flags},
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200614#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
615 {"PerlIOBase_pushed", (PERL_PROC*)&PerlIOBase_pushed},
616 {"PerlIO_define_layer", (PERL_PROC*)&PerlIO_define_layer},
617#endif
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200618#if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
619 {"Perl_savetmps", (PERL_PROC*)&Perl_savetmps},
620#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621 {"", NULL},
622};
623
Bram Moolenaar6b107212013-12-11 15:06:40 +0100624/* Work around for perl-5.18.
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200625 * For now, only the definitions of S_SvREFCNT_dec are needed in
626 * "perl\lib\CORE\inline.h". */
Bram Moolenaar6b107212013-12-11 15:06:40 +0100627#if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200628static void
629S_SvREFCNT_dec(pTHX_ SV *sv)
630{
631 if (LIKELY(sv != NULL)) {
632 U32 rc = SvREFCNT(sv);
633 if (LIKELY(rc > 1))
634 SvREFCNT(sv) = rc - 1;
635 else
636 Perl_sv_free2(aTHX_ sv, rc);
637 }
638}
Bram Moolenaar6b107212013-12-11 15:06:40 +0100639#endif
640
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641/*
642 * Make all runtime-links of perl.
643 *
Bram Moolenaar364ab2f2013-08-02 20:05:32 +0200644 * 1. Get module handle using dlopen() or vimLoadLib().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645 * 2. Get pointer to perl function by GetProcAddress.
646 * 3. Repeat 2, until get all functions will be used.
647 *
648 * Parameter 'libname' provides name of DLL.
649 * Return OK or FAIL.
650 */
651 static int
652perl_runtime_link_init(char *libname, int verbose)
653{
654 int i;
655
656 if (hPerlLib != NULL)
657 return OK;
Bram Moolenaare06c1882010-07-21 22:05:20 +0200658 if ((hPerlLib = load_dll(libname)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659 {
660 if (verbose)
661 EMSG2(_("E370: Could not load library %s"), libname);
662 return FAIL;
663 }
664 for (i = 0; perl_funcname_table[i].ptr; ++i)
665 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200666 if (!(*perl_funcname_table[i].ptr = symbol_from_dll(hPerlLib,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667 perl_funcname_table[i].name)))
668 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200669 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670 hPerlLib = NULL;
671 if (verbose)
672 EMSG2(_(e_loadfunc), perl_funcname_table[i].name);
673 return FAIL;
674 }
675 }
676 return OK;
677}
678
679/*
680 * If runtime-link-perl(DLL) was loaded successfully, return TRUE.
681 * There were no DLL loaded, return FALSE.
682 */
683 int
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100684perl_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685{
Bram Moolenaar25e4fcd2016-01-09 14:57:47 +0100686 return perl_runtime_link_init((char *)p_perldll, verbose) == OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687}
688#endif /* DYNAMIC_PERL */
689
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200690#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
691static void vim_IOLayer_init(void);
692#endif
693
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694/*
695 * perl_init(): initialize perl interpreter
696 * We have to call perl_parse to initialize some structures,
697 * there's nothing to actually parse.
698 */
699 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100700perl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701{
Bram Moolenaarc236c162008-07-13 17:41:49 +0000702 char *bootargs[] = { "VI", NULL };
703 int argc = 3;
704 static char *argv[] = { "", "-e", "" };
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705
Bram Moolenaarc236c162008-07-13 17:41:49 +0000706#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000707 Perl_sys_init(&argc, (char***)&argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000708#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 perl_interp = perl_alloc();
710 perl_construct(perl_interp);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000711 perl_parse(perl_interp, xs_init, argc, argv, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 perl_call_argv("VIM::bootstrap", (long)G_DISCARD, bootargs);
713 VIM_init();
714#ifdef USE_SFIO
715 sfdisc(PerlIO_stdout(), sfdcnewvim());
716 sfdisc(PerlIO_stderr(), sfdcnewvim());
717 sfsetbuf(PerlIO_stdout(), NULL, 0);
718 sfsetbuf(PerlIO_stderr(), NULL, 0);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200719#elif defined(PERLIO_LAYERS)
720 vim_IOLayer_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721#endif
722}
723
724/*
725 * perl_end(): clean up after ourselves
726 */
727 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100728perl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729{
730 if (perl_interp)
731 {
732 perl_run(perl_interp);
733 perl_destruct(perl_interp);
734 perl_free(perl_interp);
735 perl_interp = NULL;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000736#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100737 Perl_sys_term();
Bram Moolenaarc236c162008-07-13 17:41:49 +0000738#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 }
740#ifdef DYNAMIC_PERL
741 if (hPerlLib)
742 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200743 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 hPerlLib = NULL;
745 }
746#endif
747}
748
749/*
750 * msg_split(): send a message to the message handling routines
751 * split at '\n' first though.
752 */
753 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100754msg_split(
755 char_u *s,
756 int attr) /* highlighting attributes */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757{
758 char *next;
759 char *token = (char *)s;
760
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000761 while ((next = strchr(token, '\n')) && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 {
763 *next++ = '\0'; /* replace \n with \0 */
764 msg_attr((char_u *)token, attr);
765 token = next;
766 }
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000767 if (*token && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768 msg_attr((char_u *)token, attr);
769}
770
771#ifndef FEAT_EVAL
772/*
773 * This stub is needed because an "#ifdef FEAT_EVAL" around Eval() doesn't
774 * work properly.
775 */
776 char_u *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100777eval_to_string(
778 char_u *arg UNUSED,
779 char_u **nextcmd UNUSED,
780 int dolist UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781{
782 return NULL;
783}
784#endif
785
786/*
787 * Create a new reference to an SV pointing to the SCR structure
Bram Moolenaare344bea2005-09-01 20:46:49 +0000788 * The b_perl_private/w_perl_private part of the SCR structure points to the
789 * SV, so there can only be one such SV for a particular SCR structure. When
790 * the last reference has gone (DESTROY is called),
791 * b_perl_private/w_perl_private is reset; When the screen goes away before
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 * all references are gone, the value of the SV is reset;
793 * any subsequent use of any of those reference will produce
794 * a warning. (see typemap)
795 */
Bram Moolenaare344bea2005-09-01 20:46:49 +0000796
797 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100798newWINrv(SV *rv, win_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000799{
800 sv_upgrade(rv, SVt_RV);
801 if (ptr->w_perl_private == NULL)
802 {
803 ptr->w_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100804 sv_setiv(ptr->w_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000805 }
806 else
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200807 SvREFCNT_inc_void_NN(ptr->w_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000808 SvRV(rv) = ptr->w_perl_private;
809 SvROK_on(rv);
810 return sv_bless(rv, gv_stashpv("VIWIN", TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811}
812
Bram Moolenaare344bea2005-09-01 20:46:49 +0000813 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100814newBUFrv(SV *rv, buf_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000815{
816 sv_upgrade(rv, SVt_RV);
817 if (ptr->b_perl_private == NULL)
818 {
819 ptr->b_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100820 sv_setiv(ptr->b_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000821 }
822 else
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200823 SvREFCNT_inc_void_NN(ptr->b_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000824 SvRV(rv) = ptr->b_perl_private;
825 SvROK_on(rv);
826 return sv_bless(rv, gv_stashpv("VIBUF", TRUE));
827}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828
829/*
830 * perl_win_free
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200831 * Remove all references to the window to be destroyed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 */
833 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100834perl_win_free(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835{
Bram Moolenaare344bea2005-09-01 20:46:49 +0000836 if (wp->w_perl_private)
837 sv_setiv((SV *)wp->w_perl_private, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 return;
839}
840
841 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100842perl_buf_free(buf_T *bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843{
Bram Moolenaare344bea2005-09-01 20:46:49 +0000844 if (bp->b_perl_private)
845 sv_setiv((SV *)bp->b_perl_private, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 return;
847}
848
849#ifndef PROTO
850# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
851I32 cur_val(pTHX_ IV iv, SV *sv);
852# else
853I32 cur_val(IV iv, SV *sv);
854#endif
855
856/*
857 * Handler for the magic variables $main::curwin and $main::curbuf.
858 * The handler is put into the magic vtbl for these variables.
859 * (This is effectively a C-level equivalent of a tied variable).
860 * There is no "set" function as the variables are read-only.
861 */
862# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
863I32 cur_val(pTHX_ IV iv, SV *sv)
864# else
865I32 cur_val(IV iv, SV *sv)
866# endif
867{
868 SV *rv;
869 if (iv == 0)
870 rv = newWINrv(newSV(0), curwin);
871 else
872 rv = newBUFrv(newSV(0), curbuf);
873 sv_setsv(sv, rv);
Bram Moolenaar95509e12016-04-15 21:16:11 +0200874 SvREFCNT_dec(SvRV(rv));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 return 0;
876}
877#endif /* !PROTO */
878
879struct ufuncs cw_funcs = { cur_val, 0, 0 };
880struct ufuncs cb_funcs = { cur_val, 0, 1 };
881
882/*
883 * VIM_init(): Vim-specific initialisation.
884 * Make the magical main::curwin and main::curbuf variables
885 */
886 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100887VIM_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888{
889 static char cw[] = "main::curwin";
890 static char cb[] = "main::curbuf";
891 SV *sv;
892
893 sv = perl_get_sv(cw, TRUE);
894 sv_magic(sv, NULL, 'U', (char *)&cw_funcs, sizeof(cw_funcs));
895 SvREADONLY_on(sv);
896
897 sv = perl_get_sv(cb, TRUE);
898 sv_magic(sv, NULL, 'U', (char *)&cb_funcs, sizeof(cb_funcs));
899 SvREADONLY_on(sv);
900
901 /*
902 * Setup the Safe compartment.
903 * It shouldn't be a fatal error if the Safe module is missing.
904 * XXX: Only shares the 'Msg' routine (which has to be called
905 * like 'Msg(...)').
906 */
907 (void)perl_eval_pv( "if ( eval( 'require Safe' ) ) { $VIM::safe = Safe->new(); $VIM::safe->share_from( 'VIM', ['Msg'] ); }", G_DISCARD | G_VOID );
908
909}
910
911#ifdef DYNAMIC_PERL
912static char *e_noperl = N_("Sorry, this command is disabled: the Perl library could not be loaded.");
913#endif
914
915/*
916 * ":perl"
917 */
918 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100919ex_perl(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920{
921 char *err;
922 char *script;
923 STRLEN length;
924 SV *sv;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200925#ifdef HAVE_SANDBOX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 SV *safe;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200927#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928
929 script = (char *)script_get(eap, eap->arg);
930 if (eap->skip)
931 {
932 vim_free(script);
933 return;
934 }
935
936 if (perl_interp == NULL)
937 {
938#ifdef DYNAMIC_PERL
939 if (!perl_enabled(TRUE))
940 {
941 EMSG(_(e_noperl));
942 vim_free(script);
943 return;
944 }
945#endif
946 perl_init();
947 }
948
949 {
950 dSP;
951 ENTER;
952 SAVETMPS;
953
954 if (script == NULL)
955 sv = newSVpv((char *)eap->arg, 0);
956 else
957 {
958 sv = newSVpv(script, 0);
959 vim_free(script);
960 }
961
962#ifdef HAVE_SANDBOX
963 if (sandbox)
964 {
Bram Moolenaara1711622011-07-27 14:15:46 +0200965 safe = perl_get_sv("VIM::safe", FALSE);
Bram Moolenaar3f947ea2009-07-14 14:04:54 +0000966# ifndef MAKE_TEST /* avoid a warning for unreachable code */
Bram Moolenaar954e8c52009-11-11 13:45:33 +0000967 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 EMSG(_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
969 else
Bram Moolenaar3f947ea2009-07-14 14:04:54 +0000970# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 {
972 PUSHMARK(SP);
973 XPUSHs(safe);
974 XPUSHs(sv);
975 PUTBACK;
976 perl_call_method("reval", G_DISCARD);
977 }
978 }
979 else
980#endif
981 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
982
983 SvREFCNT_dec(sv);
984
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100985 err = CHECK_EVAL_ERR(length);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986
987 FREETMPS;
988 LEAVE;
989
990 if (!length)
991 return;
992
993 msg_split((char_u *)err, highlight_attr[HLF_E]);
994 return;
995 }
996}
997
998 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100999replace_line(linenr_T *line, linenr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000{
1001 char *str;
1002
1003 if (SvOK(GvSV(PL_defgv)))
1004 {
1005 str = SvPV(GvSV(PL_defgv), PL_na);
1006 ml_replace(*line, (char_u *)str, 1);
1007 changed_bytes(*line, 0);
1008 }
1009 else
1010 {
1011 ml_delete(*line, FALSE);
1012 deleted_lines_mark(*line, 1L);
1013 --(*end);
1014 --(*line);
1015 }
1016 return OK;
1017}
1018
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001019static struct ref_map_S {
1020 void *vim_ref;
1021 SV *perl_ref;
1022 struct ref_map_S *next;
1023} *ref_map = NULL;
1024
1025 static void
1026ref_map_free(void)
1027{
1028 struct ref_map_S *tofree;
1029 struct ref_map_S *refs = ref_map;
1030
1031 while (refs) {
1032 tofree = refs;
1033 refs = refs->next;
1034 vim_free(tofree);
1035 }
1036 ref_map = NULL;
1037}
1038
1039 static struct ref_map_S *
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001040ref_map_find_SV(SV *const sv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001041{
1042 struct ref_map_S *refs = ref_map;
1043 int count = 350;
1044
1045 while (refs) {
1046 if (refs->perl_ref == sv)
1047 break;
1048 refs = refs->next;
1049 count--;
1050 }
1051
1052 if (!refs && count > 0) {
1053 refs = (struct ref_map_S *)alloc(sizeof(struct ref_map_S));
1054 if (!refs)
1055 return NULL;
1056 refs->perl_ref = sv;
1057 refs->vim_ref = NULL;
1058 refs->next = ref_map;
1059 ref_map = refs;
1060 }
1061
1062 return refs;
1063}
1064
1065 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001066perl_to_vim(SV *sv, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001067{
1068 if (SvROK(sv))
1069 sv = SvRV(sv);
1070
1071 switch (SvTYPE(sv)) {
1072 case SVt_NULL:
1073 break;
1074 case SVt_NV: /* float */
1075#ifdef FEAT_FLOAT
1076 rettv->v_type = VAR_FLOAT;
1077 rettv->vval.v_float = SvNV(sv);
1078 break;
1079#endif
1080 case SVt_IV: /* integer */
1081 if (!SvROK(sv)) { /* references should be string */
1082 rettv->vval.v_number = SvIV(sv);
1083 break;
1084 }
1085 case SVt_PV: /* string */
1086 {
1087 size_t len = 0;
1088 char * str_from = SvPV(sv, len);
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001089 char_u *str_to = (char_u*)alloc(
1090 (unsigned)(sizeof(char_u) * (len + 1)));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001091
1092 if (str_to) {
1093 str_to[len] = '\0';
1094
1095 while (len--) {
1096 if (str_from[len] == '\0')
1097 str_to[len] = '\n';
1098 else
1099 str_to[len] = str_from[len];
1100 }
1101 }
1102
1103 rettv->v_type = VAR_STRING;
1104 rettv->vval.v_string = str_to;
1105 break;
1106 }
1107 case SVt_PVAV: /* list */
1108 {
1109 SSize_t size;
1110 listitem_T * item;
1111 SV ** item2;
1112 list_T * list;
1113 struct ref_map_S * refs;
1114
1115 if ((refs = ref_map_find_SV(sv)) == NULL)
1116 return FAIL;
1117
1118 if (refs->vim_ref)
1119 list = (list_T *) refs->vim_ref;
1120 else
1121 {
1122 if ((list = list_alloc()) == NULL)
1123 return FAIL;
1124 refs->vim_ref = list;
1125
1126 for (size = av_len((AV*)sv); size >= 0; size--)
1127 {
1128 if ((item = listitem_alloc()) == NULL)
1129 break;
1130
1131 item->li_tv.v_type = VAR_NUMBER;
1132 item->li_tv.v_lock = 0;
1133 item->li_tv.vval.v_number = 0;
1134 list_insert(list, item, list->lv_first);
1135
1136 item2 = av_fetch((AV *)sv, size, 0);
1137
1138 if (item2 == NULL || *item2 == NULL ||
Bram Moolenaard99df422016-01-29 23:20:40 +01001139 perl_to_vim(*item2, &item->li_tv) == FAIL)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001140 break;
1141 }
1142 }
1143
1144 list->lv_refcount++;
1145 rettv->v_type = VAR_LIST;
1146 rettv->vval.v_list = list;
1147 break;
1148 }
1149 case SVt_PVHV: /* dictionary */
1150 {
1151 HE * entry;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001152 I32 key_len;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001153 char * key;
1154 dictitem_T * item;
1155 SV * item2;
1156 dict_T * dict;
1157 struct ref_map_S * refs;
1158
1159 if ((refs = ref_map_find_SV(sv)) == NULL)
1160 return FAIL;
1161
1162 if (refs->vim_ref)
1163 dict = (dict_T *) refs->vim_ref;
1164 else
1165 {
1166
1167 if ((dict = dict_alloc()) == NULL)
1168 return FAIL;
1169 refs->vim_ref = dict;
1170
1171 hv_iterinit((HV *)sv);
1172
1173 for (entry = hv_iternext((HV *)sv); entry; entry = hv_iternext((HV *)sv))
1174 {
1175 key_len = 0;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001176 key = hv_iterkey(entry, &key_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001177
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001178 if (!key || !key_len || strlen(key) < (size_t)key_len) {
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001179 EMSG2("Malformed key Dictionary '%s'", key && *key ? key : "(empty)");
1180 break;
1181 }
1182
1183 if ((item = dictitem_alloc((char_u *)key)) == NULL)
1184 break;
1185
1186 item->di_tv.v_type = VAR_NUMBER;
1187 item->di_tv.v_lock = 0;
1188 item->di_tv.vval.v_number = 0;
1189
1190 if (dict_add(dict, item) == FAIL) {
1191 dictitem_free(item);
1192 break;
1193 }
1194 item2 = hv_iterval((HV *)sv, entry);
1195 if (item2 == NULL || perl_to_vim(item2, &item->di_tv) == FAIL)
1196 break;
1197 }
1198 }
1199
1200 dict->dv_refcount++;
1201 rettv->v_type = VAR_DICT;
1202 rettv->vval.v_dict = dict;
1203 break;
1204 }
1205 default: /* not convertible */
1206 {
1207 char *val = SvPV_nolen(sv);
1208 rettv->v_type = VAR_STRING;
1209 rettv->vval.v_string = val ? vim_strsave((char_u *)val) : NULL;
1210 break;
1211 }
1212 }
1213 return OK;
1214}
1215
1216/*
1217 * "perleval()"
1218 */
1219 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001220do_perleval(char_u *str, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001221{
1222 char *err = NULL;
1223 STRLEN err_len = 0;
1224 SV *sv = NULL;
1225#ifdef HAVE_SANDBOX
1226 SV *safe;
1227#endif
1228
1229 if (perl_interp == NULL)
1230 {
1231#ifdef DYNAMIC_PERL
1232 if (!perl_enabled(TRUE))
1233 {
1234 EMSG(_(e_noperl));
1235 return;
1236 }
1237#endif
1238 perl_init();
1239 }
1240
1241 {
1242 dSP;
1243 ENTER;
1244 SAVETMPS;
1245
1246#ifdef HAVE_SANDBOX
1247 if (sandbox)
1248 {
1249 safe = get_sv("VIM::safe", FALSE);
1250# ifndef MAKE_TEST /* avoid a warning for unreachable code */
1251 if (safe == NULL || !SvTRUE(safe))
1252 EMSG(_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
1253 else
1254# endif
1255 {
1256 sv = newSVpv((char *)str, 0);
1257 PUSHMARK(SP);
1258 XPUSHs(safe);
1259 XPUSHs(sv);
1260 PUTBACK;
1261 call_method("reval", G_SCALAR);
1262 SPAGAIN;
1263 SvREFCNT_dec(sv);
1264 sv = POPs;
1265 }
1266 }
1267 else
1268#endif /* HAVE_SANDBOX */
1269 sv = eval_pv((char *)str, 0);
1270
1271 if (sv) {
1272 perl_to_vim(sv, rettv);
1273 ref_map_free();
1274 err = CHECK_EVAL_ERR(err_len);
1275 }
1276 PUTBACK;
1277 FREETMPS;
1278 LEAVE;
1279 }
1280 if (err_len)
1281 msg_split((char_u *)err, highlight_attr[HLF_E]);
1282}
1283
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284/*
1285 * ":perldo".
1286 */
1287 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001288ex_perldo(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289{
1290 STRLEN length;
1291 SV *sv;
1292 char *str;
1293 linenr_T i;
1294
1295 if (bufempty())
1296 return;
1297
1298 if (perl_interp == NULL)
1299 {
1300#ifdef DYNAMIC_PERL
1301 if (!perl_enabled(TRUE))
1302 {
1303 EMSG(_(e_noperl));
1304 return;
1305 }
1306#endif
1307 perl_init();
1308 }
1309 {
1310 dSP;
1311 length = strlen((char *)eap->arg);
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001312 sv = newSV(length + sizeof("sub VIM::perldo {") - 1 + 1);
1313 sv_setpvn(sv, "sub VIM::perldo {", sizeof("sub VIM::perldo {") - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 sv_catpvn(sv, (char *)eap->arg, length);
1315 sv_catpvn(sv, "}", 1);
1316 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1317 SvREFCNT_dec(sv);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001318 str = CHECK_EVAL_ERR(length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 if (length)
1320 goto err;
1321
1322 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
1323 return;
1324
1325 ENTER;
1326 SAVETMPS;
1327 for (i = eap->line1; i <= eap->line2; i++)
1328 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001329 sv_setpv(GvSV(PL_defgv), (char *)ml_get(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 PUSHMARK(sp);
1331 perl_call_pv("VIM::perldo", G_SCALAR | G_EVAL);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001332 str = CHECK_EVAL_ERR(length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 if (length)
1334 break;
1335 SPAGAIN;
1336 if (SvTRUEx(POPs))
1337 {
1338 if (replace_line(&i, &eap->line2) != OK)
1339 {
1340 PUTBACK;
1341 break;
1342 }
1343 }
1344 PUTBACK;
1345 }
1346 FREETMPS;
1347 LEAVE;
1348 check_cursor();
1349 update_screen(NOT_VALID);
1350 if (!length)
1351 return;
1352
1353err:
1354 msg_split((char_u *)str, highlight_attr[HLF_E]);
1355 return;
1356 }
1357}
1358
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001359#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
1360typedef struct {
1361 struct _PerlIO base;
1362 int attr;
1363} PerlIOVim;
1364
1365 static IV
1366PerlIOVim_pushed(pTHX_ PerlIO *f, const char *mode,
1367 SV *arg, PerlIO_funcs *tab)
1368{
1369 PerlIOVim *s = PerlIOSelf(f, PerlIOVim);
1370 s->attr = 0;
1371 if (arg && SvPOK(arg)) {
1372 int id = syn_name2id((char_u *)SvPV_nolen(arg));
1373 if (id != 0)
1374 s->attr = syn_id2attr(id);
1375 }
1376 return PerlIOBase_pushed(aTHX_ f, mode, (SV *)NULL, tab);
1377}
1378
1379 static SSize_t
1380PerlIOVim_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
1381{
1382 char_u *str;
1383 PerlIOVim * s = PerlIOSelf(f, PerlIOVim);
1384
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001385 str = vim_strnsave((char_u *)vbuf, (int)count);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001386 if (str == NULL)
1387 return 0;
1388 msg_split((char_u *)str, s->attr);
1389 vim_free(str);
1390
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001391 return (SSize_t)count;
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001392}
1393
1394static PERLIO_FUNCS_DECL(PerlIO_Vim) = {
1395 sizeof(PerlIO_funcs),
1396 "Vim",
1397 sizeof(PerlIOVim),
1398 PERLIO_K_DUMMY, /* flags */
1399 PerlIOVim_pushed,
1400 NULL, /* popped */
1401 NULL, /* open */
1402 NULL, /* binmode */
1403 NULL, /* arg */
1404 NULL, /* fileno */
1405 NULL, /* dup */
1406 NULL, /* read */
1407 NULL, /* unread */
1408 PerlIOVim_write,
1409 NULL, /* seek */
1410 NULL, /* tell */
1411 NULL, /* close */
1412 NULL, /* flush */
1413 NULL, /* fill */
1414 NULL, /* eof */
1415 NULL, /* error */
1416 NULL, /* clearerr */
1417 NULL, /* setlinebuf */
1418 NULL, /* get_base */
1419 NULL, /* get_bufsiz */
1420 NULL, /* get_ptr */
1421 NULL, /* get_cnt */
1422 NULL /* set_ptrcnt */
1423};
1424
1425/* Use Vim routine for print operator */
1426 static void
1427vim_IOLayer_init(void)
1428{
1429 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_Vim));
1430 (void)eval_pv( "binmode(STDOUT, ':Vim')"
1431 " && binmode(STDERR, ':Vim(ErrorMsg)');", 0);
1432}
1433#endif /* PERLIO_LAYERS && !USE_SFIO */
1434
Bram Moolenaar01dd60c2008-07-24 14:24:48 +00001435#ifndef FEAT_WINDOWS
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001436 int
1437win_valid(win_T *w)
1438{
1439 return TRUE;
1440}
1441 int
1442win_count(void)
1443{
1444 return 1;
1445}
1446 win_T *
1447win_find_nr(int n)
1448{
1449 return curwin;
1450}
Bram Moolenaar01dd60c2008-07-24 14:24:48 +00001451#endif
1452
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453XS(boot_VIM);
1454
1455 static void
1456xs_init(pTHX)
1457{
1458 char *file = __FILE__;
1459
1460 /* DynaLoader is a special case */
1461 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
1462 newXS("VIM::bootstrap", boot_VIM, file);
1463}
1464
1465typedef win_T * VIWIN;
1466typedef buf_T * VIBUF;
1467
1468MODULE = VIM PACKAGE = VIM
1469
1470void
1471Msg(text, hl=NULL)
1472 char *text;
1473 char *hl;
1474
1475 PREINIT:
1476 int attr;
1477 int id;
1478
1479 PPCODE:
1480 if (text != NULL)
1481 {
1482 attr = 0;
1483 if (hl != NULL)
1484 {
1485 id = syn_name2id((char_u *)hl);
1486 if (id != 0)
1487 attr = syn_id2attr(id);
1488 }
1489 msg_split((char_u *)text, attr);
1490 }
1491
1492void
1493SetOption(line)
1494 char *line;
1495
1496 PPCODE:
1497 if (line != NULL)
1498 do_set((char_u *)line, 0);
1499 update_screen(NOT_VALID);
1500
1501void
1502DoCommand(line)
1503 char *line;
1504
1505 PPCODE:
1506 if (line != NULL)
1507 do_cmdline_cmd((char_u *)line);
1508
1509void
1510Eval(str)
1511 char *str;
1512
1513 PREINIT:
1514 char_u *value;
1515 PPCODE:
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001516 value = eval_to_string((char_u *)str, (char_u **)0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517 if (value == NULL)
1518 {
1519 XPUSHs(sv_2mortal(newSViv(0)));
1520 XPUSHs(sv_2mortal(newSVpv("", 0)));
1521 }
1522 else
1523 {
1524 XPUSHs(sv_2mortal(newSViv(1)));
1525 XPUSHs(sv_2mortal(newSVpv((char *)value, 0)));
1526 vim_free(value);
1527 }
1528
1529void
1530Buffers(...)
1531
1532 PREINIT:
1533 buf_T *vimbuf;
1534 int i, b;
1535
1536 PPCODE:
1537 if (items == 0)
1538 {
1539 if (GIMME == G_SCALAR)
1540 {
1541 i = 0;
1542 for (vimbuf = firstbuf; vimbuf; vimbuf = vimbuf->b_next)
1543 ++i;
1544
1545 XPUSHs(sv_2mortal(newSViv(i)));
1546 }
1547 else
1548 {
1549 for (vimbuf = firstbuf; vimbuf; vimbuf = vimbuf->b_next)
1550 XPUSHs(newBUFrv(newSV(0), vimbuf));
1551 }
1552 }
1553 else
1554 {
1555 for (i = 0; i < items; i++)
1556 {
1557 SV *sv = ST(i);
1558 if (SvIOK(sv))
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001559 b = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 else
1561 {
1562 char_u *pat;
1563 STRLEN len;
1564
1565 pat = (char_u *)SvPV(sv, len);
1566 ++emsg_off;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001567 b = buflist_findpat(pat, pat+len, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 --emsg_off;
1569 }
1570
1571 if (b >= 0)
1572 {
1573 vimbuf = buflist_findnr(b);
1574 if (vimbuf)
1575 XPUSHs(newBUFrv(newSV(0), vimbuf));
1576 }
1577 }
1578 }
1579
1580void
1581Windows(...)
1582
1583 PREINIT:
1584 win_T *vimwin;
1585 int i, w;
1586
1587 PPCODE:
1588 if (items == 0)
1589 {
1590 if (GIMME == G_SCALAR)
1591 XPUSHs(sv_2mortal(newSViv(win_count())));
1592 else
1593 {
1594 for (vimwin = firstwin; vimwin != NULL; vimwin = W_NEXT(vimwin))
1595 XPUSHs(newWINrv(newSV(0), vimwin));
1596 }
1597 }
1598 else
1599 {
1600 for (i = 0; i < items; i++)
1601 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001602 w = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 vimwin = win_find_nr(w);
1604 if (vimwin)
1605 XPUSHs(newWINrv(newSV(0), vimwin));
1606 }
1607 }
1608
1609MODULE = VIM PACKAGE = VIWIN
1610
1611void
1612DESTROY(win)
1613 VIWIN win
1614
1615 CODE:
1616 if (win_valid(win))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001617 win->w_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618
1619SV *
1620Buffer(win)
1621 VIWIN win
1622
1623 CODE:
1624 if (!win_valid(win))
1625 win = curwin;
1626 RETVAL = newBUFrv(newSV(0), win->w_buffer);
1627 OUTPUT:
1628 RETVAL
1629
1630void
1631SetHeight(win, height)
1632 VIWIN win
1633 int height;
1634
1635 PREINIT:
1636 win_T *savewin;
1637
1638 PPCODE:
1639 if (!win_valid(win))
1640 win = curwin;
1641 savewin = curwin;
1642 curwin = win;
1643 win_setheight(height);
1644 curwin = savewin;
1645
1646void
Bram Moolenaar864733a2016-04-02 14:18:01 +02001647Cursor(win, ...)
1648 VIWIN win
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649
1650 PPCODE:
Bram Moolenaara1711622011-07-27 14:15:46 +02001651 if (items == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 {
1653 EXTEND(sp, 2);
1654 if (!win_valid(win))
1655 win = curwin;
1656 PUSHs(sv_2mortal(newSViv(win->w_cursor.lnum)));
1657 PUSHs(sv_2mortal(newSViv(win->w_cursor.col)));
1658 }
Bram Moolenaara1711622011-07-27 14:15:46 +02001659 else if (items == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 {
1661 int lnum, col;
1662
1663 if (!win_valid(win))
1664 win = curwin;
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001665 lnum = (int) SvIV(ST(1));
1666 col = (int) SvIV(ST(2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 win->w_cursor.lnum = lnum;
1668 win->w_cursor.col = col;
1669 check_cursor(); /* put cursor on an existing line */
1670 update_screen(NOT_VALID);
1671 }
1672
1673MODULE = VIM PACKAGE = VIBUF
1674
1675void
1676DESTROY(vimbuf)
1677 VIBUF vimbuf;
1678
1679 CODE:
1680 if (buf_valid(vimbuf))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001681 vimbuf->b_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682
1683void
1684Name(vimbuf)
1685 VIBUF vimbuf;
1686
1687 PPCODE:
1688 if (!buf_valid(vimbuf))
1689 vimbuf = curbuf;
1690 /* No file name returns an empty string */
1691 if (vimbuf->b_fname == NULL)
1692 XPUSHs(sv_2mortal(newSVpv("", 0)));
1693 else
1694 XPUSHs(sv_2mortal(newSVpv((char *)vimbuf->b_fname, 0)));
1695
1696void
1697Number(vimbuf)
1698 VIBUF vimbuf;
1699
1700 PPCODE:
1701 if (!buf_valid(vimbuf))
1702 vimbuf = curbuf;
1703 XPUSHs(sv_2mortal(newSViv(vimbuf->b_fnum)));
1704
1705void
1706Count(vimbuf)
1707 VIBUF vimbuf;
1708
1709 PPCODE:
1710 if (!buf_valid(vimbuf))
1711 vimbuf = curbuf;
1712 XPUSHs(sv_2mortal(newSViv(vimbuf->b_ml.ml_line_count)));
1713
1714void
1715Get(vimbuf, ...)
1716 VIBUF vimbuf;
1717
1718 PREINIT:
1719 char_u *line;
1720 int i;
1721 long lnum;
1722 PPCODE:
1723 if (buf_valid(vimbuf))
1724 {
1725 for (i = 1; i < items; i++)
1726 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001727 lnum = (long) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1729 {
1730 line = ml_get_buf(vimbuf, lnum, FALSE);
1731 XPUSHs(sv_2mortal(newSVpv((char *)line, 0)));
1732 }
1733 }
1734 }
1735
1736void
1737Set(vimbuf, ...)
1738 VIBUF vimbuf;
1739
1740 PREINIT:
1741 int i;
1742 long lnum;
1743 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 PPCODE:
1745 if (buf_valid(vimbuf))
1746 {
1747 if (items < 3)
1748 croak("Usage: VIBUF::Set(vimbuf, lnum, @lines)");
1749
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001750 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 for(i = 2; i < items; i++, lnum++)
1752 {
1753 line = SvPV(ST(i),PL_na);
1754 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1755 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001756 aco_save_T aco;
1757
1758 /* set curwin/curbuf for "vimbuf" and save some things */
1759 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001760
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 if (u_savesub(lnum) == OK)
1762 {
1763 ml_replace(lnum, (char_u *)line, TRUE);
1764 changed_bytes(lnum, 0);
1765 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001766
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001767 /* restore curwin/curbuf and a few other things */
1768 aucmd_restbuf(&aco);
1769 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 }
1771 }
1772 }
1773
1774void
1775Delete(vimbuf, ...)
1776 VIBUF vimbuf;
1777
1778 PREINIT:
1779 long i, lnum = 0, count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 PPCODE:
1781 if (buf_valid(vimbuf))
1782 {
1783 if (items == 2)
1784 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001785 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 count = 1;
1787 }
1788 else if (items == 3)
1789 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001790 lnum = (long) SvIV(ST(1));
1791 count = (long) 1 + SvIV(ST(2)) - lnum;
Bram Moolenaara1711622011-07-27 14:15:46 +02001792 if (count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 count = 1;
Bram Moolenaara1711622011-07-27 14:15:46 +02001794 if (count < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 {
1796 lnum -= count;
1797 count = -count;
1798 }
1799 }
1800 if (items >= 2)
1801 {
1802 for (i = 0; i < count; i++)
1803 {
1804 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1805 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001806 aco_save_T aco;
1807
1808 /* set curwin/curbuf for "vimbuf" and save some things */
1809 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001810
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 if (u_savedel(lnum, 1) == OK)
1812 {
1813 ml_delete(lnum, 0);
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00001814 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 deleted_lines_mark(lnum, 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001817
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001818 /* restore curwin/curbuf and a few other things */
1819 aucmd_restbuf(&aco);
1820 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001821
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 update_curbuf(VALID);
1823 }
1824 }
1825 }
1826 }
1827
1828void
1829Append(vimbuf, ...)
1830 VIBUF vimbuf;
1831
1832 PREINIT:
1833 int i;
1834 long lnum;
1835 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836 PPCODE:
1837 if (buf_valid(vimbuf))
1838 {
1839 if (items < 3)
1840 croak("Usage: VIBUF::Append(vimbuf, lnum, @lines)");
1841
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001842 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 for (i = 2; i < items; i++, lnum++)
1844 {
1845 line = SvPV(ST(i),PL_na);
1846 if (lnum >= 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1847 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001848 aco_save_T aco;
1849
1850 /* set curwin/curbuf for "vimbuf" and save some things */
1851 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001852
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 if (u_inssub(lnum + 1) == OK)
1854 {
1855 ml_append(lnum, (char_u *)line, (colnr_T)0, FALSE);
1856 appended_lines_mark(lnum, 1L);
1857 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001858
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001859 /* restore curwin/curbuf and a few other things */
1860 aucmd_restbuf(&aco);
1861 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001862
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 update_curbuf(VALID);
1864 }
1865 }
1866 }
1867
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001868#ifdef __GNUC__
1869# pragma GCC diagnostic pop
1870#endif