blob: 62b0e0074434ff507000dca50a42c27af48f3d89 [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
Bram Moolenaarc4bc0e62016-06-02 13:54:49 +020074#ifndef SvREFCNT_inc_void_NN
75# define SvREFCNT_inc_void_NN SvREFCNT_inc
76#endif
Bram Moolenaarcf190c62016-06-02 11:54:06 +020077
Bram Moolenaar071d4272004-06-13 20:20:40 +000078/*
79 * Work around clashes between Perl and Vim namespace. proto.h doesn't
80 * include if_perl.pro and perlsfio.pro when IN_PERL_FILE is defined, because
81 * we need the CV typedef. proto.h can't be moved to after including
82 * if_perl.h, because we get all sorts of name clashes then.
83 */
84#ifndef PROTO
85#ifndef __MINGW32__
86# include "proto/if_perl.pro"
87# include "proto/if_perlsfio.pro"
88#endif
89#endif
90
91/* Perl compatibility stuff. This should ensure compatibility with older
92 * versions of Perl.
93 */
94
95#ifndef PERL_VERSION
96# include <patchlevel.h>
97# define PERL_REVISION 5
98# define PERL_VERSION PATCHLEVEL
99# define PERL_SUBVERSION SUBVERSION
100#endif
101
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000102/*
103 * Quoting Jan Dubois of Active State:
104 * ActivePerl build 822 still identifies itself as 5.8.8 but already
105 * contains many of the changes from the upcoming Perl 5.8.9 release.
106 *
107 * The changes include addition of two symbols (Perl_sv_2iv_flags,
108 * Perl_newXS_flags) not present in earlier releases.
109 *
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000110 * Jan Dubois suggested the following guarding scheme.
111 *
112 * Active State defined ACTIVEPERL_VERSION as a string in versions before
113 * 5.8.8; and so the comparison to 822 below needs to be guarded.
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000114 */
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000115#if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 8)
116# if (ACTIVEPERL_VERSION >= 822) || (PERL_SUBVERSION >= 9)
117# define PERL589_OR_LATER
118# endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000119#endif
120#if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
121# define PERL589_OR_LATER
122#endif
123
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100124#if (PERL_REVISION == 5) && ((PERL_VERSION > 10) || \
125 (PERL_VERSION == 10) && (PERL_SUBVERSION >= 1))
126# define PERL5101_OR_LATER
127#endif
128
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129#ifndef pTHX
130# define pTHX void
131# define pTHX_
132#endif
133
134#ifndef EXTERN_C
135# define EXTERN_C
136#endif
137
138/* Compatibility hacks over */
139
140static PerlInterpreter *perl_interp = NULL;
Bram Moolenaard99df422016-01-29 23:20:40 +0100141static void xs_init(pTHX);
142static void VIM_init(void);
143EXTERN_C void boot_DynaLoader(pTHX_ CV*);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144
145/*
Bram Moolenaare06c1882010-07-21 22:05:20 +0200146 * For dynamic linked perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147 */
148#if defined(DYNAMIC_PERL) || defined(PROTO)
Bram Moolenaare06c1882010-07-21 22:05:20 +0200149
150#ifndef DYNAMIC_PERL /* just generating prototypes */
Bram Moolenaar766fb0d2010-07-22 11:34:16 +0200151#ifdef WIN3264
Bram Moolenaare06c1882010-07-21 22:05:20 +0200152typedef int HANDLE;
153#endif
154typedef int XSINIT_t;
155typedef int XSUBADDR_t;
Bram Moolenaard8619992014-03-12 17:08:05 +0100156#endif
157#ifndef USE_ITHREADS
Bram Moolenaare06c1882010-07-21 22:05:20 +0200158typedef int perl_key;
159#endif
160
Bram Moolenaar766fb0d2010-07-22 11:34:16 +0200161#ifndef WIN3264
Bram Moolenaare06c1882010-07-21 22:05:20 +0200162#include <dlfcn.h>
163#define HANDLE void*
164#define PERL_PROC void*
165#define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
166#define symbol_from_dll dlsym
167#define close_dll dlclose
168#else
169#define PERL_PROC FARPROC
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200170#define load_dll vimLoadLib
Bram Moolenaare06c1882010-07-21 22:05:20 +0200171#define symbol_from_dll GetProcAddress
172#define close_dll FreeLibrary
173#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174/*
175 * Wrapper defines
176 */
177# define perl_alloc dll_perl_alloc
178# define perl_construct dll_perl_construct
179# define perl_parse dll_perl_parse
180# define perl_run dll_perl_run
181# define perl_destruct dll_perl_destruct
182# define perl_free dll_perl_free
183# define Perl_get_context dll_Perl_get_context
184# define Perl_croak dll_Perl_croak
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100185# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100186# define Perl_croak_xs_usage dll_Perl_croak_xs_usage
187# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188# ifndef PROTO
189# define Perl_croak_nocontext dll_Perl_croak_nocontext
190# define Perl_call_argv dll_Perl_call_argv
191# define Perl_call_pv dll_Perl_call_pv
192# define Perl_eval_sv dll_Perl_eval_sv
193# define Perl_get_sv dll_Perl_get_sv
194# define Perl_eval_pv dll_Perl_eval_pv
195# define Perl_call_method dll_Perl_call_method
196# endif
197# define Perl_dowantarray dll_Perl_dowantarray
198# define Perl_free_tmps dll_Perl_free_tmps
199# define Perl_gv_stashpv dll_Perl_gv_stashpv
200# define Perl_markstack_grow dll_Perl_markstack_grow
201# define Perl_mg_find dll_Perl_mg_find
202# define Perl_newXS dll_Perl_newXS
203# define Perl_newSV dll_Perl_newSV
204# define Perl_newSViv dll_Perl_newSViv
205# define Perl_newSVpv dll_Perl_newSVpv
206# define Perl_pop_scope dll_Perl_pop_scope
207# define Perl_push_scope dll_Perl_push_scope
208# define Perl_save_int dll_Perl_save_int
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200209# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
210# define Perl_save_strlen dll_Perl_save_strlen
211# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212# define Perl_stack_grow dll_Perl_stack_grow
213# define Perl_set_context dll_Perl_set_context
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200214# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200215# define Perl_sv_2bool_flags dll_Perl_sv_2bool_flags
216# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
217# define Perl_xs_apiversion_bootcheck dll_Perl_xs_apiversion_bootcheck
218# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200219# else
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200220# define Perl_sv_2bool dll_Perl_sv_2bool
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200221# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222# define Perl_sv_2iv dll_Perl_sv_2iv
223# define Perl_sv_2mortal dll_Perl_sv_2mortal
224# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
225# define Perl_sv_2pv_flags dll_Perl_sv_2pv_flags
226# define Perl_sv_2pv_nolen dll_Perl_sv_2pv_nolen
227# else
228# define Perl_sv_2pv dll_Perl_sv_2pv
229# endif
230# define Perl_sv_bless dll_Perl_sv_bless
231# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
232# define Perl_sv_catpvn_flags dll_Perl_sv_catpvn_flags
233# else
234# define Perl_sv_catpvn dll_Perl_sv_catpvn
235# endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000236#ifdef PERL589_OR_LATER
237# define Perl_sv_2iv_flags dll_Perl_sv_2iv_flags
238# define Perl_newXS_flags dll_Perl_newXS_flags
239#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240# define Perl_sv_free dll_Perl_sv_free
Bram Moolenaarccf22172008-09-01 15:56:45 +0000241# if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
242# define Perl_sv_free2 dll_Perl_sv_free2
243# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000244# define Perl_sv_isa dll_Perl_sv_isa
245# define Perl_sv_magic dll_Perl_sv_magic
246# define Perl_sv_setiv dll_Perl_sv_setiv
247# define Perl_sv_setpv dll_Perl_sv_setpv
248# define Perl_sv_setpvn dll_Perl_sv_setpvn
249# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
250# define Perl_sv_setsv_flags dll_Perl_sv_setsv_flags
251# else
252# define Perl_sv_setsv dll_Perl_sv_setsv
253# endif
254# define Perl_sv_upgrade dll_Perl_sv_upgrade
255# define Perl_Tstack_sp_ptr dll_Perl_Tstack_sp_ptr
256# define Perl_Top_ptr dll_Perl_Top_ptr
257# define Perl_Tstack_base_ptr dll_Perl_Tstack_base_ptr
258# define Perl_Tstack_max_ptr dll_Perl_Tstack_max_ptr
259# define Perl_Ttmps_ix_ptr dll_Perl_Ttmps_ix_ptr
260# define Perl_Ttmps_floor_ptr dll_Perl_Ttmps_floor_ptr
261# define Perl_Tmarkstack_ptr_ptr dll_Perl_Tmarkstack_ptr_ptr
262# define Perl_Tmarkstack_max_ptr dll_Perl_Tmarkstack_max_ptr
263# define Perl_TSv_ptr dll_Perl_TSv_ptr
264# define Perl_TXpv_ptr dll_Perl_TXpv_ptr
265# define Perl_Tna_ptr dll_Perl_Tna_ptr
266# define Perl_Idefgv_ptr dll_Perl_Idefgv_ptr
267# define Perl_Ierrgv_ptr dll_Perl_Ierrgv_ptr
268# define Perl_Isv_yes_ptr dll_Perl_Isv_yes_ptr
269# define boot_DynaLoader dll_boot_DynaLoader
Bram Moolenaare06c1882010-07-21 22:05:20 +0200270# define Perl_Gthr_key_ptr dll_Perl_Gthr_key_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000272# define Perl_sys_init dll_Perl_sys_init
Bram Moolenaarc236c162008-07-13 17:41:49 +0000273# define Perl_sys_term dll_Perl_sys_term
274# define Perl_ISv_ptr dll_Perl_ISv_ptr
275# define Perl_Istack_max_ptr dll_Perl_Istack_max_ptr
276# define Perl_Istack_base_ptr dll_Perl_Istack_base_ptr
277# define Perl_Itmps_ix_ptr dll_Perl_Itmps_ix_ptr
278# define Perl_Itmps_floor_ptr dll_Perl_Itmps_floor_ptr
279# define Perl_IXpv_ptr dll_Perl_IXpv_ptr
280# define Perl_Ina_ptr dll_Perl_Ina_ptr
281# define Perl_Imarkstack_ptr_ptr dll_Perl_Imarkstack_ptr_ptr
282# define Perl_Imarkstack_max_ptr dll_Perl_Imarkstack_max_ptr
283# define Perl_Istack_sp_ptr dll_Perl_Istack_sp_ptr
284# define Perl_Iop_ptr dll_Perl_Iop_ptr
285# define Perl_call_list dll_Perl_call_list
286# define Perl_Iscopestack_ix_ptr dll_Perl_Iscopestack_ix_ptr
287# define Perl_Iunitcheckav_ptr dll_Perl_Iunitcheckav_ptr
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200288# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
289# define Perl_xs_handshake dll_Perl_xs_handshake
290# define Perl_xs_boot_epilog dll_Perl_xs_boot_epilog
291# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200292# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100293# ifdef USE_ITHREADS
294# define PL_thr_key *dll_PL_thr_key
295# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200296# endif
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100297# define Perl_hv_iternext_flags dll_Perl_hv_iternext_flags
298# define Perl_hv_iterinit dll_Perl_hv_iterinit
299# define Perl_hv_iterkey dll_Perl_hv_iterkey
300# define Perl_hv_iterval dll_Perl_hv_iterval
301# define Perl_av_fetch dll_Perl_av_fetch
302# define Perl_av_len dll_Perl_av_len
303# define Perl_sv_2nv_flags dll_Perl_sv_2nv_flags
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200304# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
305# define PerlIOBase_pushed dll_PerlIOBase_pushed
306# define PerlIO_define_layer dll_PerlIO_define_layer
307# endif
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200308# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
309# define Perl_savetmps dll_Perl_savetmps
310# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000311
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312/*
313 * Declare HANDLE for perl.dll and function pointers.
314 */
315static HANDLE hPerlLib = NULL;
316
317static PerlInterpreter* (*perl_alloc)();
318static void (*perl_construct)(PerlInterpreter*);
319static void (*perl_destruct)(PerlInterpreter*);
320static void (*perl_free)(PerlInterpreter*);
321static int (*perl_run)(PerlInterpreter*);
322static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
323static void* (*Perl_get_context)(void);
Bram Moolenaar864733a2016-04-02 14:18:01 +0200324static void (*Perl_croak)(pTHX_ const char*, ...) __attribute__noreturn__;
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100325#ifdef PERL5101_OR_LATER
Bram Moolenaar6b107212013-12-11 15:06:40 +0100326/* Perl-5.18 has a different Perl_croak_xs_usage signature. */
327# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar864733a2016-04-02 14:18:01 +0200328static void (*Perl_croak_xs_usage)(const CV *const, const char *const params)
329 __attribute__noreturn__;
Bram Moolenaar6b107212013-12-11 15:06:40 +0100330# else
Bram Moolenaar864733a2016-04-02 14:18:01 +0200331static void (*Perl_croak_xs_usage)(pTHX_ const CV *const, const char *const params)
332 __attribute__noreturn__;
Bram Moolenaar6b107212013-12-11 15:06:40 +0100333# endif
Bram Moolenaar9be6e212013-06-15 16:47:35 +0200334#endif
Bram Moolenaar864733a2016-04-02 14:18:01 +0200335static void (*Perl_croak_nocontext)(const char*, ...) __attribute__noreturn__;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336static I32 (*Perl_dowantarray)(pTHX);
337static void (*Perl_free_tmps)(pTHX);
338static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200339#if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
340static I32* (*Perl_markstack_grow)(pTHX);
341#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342static void (*Perl_markstack_grow)(pTHX);
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200343#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344static MAGIC* (*Perl_mg_find)(pTHX_ SV*, int);
345static CV* (*Perl_newXS)(pTHX_ char*, XSUBADDR_t, char*);
346static SV* (*Perl_newSV)(pTHX_ STRLEN);
347static SV* (*Perl_newSViv)(pTHX_ IV);
348static SV* (*Perl_newSVpv)(pTHX_ const char*, STRLEN);
349static I32 (*Perl_call_argv)(pTHX_ const char*, I32, char**);
350static I32 (*Perl_call_pv)(pTHX_ const char*, I32);
351static I32 (*Perl_eval_sv)(pTHX_ SV*, I32);
352static SV* (*Perl_get_sv)(pTHX_ const char*, I32);
353static SV* (*Perl_eval_pv)(pTHX_ const char*, I32);
354static SV* (*Perl_call_method)(pTHX_ const char*, I32);
355static void (*Perl_pop_scope)(pTHX);
356static void (*Perl_push_scope)(pTHX);
357static void (*Perl_save_int)(pTHX_ int*);
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200358#if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
359static void (*Perl_save_strlen)(pTHX_ STRLEN* ptr);
360#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361static SV** (*Perl_stack_grow)(pTHX_ SV**, SV**p, int);
362static SV** (*Perl_set_context)(void*);
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200363#if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
364static bool (*Perl_sv_2bool_flags)(pTHX_ SV*, I32);
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200365# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200366static void (*Perl_xs_apiversion_bootcheck)(pTHX_ SV *module, const char *api_p, STRLEN api_len);
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200367# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200368#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369static bool (*Perl_sv_2bool)(pTHX_ SV*);
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200370#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371static IV (*Perl_sv_2iv)(pTHX_ SV*);
372static SV* (*Perl_sv_2mortal)(pTHX_ SV*);
373#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
374static char* (*Perl_sv_2pv_flags)(pTHX_ SV*, STRLEN*, I32);
375static char* (*Perl_sv_2pv_nolen)(pTHX_ SV*);
376#else
377static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*);
378#endif
379static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*);
380#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
381static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32);
382#else
383static void (*Perl_sv_catpvn)(pTHX_ SV*, const char*, STRLEN);
384#endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000385#ifdef PERL589_OR_LATER
386static IV (*Perl_sv_2iv_flags)(pTHX_ SV* sv, I32 flags);
387static CV * (*Perl_newXS_flags)(pTHX_ const char *name, XSUBADDR_t subaddr, const char *const filename, const char *const proto, U32 flags);
388#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389static void (*Perl_sv_free)(pTHX_ SV*);
390static int (*Perl_sv_isa)(pTHX_ SV*, const char*);
391static void (*Perl_sv_magic)(pTHX_ SV*, SV*, int, const char*, I32);
392static void (*Perl_sv_setiv)(pTHX_ SV*, IV);
393static void (*Perl_sv_setpv)(pTHX_ SV*, const char*);
394static void (*Perl_sv_setpvn)(pTHX_ SV*, const char*, STRLEN);
395#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
396static void (*Perl_sv_setsv_flags)(pTHX_ SV*, SV*, I32);
397#else
398static void (*Perl_sv_setsv)(pTHX_ SV*, SV*);
399#endif
400static bool (*Perl_sv_upgrade)(pTHX_ SV*, U32);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200401#if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402static SV*** (*Perl_Tstack_sp_ptr)(register PerlInterpreter*);
403static OP** (*Perl_Top_ptr)(register PerlInterpreter*);
404static SV*** (*Perl_Tstack_base_ptr)(register PerlInterpreter*);
405static SV*** (*Perl_Tstack_max_ptr)(register PerlInterpreter*);
406static I32* (*Perl_Ttmps_ix_ptr)(register PerlInterpreter*);
407static I32* (*Perl_Ttmps_floor_ptr)(register PerlInterpreter*);
408static I32** (*Perl_Tmarkstack_ptr_ptr)(register PerlInterpreter*);
409static I32** (*Perl_Tmarkstack_max_ptr)(register PerlInterpreter*);
410static SV** (*Perl_TSv_ptr)(register PerlInterpreter*);
411static XPV** (*Perl_TXpv_ptr)(register PerlInterpreter*);
412static STRLEN* (*Perl_Tna_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200413#else
Bram Moolenaar6b107212013-12-11 15:06:40 +0100414/* Perl-5.18 has a different Perl_sv_free2 signature. */
415# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
416static void (*Perl_sv_free2)(pTHX_ SV*, const U32);
417# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000418static void (*Perl_sv_free2)(pTHX_ SV*);
Bram Moolenaar6b107212013-12-11 15:06:40 +0100419# endif
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000420static void (*Perl_sys_init)(int* argc, char*** argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000421static void (*Perl_sys_term)(void);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200422static void (*Perl_call_list)(pTHX_ I32, AV*);
423# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
424# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000425static SV** (*Perl_ISv_ptr)(register PerlInterpreter*);
426static SV*** (*Perl_Istack_max_ptr)(register PerlInterpreter*);
427static SV*** (*Perl_Istack_base_ptr)(register PerlInterpreter*);
428static XPV** (*Perl_IXpv_ptr)(register PerlInterpreter*);
429static I32* (*Perl_Itmps_ix_ptr)(register PerlInterpreter*);
430static I32* (*Perl_Itmps_floor_ptr)(register PerlInterpreter*);
431static STRLEN* (*Perl_Ina_ptr)(register PerlInterpreter*);
432static I32** (*Perl_Imarkstack_ptr_ptr)(register PerlInterpreter*);
433static I32** (*Perl_Imarkstack_max_ptr)(register PerlInterpreter*);
434static SV*** (*Perl_Istack_sp_ptr)(register PerlInterpreter*);
435static OP** (*Perl_Iop_ptr)(register PerlInterpreter*);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000436static I32* (*Perl_Iscopestack_ix_ptr)(register PerlInterpreter*);
437static AV** (*Perl_Iunitcheckav_ptr)(register PerlInterpreter*);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200438# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000439#endif
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200440#if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
441static I32 (*Perl_xs_handshake)(const U32, void *, const char *, ...);
442static void (*Perl_xs_boot_epilog)(pTHX_ const U32);
443#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200445#if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100446# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200447static perl_key* dll_PL_thr_key;
Bram Moolenaard8619992014-03-12 17:08:05 +0100448# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200449#else
Bram Moolenaare06c1882010-07-21 22:05:20 +0200450static GV** (*Perl_Idefgv_ptr)(register PerlInterpreter*);
451static GV** (*Perl_Ierrgv_ptr)(register PerlInterpreter*);
452static SV* (*Perl_Isv_yes_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200453static perl_key* (*Perl_Gthr_key_ptr)_((pTHX));
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200454#endif
455static void (*boot_DynaLoader)_((pTHX_ CV*));
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100456static HE * (*Perl_hv_iternext_flags)(pTHX_ HV *, I32);
457static I32 (*Perl_hv_iterinit)(pTHX_ HV *);
458static char * (*Perl_hv_iterkey)(pTHX_ HE *, I32 *);
459static SV * (*Perl_hv_iterval)(pTHX_ HV *, HE *);
460static SV** (*Perl_av_fetch)(pTHX_ AV *, SSize_t, I32);
461static SSize_t (*Perl_av_len)(pTHX_ AV *);
462static NV (*Perl_sv_2nv_flags)(pTHX_ SV *const, const I32);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200463#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
464static IV (*PerlIOBase_pushed)(pTHX_ PerlIO *, const char *, SV *, PerlIO_funcs *);
465static void (*PerlIO_define_layer)(pTHX_ PerlIO_funcs *);
466#endif
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200467#if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
468static void (*Perl_savetmps)(pTHX);
469#endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200470
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471/*
472 * Table of name to function pointer of perl.
473 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474static struct {
475 char* name;
476 PERL_PROC* ptr;
477} perl_funcname_table[] = {
478 {"perl_alloc", (PERL_PROC*)&perl_alloc},
479 {"perl_construct", (PERL_PROC*)&perl_construct},
480 {"perl_destruct", (PERL_PROC*)&perl_destruct},
481 {"perl_free", (PERL_PROC*)&perl_free},
482 {"perl_run", (PERL_PROC*)&perl_run},
483 {"perl_parse", (PERL_PROC*)&perl_parse},
484 {"Perl_get_context", (PERL_PROC*)&Perl_get_context},
485 {"Perl_croak", (PERL_PROC*)&Perl_croak},
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100486#ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100487 {"Perl_croak_xs_usage", (PERL_PROC*)&Perl_croak_xs_usage},
488#endif
Bram Moolenaard8619992014-03-12 17:08:05 +0100489#ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490 {"Perl_croak_nocontext", (PERL_PROC*)&Perl_croak_nocontext},
Bram Moolenaard8619992014-03-12 17:08:05 +0100491#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000492 {"Perl_dowantarray", (PERL_PROC*)&Perl_dowantarray},
493 {"Perl_free_tmps", (PERL_PROC*)&Perl_free_tmps},
494 {"Perl_gv_stashpv", (PERL_PROC*)&Perl_gv_stashpv},
495 {"Perl_markstack_grow", (PERL_PROC*)&Perl_markstack_grow},
496 {"Perl_mg_find", (PERL_PROC*)&Perl_mg_find},
497 {"Perl_newXS", (PERL_PROC*)&Perl_newXS},
498 {"Perl_newSV", (PERL_PROC*)&Perl_newSV},
499 {"Perl_newSViv", (PERL_PROC*)&Perl_newSViv},
500 {"Perl_newSVpv", (PERL_PROC*)&Perl_newSVpv},
501 {"Perl_call_argv", (PERL_PROC*)&Perl_call_argv},
502 {"Perl_call_pv", (PERL_PROC*)&Perl_call_pv},
503 {"Perl_eval_sv", (PERL_PROC*)&Perl_eval_sv},
504 {"Perl_get_sv", (PERL_PROC*)&Perl_get_sv},
505 {"Perl_eval_pv", (PERL_PROC*)&Perl_eval_pv},
506 {"Perl_call_method", (PERL_PROC*)&Perl_call_method},
507 {"Perl_pop_scope", (PERL_PROC*)&Perl_pop_scope},
508 {"Perl_push_scope", (PERL_PROC*)&Perl_push_scope},
509 {"Perl_save_int", (PERL_PROC*)&Perl_save_int},
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200510#if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
511 {"Perl_save_strlen", (PERL_PROC*)&Perl_save_strlen},
512#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513 {"Perl_stack_grow", (PERL_PROC*)&Perl_stack_grow},
514 {"Perl_set_context", (PERL_PROC*)&Perl_set_context},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200515#if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
516 {"Perl_sv_2bool_flags", (PERL_PROC*)&Perl_sv_2bool_flags},
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200517# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200518 {"Perl_xs_apiversion_bootcheck",(PERL_PROC*)&Perl_xs_apiversion_bootcheck},
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200519# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200520#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 {"Perl_sv_2bool", (PERL_PROC*)&Perl_sv_2bool},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200522#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 {"Perl_sv_2iv", (PERL_PROC*)&Perl_sv_2iv},
524 {"Perl_sv_2mortal", (PERL_PROC*)&Perl_sv_2mortal},
525#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
526 {"Perl_sv_2pv_flags", (PERL_PROC*)&Perl_sv_2pv_flags},
527 {"Perl_sv_2pv_nolen", (PERL_PROC*)&Perl_sv_2pv_nolen},
528#else
529 {"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv},
530#endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000531#ifdef PERL589_OR_LATER
532 {"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags},
533 {"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags},
534#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 {"Perl_sv_bless", (PERL_PROC*)&Perl_sv_bless},
536#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
537 {"Perl_sv_catpvn_flags", (PERL_PROC*)&Perl_sv_catpvn_flags},
538#else
539 {"Perl_sv_catpvn", (PERL_PROC*)&Perl_sv_catpvn},
540#endif
541 {"Perl_sv_free", (PERL_PROC*)&Perl_sv_free},
542 {"Perl_sv_isa", (PERL_PROC*)&Perl_sv_isa},
543 {"Perl_sv_magic", (PERL_PROC*)&Perl_sv_magic},
544 {"Perl_sv_setiv", (PERL_PROC*)&Perl_sv_setiv},
545 {"Perl_sv_setpv", (PERL_PROC*)&Perl_sv_setpv},
546 {"Perl_sv_setpvn", (PERL_PROC*)&Perl_sv_setpvn},
547#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
548 {"Perl_sv_setsv_flags", (PERL_PROC*)&Perl_sv_setsv_flags},
549#else
550 {"Perl_sv_setsv", (PERL_PROC*)&Perl_sv_setsv},
551#endif
552 {"Perl_sv_upgrade", (PERL_PROC*)&Perl_sv_upgrade},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000553#if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554 {"Perl_Tstack_sp_ptr", (PERL_PROC*)&Perl_Tstack_sp_ptr},
555 {"Perl_Top_ptr", (PERL_PROC*)&Perl_Top_ptr},
556 {"Perl_Tstack_base_ptr", (PERL_PROC*)&Perl_Tstack_base_ptr},
557 {"Perl_Tstack_max_ptr", (PERL_PROC*)&Perl_Tstack_max_ptr},
558 {"Perl_Ttmps_ix_ptr", (PERL_PROC*)&Perl_Ttmps_ix_ptr},
559 {"Perl_Ttmps_floor_ptr", (PERL_PROC*)&Perl_Ttmps_floor_ptr},
560 {"Perl_Tmarkstack_ptr_ptr", (PERL_PROC*)&Perl_Tmarkstack_ptr_ptr},
561 {"Perl_Tmarkstack_max_ptr", (PERL_PROC*)&Perl_Tmarkstack_max_ptr},
562 {"Perl_TSv_ptr", (PERL_PROC*)&Perl_TSv_ptr},
563 {"Perl_TXpv_ptr", (PERL_PROC*)&Perl_TXpv_ptr},
564 {"Perl_Tna_ptr", (PERL_PROC*)&Perl_Tna_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000565#else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000566 {"Perl_sv_free2", (PERL_PROC*)&Perl_sv_free2},
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000567 {"Perl_sys_init", (PERL_PROC*)&Perl_sys_init},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000568 {"Perl_sys_term", (PERL_PROC*)&Perl_sys_term},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200569 {"Perl_call_list", (PERL_PROC*)&Perl_call_list},
570# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
571# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000572 {"Perl_ISv_ptr", (PERL_PROC*)&Perl_ISv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000573 {"Perl_Istack_max_ptr", (PERL_PROC*)&Perl_Istack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200574 {"Perl_Istack_base_ptr", (PERL_PROC*)&Perl_Istack_base_ptr},
575 {"Perl_IXpv_ptr", (PERL_PROC*)&Perl_IXpv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000576 {"Perl_Itmps_ix_ptr", (PERL_PROC*)&Perl_Itmps_ix_ptr},
577 {"Perl_Itmps_floor_ptr", (PERL_PROC*)&Perl_Itmps_floor_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200578 {"Perl_Ina_ptr", (PERL_PROC*)&Perl_Ina_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000579 {"Perl_Imarkstack_ptr_ptr", (PERL_PROC*)&Perl_Imarkstack_ptr_ptr},
580 {"Perl_Imarkstack_max_ptr", (PERL_PROC*)&Perl_Imarkstack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200581 {"Perl_Istack_sp_ptr", (PERL_PROC*)&Perl_Istack_sp_ptr},
582 {"Perl_Iop_ptr", (PERL_PROC*)&Perl_Iop_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000583 {"Perl_Iscopestack_ix_ptr", (PERL_PROC*)&Perl_Iscopestack_ix_ptr},
584 {"Perl_Iunitcheckav_ptr", (PERL_PROC*)&Perl_Iunitcheckav_ptr},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200585# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000586#endif
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200587#if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
588 {"Perl_xs_handshake", (PERL_PROC*)&Perl_xs_handshake},
589 {"Perl_xs_boot_epilog", (PERL_PROC*)&Perl_xs_boot_epilog},
590#endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200591#if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100592# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200593 {"PL_thr_key", (PERL_PROC*)&dll_PL_thr_key},
Bram Moolenaard8619992014-03-12 17:08:05 +0100594# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200595#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596 {"Perl_Idefgv_ptr", (PERL_PROC*)&Perl_Idefgv_ptr},
597 {"Perl_Ierrgv_ptr", (PERL_PROC*)&Perl_Ierrgv_ptr},
598 {"Perl_Isv_yes_ptr", (PERL_PROC*)&Perl_Isv_yes_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200599 {"Perl_Gthr_key_ptr", (PERL_PROC*)&Perl_Gthr_key_ptr},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200600#endif
601 {"boot_DynaLoader", (PERL_PROC*)&boot_DynaLoader},
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100602 {"Perl_hv_iternext_flags", (PERL_PROC*)&Perl_hv_iternext_flags},
603 {"Perl_hv_iterinit", (PERL_PROC*)&Perl_hv_iterinit},
604 {"Perl_hv_iterkey", (PERL_PROC*)&Perl_hv_iterkey},
605 {"Perl_hv_iterval", (PERL_PROC*)&Perl_hv_iterval},
606 {"Perl_av_fetch", (PERL_PROC*)&Perl_av_fetch},
607 {"Perl_av_len", (PERL_PROC*)&Perl_av_len},
608 {"Perl_sv_2nv_flags", (PERL_PROC*)&Perl_sv_2nv_flags},
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200609#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
610 {"PerlIOBase_pushed", (PERL_PROC*)&PerlIOBase_pushed},
611 {"PerlIO_define_layer", (PERL_PROC*)&PerlIO_define_layer},
612#endif
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200613#if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
614 {"Perl_savetmps", (PERL_PROC*)&Perl_savetmps},
615#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 {"", NULL},
617};
618
Bram Moolenaar6b107212013-12-11 15:06:40 +0100619/* Work around for perl-5.18.
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200620 * For now, only the definitions of S_SvREFCNT_dec are needed in
621 * "perl\lib\CORE\inline.h". */
Bram Moolenaar6b107212013-12-11 15:06:40 +0100622#if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200623static void
624S_SvREFCNT_dec(pTHX_ SV *sv)
625{
626 if (LIKELY(sv != NULL)) {
627 U32 rc = SvREFCNT(sv);
628 if (LIKELY(rc > 1))
629 SvREFCNT(sv) = rc - 1;
630 else
631 Perl_sv_free2(aTHX_ sv, rc);
632 }
633}
Bram Moolenaar6b107212013-12-11 15:06:40 +0100634#endif
635
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636/*
637 * Make all runtime-links of perl.
638 *
Bram Moolenaar364ab2f2013-08-02 20:05:32 +0200639 * 1. Get module handle using dlopen() or vimLoadLib().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 * 2. Get pointer to perl function by GetProcAddress.
641 * 3. Repeat 2, until get all functions will be used.
642 *
643 * Parameter 'libname' provides name of DLL.
644 * Return OK or FAIL.
645 */
646 static int
647perl_runtime_link_init(char *libname, int verbose)
648{
649 int i;
650
651 if (hPerlLib != NULL)
652 return OK;
Bram Moolenaare06c1882010-07-21 22:05:20 +0200653 if ((hPerlLib = load_dll(libname)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654 {
655 if (verbose)
656 EMSG2(_("E370: Could not load library %s"), libname);
657 return FAIL;
658 }
659 for (i = 0; perl_funcname_table[i].ptr; ++i)
660 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200661 if (!(*perl_funcname_table[i].ptr = symbol_from_dll(hPerlLib,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 perl_funcname_table[i].name)))
663 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200664 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000665 hPerlLib = NULL;
666 if (verbose)
667 EMSG2(_(e_loadfunc), perl_funcname_table[i].name);
668 return FAIL;
669 }
670 }
671 return OK;
672}
673
674/*
675 * If runtime-link-perl(DLL) was loaded successfully, return TRUE.
676 * There were no DLL loaded, return FALSE.
677 */
678 int
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100679perl_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680{
Bram Moolenaar25e4fcd2016-01-09 14:57:47 +0100681 return perl_runtime_link_init((char *)p_perldll, verbose) == OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682}
683#endif /* DYNAMIC_PERL */
684
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200685#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
686static void vim_IOLayer_init(void);
687#endif
688
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689/*
690 * perl_init(): initialize perl interpreter
691 * We have to call perl_parse to initialize some structures,
692 * there's nothing to actually parse.
693 */
694 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100695perl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696{
Bram Moolenaarc236c162008-07-13 17:41:49 +0000697 char *bootargs[] = { "VI", NULL };
698 int argc = 3;
699 static char *argv[] = { "", "-e", "" };
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700
Bram Moolenaarc236c162008-07-13 17:41:49 +0000701#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000702 Perl_sys_init(&argc, (char***)&argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000703#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 perl_interp = perl_alloc();
705 perl_construct(perl_interp);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000706 perl_parse(perl_interp, xs_init, argc, argv, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 perl_call_argv("VIM::bootstrap", (long)G_DISCARD, bootargs);
708 VIM_init();
709#ifdef USE_SFIO
710 sfdisc(PerlIO_stdout(), sfdcnewvim());
711 sfdisc(PerlIO_stderr(), sfdcnewvim());
712 sfsetbuf(PerlIO_stdout(), NULL, 0);
713 sfsetbuf(PerlIO_stderr(), NULL, 0);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200714#elif defined(PERLIO_LAYERS)
715 vim_IOLayer_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716#endif
717}
718
719/*
720 * perl_end(): clean up after ourselves
721 */
722 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100723perl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724{
725 if (perl_interp)
726 {
727 perl_run(perl_interp);
728 perl_destruct(perl_interp);
729 perl_free(perl_interp);
730 perl_interp = NULL;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000731#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100732 Perl_sys_term();
Bram Moolenaarc236c162008-07-13 17:41:49 +0000733#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 }
735#ifdef DYNAMIC_PERL
736 if (hPerlLib)
737 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200738 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 hPerlLib = NULL;
740 }
741#endif
742}
743
744/*
745 * msg_split(): send a message to the message handling routines
746 * split at '\n' first though.
747 */
748 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100749msg_split(
750 char_u *s,
751 int attr) /* highlighting attributes */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752{
753 char *next;
754 char *token = (char *)s;
755
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000756 while ((next = strchr(token, '\n')) && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 {
758 *next++ = '\0'; /* replace \n with \0 */
759 msg_attr((char_u *)token, attr);
760 token = next;
761 }
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000762 if (*token && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 msg_attr((char_u *)token, attr);
764}
765
766#ifndef FEAT_EVAL
767/*
768 * This stub is needed because an "#ifdef FEAT_EVAL" around Eval() doesn't
769 * work properly.
770 */
771 char_u *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100772eval_to_string(
773 char_u *arg UNUSED,
774 char_u **nextcmd UNUSED,
775 int dolist UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776{
777 return NULL;
778}
779#endif
780
781/*
782 * Create a new reference to an SV pointing to the SCR structure
Bram Moolenaare344bea2005-09-01 20:46:49 +0000783 * The b_perl_private/w_perl_private part of the SCR structure points to the
784 * SV, so there can only be one such SV for a particular SCR structure. When
785 * the last reference has gone (DESTROY is called),
786 * b_perl_private/w_perl_private is reset; When the screen goes away before
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787 * all references are gone, the value of the SV is reset;
788 * any subsequent use of any of those reference will produce
789 * a warning. (see typemap)
790 */
Bram Moolenaare344bea2005-09-01 20:46:49 +0000791
792 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100793newWINrv(SV *rv, win_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000794{
795 sv_upgrade(rv, SVt_RV);
796 if (ptr->w_perl_private == NULL)
797 {
798 ptr->w_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100799 sv_setiv(ptr->w_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000800 }
801 else
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200802 SvREFCNT_inc_void_NN(ptr->w_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000803 SvRV(rv) = ptr->w_perl_private;
804 SvROK_on(rv);
805 return sv_bless(rv, gv_stashpv("VIWIN", TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806}
807
Bram Moolenaare344bea2005-09-01 20:46:49 +0000808 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100809newBUFrv(SV *rv, buf_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000810{
811 sv_upgrade(rv, SVt_RV);
812 if (ptr->b_perl_private == NULL)
813 {
814 ptr->b_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100815 sv_setiv(ptr->b_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000816 }
817 else
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200818 SvREFCNT_inc_void_NN(ptr->b_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000819 SvRV(rv) = ptr->b_perl_private;
820 SvROK_on(rv);
821 return sv_bless(rv, gv_stashpv("VIBUF", TRUE));
822}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823
824/*
825 * perl_win_free
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200826 * Remove all references to the window to be destroyed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827 */
828 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100829perl_win_free(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830{
Bram Moolenaare344bea2005-09-01 20:46:49 +0000831 if (wp->w_perl_private)
832 sv_setiv((SV *)wp->w_perl_private, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 return;
834}
835
836 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100837perl_buf_free(buf_T *bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838{
Bram Moolenaare344bea2005-09-01 20:46:49 +0000839 if (bp->b_perl_private)
840 sv_setiv((SV *)bp->b_perl_private, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 return;
842}
843
844#ifndef PROTO
845# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
846I32 cur_val(pTHX_ IV iv, SV *sv);
847# else
848I32 cur_val(IV iv, SV *sv);
849#endif
850
851/*
852 * Handler for the magic variables $main::curwin and $main::curbuf.
853 * The handler is put into the magic vtbl for these variables.
854 * (This is effectively a C-level equivalent of a tied variable).
855 * There is no "set" function as the variables are read-only.
856 */
857# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
858I32 cur_val(pTHX_ IV iv, SV *sv)
859# else
860I32 cur_val(IV iv, SV *sv)
861# endif
862{
863 SV *rv;
864 if (iv == 0)
865 rv = newWINrv(newSV(0), curwin);
866 else
867 rv = newBUFrv(newSV(0), curbuf);
868 sv_setsv(sv, rv);
Bram Moolenaar95509e12016-04-15 21:16:11 +0200869 SvREFCNT_dec(SvRV(rv));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 return 0;
871}
872#endif /* !PROTO */
873
874struct ufuncs cw_funcs = { cur_val, 0, 0 };
875struct ufuncs cb_funcs = { cur_val, 0, 1 };
876
877/*
878 * VIM_init(): Vim-specific initialisation.
879 * Make the magical main::curwin and main::curbuf variables
880 */
881 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100882VIM_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883{
884 static char cw[] = "main::curwin";
885 static char cb[] = "main::curbuf";
886 SV *sv;
887
888 sv = perl_get_sv(cw, TRUE);
889 sv_magic(sv, NULL, 'U', (char *)&cw_funcs, sizeof(cw_funcs));
890 SvREADONLY_on(sv);
891
892 sv = perl_get_sv(cb, TRUE);
893 sv_magic(sv, NULL, 'U', (char *)&cb_funcs, sizeof(cb_funcs));
894 SvREADONLY_on(sv);
895
896 /*
897 * Setup the Safe compartment.
898 * It shouldn't be a fatal error if the Safe module is missing.
899 * XXX: Only shares the 'Msg' routine (which has to be called
900 * like 'Msg(...)').
901 */
902 (void)perl_eval_pv( "if ( eval( 'require Safe' ) ) { $VIM::safe = Safe->new(); $VIM::safe->share_from( 'VIM', ['Msg'] ); }", G_DISCARD | G_VOID );
903
904}
905
906#ifdef DYNAMIC_PERL
907static char *e_noperl = N_("Sorry, this command is disabled: the Perl library could not be loaded.");
908#endif
909
910/*
911 * ":perl"
912 */
913 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100914ex_perl(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915{
916 char *err;
917 char *script;
918 STRLEN length;
919 SV *sv;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200920#ifdef HAVE_SANDBOX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 SV *safe;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200922#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923
924 script = (char *)script_get(eap, eap->arg);
925 if (eap->skip)
926 {
927 vim_free(script);
928 return;
929 }
930
931 if (perl_interp == NULL)
932 {
933#ifdef DYNAMIC_PERL
934 if (!perl_enabled(TRUE))
935 {
936 EMSG(_(e_noperl));
937 vim_free(script);
938 return;
939 }
940#endif
941 perl_init();
942 }
943
944 {
945 dSP;
946 ENTER;
947 SAVETMPS;
948
949 if (script == NULL)
950 sv = newSVpv((char *)eap->arg, 0);
951 else
952 {
953 sv = newSVpv(script, 0);
954 vim_free(script);
955 }
956
957#ifdef HAVE_SANDBOX
958 if (sandbox)
959 {
Bram Moolenaara1711622011-07-27 14:15:46 +0200960 safe = perl_get_sv("VIM::safe", FALSE);
Bram Moolenaar3f947ea2009-07-14 14:04:54 +0000961# ifndef MAKE_TEST /* avoid a warning for unreachable code */
Bram Moolenaar954e8c52009-11-11 13:45:33 +0000962 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 EMSG(_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
964 else
Bram Moolenaar3f947ea2009-07-14 14:04:54 +0000965# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 {
967 PUSHMARK(SP);
968 XPUSHs(safe);
969 XPUSHs(sv);
970 PUTBACK;
971 perl_call_method("reval", G_DISCARD);
972 }
973 }
974 else
975#endif
976 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
977
978 SvREFCNT_dec(sv);
979
Bram Moolenaar7b61bf12016-06-26 17:16:51 +0200980 err = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981
982 FREETMPS;
983 LEAVE;
984
985 if (!length)
986 return;
987
988 msg_split((char_u *)err, highlight_attr[HLF_E]);
989 return;
990 }
991}
992
993 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100994replace_line(linenr_T *line, linenr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995{
996 char *str;
997
998 if (SvOK(GvSV(PL_defgv)))
999 {
1000 str = SvPV(GvSV(PL_defgv), PL_na);
1001 ml_replace(*line, (char_u *)str, 1);
1002 changed_bytes(*line, 0);
1003 }
1004 else
1005 {
1006 ml_delete(*line, FALSE);
1007 deleted_lines_mark(*line, 1L);
1008 --(*end);
1009 --(*line);
1010 }
1011 return OK;
1012}
1013
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001014static struct ref_map_S {
1015 void *vim_ref;
1016 SV *perl_ref;
1017 struct ref_map_S *next;
1018} *ref_map = NULL;
1019
1020 static void
1021ref_map_free(void)
1022{
1023 struct ref_map_S *tofree;
1024 struct ref_map_S *refs = ref_map;
1025
1026 while (refs) {
1027 tofree = refs;
1028 refs = refs->next;
1029 vim_free(tofree);
1030 }
1031 ref_map = NULL;
1032}
1033
1034 static struct ref_map_S *
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001035ref_map_find_SV(SV *const sv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001036{
1037 struct ref_map_S *refs = ref_map;
1038 int count = 350;
1039
1040 while (refs) {
1041 if (refs->perl_ref == sv)
1042 break;
1043 refs = refs->next;
1044 count--;
1045 }
1046
1047 if (!refs && count > 0) {
1048 refs = (struct ref_map_S *)alloc(sizeof(struct ref_map_S));
1049 if (!refs)
1050 return NULL;
1051 refs->perl_ref = sv;
1052 refs->vim_ref = NULL;
1053 refs->next = ref_map;
1054 ref_map = refs;
1055 }
1056
1057 return refs;
1058}
1059
1060 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001061perl_to_vim(SV *sv, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001062{
1063 if (SvROK(sv))
1064 sv = SvRV(sv);
1065
1066 switch (SvTYPE(sv)) {
1067 case SVt_NULL:
1068 break;
1069 case SVt_NV: /* float */
1070#ifdef FEAT_FLOAT
1071 rettv->v_type = VAR_FLOAT;
1072 rettv->vval.v_float = SvNV(sv);
1073 break;
1074#endif
1075 case SVt_IV: /* integer */
1076 if (!SvROK(sv)) { /* references should be string */
1077 rettv->vval.v_number = SvIV(sv);
1078 break;
1079 }
1080 case SVt_PV: /* string */
1081 {
1082 size_t len = 0;
1083 char * str_from = SvPV(sv, len);
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001084 char_u *str_to = (char_u*)alloc(
1085 (unsigned)(sizeof(char_u) * (len + 1)));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001086
1087 if (str_to) {
1088 str_to[len] = '\0';
1089
1090 while (len--) {
1091 if (str_from[len] == '\0')
1092 str_to[len] = '\n';
1093 else
1094 str_to[len] = str_from[len];
1095 }
1096 }
1097
1098 rettv->v_type = VAR_STRING;
1099 rettv->vval.v_string = str_to;
1100 break;
1101 }
1102 case SVt_PVAV: /* list */
1103 {
1104 SSize_t size;
1105 listitem_T * item;
1106 SV ** item2;
1107 list_T * list;
1108 struct ref_map_S * refs;
1109
1110 if ((refs = ref_map_find_SV(sv)) == NULL)
1111 return FAIL;
1112
1113 if (refs->vim_ref)
1114 list = (list_T *) refs->vim_ref;
1115 else
1116 {
1117 if ((list = list_alloc()) == NULL)
1118 return FAIL;
1119 refs->vim_ref = list;
1120
1121 for (size = av_len((AV*)sv); size >= 0; size--)
1122 {
1123 if ((item = listitem_alloc()) == NULL)
1124 break;
1125
1126 item->li_tv.v_type = VAR_NUMBER;
1127 item->li_tv.v_lock = 0;
1128 item->li_tv.vval.v_number = 0;
1129 list_insert(list, item, list->lv_first);
1130
1131 item2 = av_fetch((AV *)sv, size, 0);
1132
1133 if (item2 == NULL || *item2 == NULL ||
Bram Moolenaard99df422016-01-29 23:20:40 +01001134 perl_to_vim(*item2, &item->li_tv) == FAIL)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001135 break;
1136 }
1137 }
1138
1139 list->lv_refcount++;
1140 rettv->v_type = VAR_LIST;
1141 rettv->vval.v_list = list;
1142 break;
1143 }
1144 case SVt_PVHV: /* dictionary */
1145 {
1146 HE * entry;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001147 I32 key_len;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001148 char * key;
1149 dictitem_T * item;
1150 SV * item2;
1151 dict_T * dict;
1152 struct ref_map_S * refs;
1153
1154 if ((refs = ref_map_find_SV(sv)) == NULL)
1155 return FAIL;
1156
1157 if (refs->vim_ref)
1158 dict = (dict_T *) refs->vim_ref;
1159 else
1160 {
1161
1162 if ((dict = dict_alloc()) == NULL)
1163 return FAIL;
1164 refs->vim_ref = dict;
1165
1166 hv_iterinit((HV *)sv);
1167
1168 for (entry = hv_iternext((HV *)sv); entry; entry = hv_iternext((HV *)sv))
1169 {
1170 key_len = 0;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001171 key = hv_iterkey(entry, &key_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001172
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001173 if (!key || !key_len || strlen(key) < (size_t)key_len) {
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001174 EMSG2("Malformed key Dictionary '%s'", key && *key ? key : "(empty)");
1175 break;
1176 }
1177
1178 if ((item = dictitem_alloc((char_u *)key)) == NULL)
1179 break;
1180
1181 item->di_tv.v_type = VAR_NUMBER;
1182 item->di_tv.v_lock = 0;
1183 item->di_tv.vval.v_number = 0;
1184
1185 if (dict_add(dict, item) == FAIL) {
1186 dictitem_free(item);
1187 break;
1188 }
1189 item2 = hv_iterval((HV *)sv, entry);
1190 if (item2 == NULL || perl_to_vim(item2, &item->di_tv) == FAIL)
1191 break;
1192 }
1193 }
1194
1195 dict->dv_refcount++;
1196 rettv->v_type = VAR_DICT;
1197 rettv->vval.v_dict = dict;
1198 break;
1199 }
1200 default: /* not convertible */
1201 {
1202 char *val = SvPV_nolen(sv);
1203 rettv->v_type = VAR_STRING;
1204 rettv->vval.v_string = val ? vim_strsave((char_u *)val) : NULL;
1205 break;
1206 }
1207 }
1208 return OK;
1209}
1210
1211/*
1212 * "perleval()"
1213 */
1214 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001215do_perleval(char_u *str, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001216{
1217 char *err = NULL;
1218 STRLEN err_len = 0;
1219 SV *sv = NULL;
1220#ifdef HAVE_SANDBOX
1221 SV *safe;
1222#endif
1223
1224 if (perl_interp == NULL)
1225 {
1226#ifdef DYNAMIC_PERL
1227 if (!perl_enabled(TRUE))
1228 {
1229 EMSG(_(e_noperl));
1230 return;
1231 }
1232#endif
1233 perl_init();
1234 }
1235
1236 {
1237 dSP;
1238 ENTER;
1239 SAVETMPS;
1240
1241#ifdef HAVE_SANDBOX
1242 if (sandbox)
1243 {
1244 safe = get_sv("VIM::safe", FALSE);
1245# ifndef MAKE_TEST /* avoid a warning for unreachable code */
1246 if (safe == NULL || !SvTRUE(safe))
1247 EMSG(_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
1248 else
1249# endif
1250 {
1251 sv = newSVpv((char *)str, 0);
1252 PUSHMARK(SP);
1253 XPUSHs(safe);
1254 XPUSHs(sv);
1255 PUTBACK;
1256 call_method("reval", G_SCALAR);
1257 SPAGAIN;
1258 SvREFCNT_dec(sv);
1259 sv = POPs;
1260 }
1261 }
1262 else
1263#endif /* HAVE_SANDBOX */
1264 sv = eval_pv((char *)str, 0);
1265
1266 if (sv) {
1267 perl_to_vim(sv, rettv);
1268 ref_map_free();
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001269 err = SvPV(GvSV(PL_errgv), err_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001270 }
1271 PUTBACK;
1272 FREETMPS;
1273 LEAVE;
1274 }
1275 if (err_len)
1276 msg_split((char_u *)err, highlight_attr[HLF_E]);
1277}
1278
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279/*
1280 * ":perldo".
1281 */
1282 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001283ex_perldo(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284{
1285 STRLEN length;
1286 SV *sv;
1287 char *str;
1288 linenr_T i;
1289
1290 if (bufempty())
1291 return;
1292
1293 if (perl_interp == NULL)
1294 {
1295#ifdef DYNAMIC_PERL
1296 if (!perl_enabled(TRUE))
1297 {
1298 EMSG(_(e_noperl));
1299 return;
1300 }
1301#endif
1302 perl_init();
1303 }
1304 {
1305 dSP;
1306 length = strlen((char *)eap->arg);
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001307 sv = newSV(length + sizeof("sub VIM::perldo {") - 1 + 1);
1308 sv_setpvn(sv, "sub VIM::perldo {", sizeof("sub VIM::perldo {") - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 sv_catpvn(sv, (char *)eap->arg, length);
1310 sv_catpvn(sv, "}", 1);
1311 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1312 SvREFCNT_dec(sv);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001313 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 if (length)
1315 goto err;
1316
1317 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
1318 return;
1319
1320 ENTER;
1321 SAVETMPS;
1322 for (i = eap->line1; i <= eap->line2; i++)
1323 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001324 sv_setpv(GvSV(PL_defgv), (char *)ml_get(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 PUSHMARK(sp);
1326 perl_call_pv("VIM::perldo", G_SCALAR | G_EVAL);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001327 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 if (length)
1329 break;
1330 SPAGAIN;
1331 if (SvTRUEx(POPs))
1332 {
1333 if (replace_line(&i, &eap->line2) != OK)
1334 {
1335 PUTBACK;
1336 break;
1337 }
1338 }
1339 PUTBACK;
1340 }
1341 FREETMPS;
1342 LEAVE;
1343 check_cursor();
1344 update_screen(NOT_VALID);
1345 if (!length)
1346 return;
1347
1348err:
1349 msg_split((char_u *)str, highlight_attr[HLF_E]);
1350 return;
1351 }
1352}
1353
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001354#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
1355typedef struct {
1356 struct _PerlIO base;
1357 int attr;
1358} PerlIOVim;
1359
1360 static IV
1361PerlIOVim_pushed(pTHX_ PerlIO *f, const char *mode,
1362 SV *arg, PerlIO_funcs *tab)
1363{
1364 PerlIOVim *s = PerlIOSelf(f, PerlIOVim);
1365 s->attr = 0;
1366 if (arg && SvPOK(arg)) {
1367 int id = syn_name2id((char_u *)SvPV_nolen(arg));
1368 if (id != 0)
1369 s->attr = syn_id2attr(id);
1370 }
1371 return PerlIOBase_pushed(aTHX_ f, mode, (SV *)NULL, tab);
1372}
1373
1374 static SSize_t
1375PerlIOVim_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
1376{
1377 char_u *str;
1378 PerlIOVim * s = PerlIOSelf(f, PerlIOVim);
1379
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001380 str = vim_strnsave((char_u *)vbuf, (int)count);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001381 if (str == NULL)
1382 return 0;
1383 msg_split((char_u *)str, s->attr);
1384 vim_free(str);
1385
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001386 return (SSize_t)count;
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001387}
1388
1389static PERLIO_FUNCS_DECL(PerlIO_Vim) = {
1390 sizeof(PerlIO_funcs),
1391 "Vim",
1392 sizeof(PerlIOVim),
1393 PERLIO_K_DUMMY, /* flags */
1394 PerlIOVim_pushed,
1395 NULL, /* popped */
1396 NULL, /* open */
1397 NULL, /* binmode */
1398 NULL, /* arg */
1399 NULL, /* fileno */
1400 NULL, /* dup */
1401 NULL, /* read */
1402 NULL, /* unread */
1403 PerlIOVim_write,
1404 NULL, /* seek */
1405 NULL, /* tell */
1406 NULL, /* close */
1407 NULL, /* flush */
1408 NULL, /* fill */
1409 NULL, /* eof */
1410 NULL, /* error */
1411 NULL, /* clearerr */
1412 NULL, /* setlinebuf */
1413 NULL, /* get_base */
1414 NULL, /* get_bufsiz */
1415 NULL, /* get_ptr */
1416 NULL, /* get_cnt */
1417 NULL /* set_ptrcnt */
1418};
1419
1420/* Use Vim routine for print operator */
1421 static void
1422vim_IOLayer_init(void)
1423{
1424 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_Vim));
1425 (void)eval_pv( "binmode(STDOUT, ':Vim')"
1426 " && binmode(STDERR, ':Vim(ErrorMsg)');", 0);
1427}
1428#endif /* PERLIO_LAYERS && !USE_SFIO */
1429
Bram Moolenaar01dd60c2008-07-24 14:24:48 +00001430#ifndef FEAT_WINDOWS
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001431 int
1432win_valid(win_T *w)
1433{
1434 return TRUE;
1435}
1436 int
1437win_count(void)
1438{
1439 return 1;
1440}
1441 win_T *
1442win_find_nr(int n)
1443{
1444 return curwin;
1445}
Bram Moolenaar01dd60c2008-07-24 14:24:48 +00001446#endif
1447
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448XS(boot_VIM);
1449
1450 static void
1451xs_init(pTHX)
1452{
1453 char *file = __FILE__;
1454
1455 /* DynaLoader is a special case */
1456 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
1457 newXS("VIM::bootstrap", boot_VIM, file);
1458}
1459
1460typedef win_T * VIWIN;
1461typedef buf_T * VIBUF;
1462
1463MODULE = VIM PACKAGE = VIM
1464
1465void
1466Msg(text, hl=NULL)
1467 char *text;
1468 char *hl;
1469
1470 PREINIT:
1471 int attr;
1472 int id;
1473
1474 PPCODE:
1475 if (text != NULL)
1476 {
1477 attr = 0;
1478 if (hl != NULL)
1479 {
1480 id = syn_name2id((char_u *)hl);
1481 if (id != 0)
1482 attr = syn_id2attr(id);
1483 }
1484 msg_split((char_u *)text, attr);
1485 }
1486
1487void
1488SetOption(line)
1489 char *line;
1490
1491 PPCODE:
1492 if (line != NULL)
1493 do_set((char_u *)line, 0);
1494 update_screen(NOT_VALID);
1495
1496void
1497DoCommand(line)
1498 char *line;
1499
1500 PPCODE:
1501 if (line != NULL)
1502 do_cmdline_cmd((char_u *)line);
1503
1504void
1505Eval(str)
1506 char *str;
1507
1508 PREINIT:
1509 char_u *value;
1510 PPCODE:
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001511 value = eval_to_string((char_u *)str, (char_u **)0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512 if (value == NULL)
1513 {
1514 XPUSHs(sv_2mortal(newSViv(0)));
1515 XPUSHs(sv_2mortal(newSVpv("", 0)));
1516 }
1517 else
1518 {
1519 XPUSHs(sv_2mortal(newSViv(1)));
1520 XPUSHs(sv_2mortal(newSVpv((char *)value, 0)));
1521 vim_free(value);
1522 }
1523
1524void
1525Buffers(...)
1526
1527 PREINIT:
1528 buf_T *vimbuf;
1529 int i, b;
1530
1531 PPCODE:
1532 if (items == 0)
1533 {
1534 if (GIMME == G_SCALAR)
1535 {
1536 i = 0;
1537 for (vimbuf = firstbuf; vimbuf; vimbuf = vimbuf->b_next)
1538 ++i;
1539
1540 XPUSHs(sv_2mortal(newSViv(i)));
1541 }
1542 else
1543 {
1544 for (vimbuf = firstbuf; vimbuf; vimbuf = vimbuf->b_next)
1545 XPUSHs(newBUFrv(newSV(0), vimbuf));
1546 }
1547 }
1548 else
1549 {
1550 for (i = 0; i < items; i++)
1551 {
1552 SV *sv = ST(i);
1553 if (SvIOK(sv))
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001554 b = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 else
1556 {
1557 char_u *pat;
1558 STRLEN len;
1559
1560 pat = (char_u *)SvPV(sv, len);
1561 ++emsg_off;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001562 b = buflist_findpat(pat, pat+len, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 --emsg_off;
1564 }
1565
1566 if (b >= 0)
1567 {
1568 vimbuf = buflist_findnr(b);
1569 if (vimbuf)
1570 XPUSHs(newBUFrv(newSV(0), vimbuf));
1571 }
1572 }
1573 }
1574
1575void
1576Windows(...)
1577
1578 PREINIT:
1579 win_T *vimwin;
1580 int i, w;
1581
1582 PPCODE:
1583 if (items == 0)
1584 {
1585 if (GIMME == G_SCALAR)
1586 XPUSHs(sv_2mortal(newSViv(win_count())));
1587 else
1588 {
1589 for (vimwin = firstwin; vimwin != NULL; vimwin = W_NEXT(vimwin))
1590 XPUSHs(newWINrv(newSV(0), vimwin));
1591 }
1592 }
1593 else
1594 {
1595 for (i = 0; i < items; i++)
1596 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001597 w = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 vimwin = win_find_nr(w);
1599 if (vimwin)
1600 XPUSHs(newWINrv(newSV(0), vimwin));
1601 }
1602 }
1603
1604MODULE = VIM PACKAGE = VIWIN
1605
1606void
1607DESTROY(win)
1608 VIWIN win
1609
1610 CODE:
1611 if (win_valid(win))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001612 win->w_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613
1614SV *
1615Buffer(win)
1616 VIWIN win
1617
1618 CODE:
1619 if (!win_valid(win))
1620 win = curwin;
1621 RETVAL = newBUFrv(newSV(0), win->w_buffer);
1622 OUTPUT:
1623 RETVAL
1624
1625void
1626SetHeight(win, height)
1627 VIWIN win
1628 int height;
1629
1630 PREINIT:
1631 win_T *savewin;
1632
1633 PPCODE:
1634 if (!win_valid(win))
1635 win = curwin;
1636 savewin = curwin;
1637 curwin = win;
1638 win_setheight(height);
1639 curwin = savewin;
1640
1641void
Bram Moolenaar864733a2016-04-02 14:18:01 +02001642Cursor(win, ...)
1643 VIWIN win
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644
1645 PPCODE:
Bram Moolenaara1711622011-07-27 14:15:46 +02001646 if (items == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 {
1648 EXTEND(sp, 2);
1649 if (!win_valid(win))
1650 win = curwin;
1651 PUSHs(sv_2mortal(newSViv(win->w_cursor.lnum)));
1652 PUSHs(sv_2mortal(newSViv(win->w_cursor.col)));
1653 }
Bram Moolenaara1711622011-07-27 14:15:46 +02001654 else if (items == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 {
1656 int lnum, col;
1657
1658 if (!win_valid(win))
1659 win = curwin;
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001660 lnum = (int) SvIV(ST(1));
1661 col = (int) SvIV(ST(2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 win->w_cursor.lnum = lnum;
1663 win->w_cursor.col = col;
1664 check_cursor(); /* put cursor on an existing line */
1665 update_screen(NOT_VALID);
1666 }
1667
1668MODULE = VIM PACKAGE = VIBUF
1669
1670void
1671DESTROY(vimbuf)
1672 VIBUF vimbuf;
1673
1674 CODE:
1675 if (buf_valid(vimbuf))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001676 vimbuf->b_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677
1678void
1679Name(vimbuf)
1680 VIBUF vimbuf;
1681
1682 PPCODE:
1683 if (!buf_valid(vimbuf))
1684 vimbuf = curbuf;
1685 /* No file name returns an empty string */
1686 if (vimbuf->b_fname == NULL)
1687 XPUSHs(sv_2mortal(newSVpv("", 0)));
1688 else
1689 XPUSHs(sv_2mortal(newSVpv((char *)vimbuf->b_fname, 0)));
1690
1691void
1692Number(vimbuf)
1693 VIBUF vimbuf;
1694
1695 PPCODE:
1696 if (!buf_valid(vimbuf))
1697 vimbuf = curbuf;
1698 XPUSHs(sv_2mortal(newSViv(vimbuf->b_fnum)));
1699
1700void
1701Count(vimbuf)
1702 VIBUF vimbuf;
1703
1704 PPCODE:
1705 if (!buf_valid(vimbuf))
1706 vimbuf = curbuf;
1707 XPUSHs(sv_2mortal(newSViv(vimbuf->b_ml.ml_line_count)));
1708
1709void
1710Get(vimbuf, ...)
1711 VIBUF vimbuf;
1712
1713 PREINIT:
1714 char_u *line;
1715 int i;
1716 long lnum;
1717 PPCODE:
1718 if (buf_valid(vimbuf))
1719 {
1720 for (i = 1; i < items; i++)
1721 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001722 lnum = (long) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1724 {
1725 line = ml_get_buf(vimbuf, lnum, FALSE);
1726 XPUSHs(sv_2mortal(newSVpv((char *)line, 0)));
1727 }
1728 }
1729 }
1730
1731void
1732Set(vimbuf, ...)
1733 VIBUF vimbuf;
1734
1735 PREINIT:
1736 int i;
1737 long lnum;
1738 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 PPCODE:
1740 if (buf_valid(vimbuf))
1741 {
1742 if (items < 3)
1743 croak("Usage: VIBUF::Set(vimbuf, lnum, @lines)");
1744
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001745 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 for(i = 2; i < items; i++, lnum++)
1747 {
1748 line = SvPV(ST(i),PL_na);
1749 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1750 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001751 aco_save_T aco;
1752
1753 /* set curwin/curbuf for "vimbuf" and save some things */
1754 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001755
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 if (u_savesub(lnum) == OK)
1757 {
1758 ml_replace(lnum, (char_u *)line, TRUE);
1759 changed_bytes(lnum, 0);
1760 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001761
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001762 /* restore curwin/curbuf and a few other things */
1763 aucmd_restbuf(&aco);
1764 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 }
1766 }
1767 }
1768
1769void
1770Delete(vimbuf, ...)
1771 VIBUF vimbuf;
1772
1773 PREINIT:
1774 long i, lnum = 0, count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 PPCODE:
1776 if (buf_valid(vimbuf))
1777 {
1778 if (items == 2)
1779 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001780 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781 count = 1;
1782 }
1783 else if (items == 3)
1784 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001785 lnum = (long) SvIV(ST(1));
1786 count = (long) 1 + SvIV(ST(2)) - lnum;
Bram Moolenaara1711622011-07-27 14:15:46 +02001787 if (count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 count = 1;
Bram Moolenaara1711622011-07-27 14:15:46 +02001789 if (count < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 {
1791 lnum -= count;
1792 count = -count;
1793 }
1794 }
1795 if (items >= 2)
1796 {
1797 for (i = 0; i < count; i++)
1798 {
1799 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1800 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001801 aco_save_T aco;
1802
1803 /* set curwin/curbuf for "vimbuf" and save some things */
1804 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001805
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806 if (u_savedel(lnum, 1) == OK)
1807 {
1808 ml_delete(lnum, 0);
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00001809 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 deleted_lines_mark(lnum, 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001812
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001813 /* restore curwin/curbuf and a few other things */
1814 aucmd_restbuf(&aco);
1815 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001816
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 update_curbuf(VALID);
1818 }
1819 }
1820 }
1821 }
1822
1823void
1824Append(vimbuf, ...)
1825 VIBUF vimbuf;
1826
1827 PREINIT:
1828 int i;
1829 long lnum;
1830 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 PPCODE:
1832 if (buf_valid(vimbuf))
1833 {
1834 if (items < 3)
1835 croak("Usage: VIBUF::Append(vimbuf, lnum, @lines)");
1836
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001837 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838 for (i = 2; i < items; i++, lnum++)
1839 {
1840 line = SvPV(ST(i),PL_na);
1841 if (lnum >= 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1842 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001843 aco_save_T aco;
1844
1845 /* set curwin/curbuf for "vimbuf" and save some things */
1846 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001847
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 if (u_inssub(lnum + 1) == OK)
1849 {
1850 ml_append(lnum, (char_u *)line, (colnr_T)0, FALSE);
1851 appended_lines_mark(lnum, 1L);
1852 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001853
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001854 /* restore curwin/curbuf and a few other things */
1855 aucmd_restbuf(&aco);
1856 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001857
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 update_curbuf(VALID);
1859 }
1860 }
1861 }
1862
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001863#ifdef __GNUC__
1864# pragma GCC diagnostic pop
1865#endif