blob: 3af309a65df5f3d8640264b26840fd1498fbc56a [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 */
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
Bram Moolenaare73b38f2020-01-06 21:22:09 +010050
51// Work around for using MSVC and Strawberry Perl 5.30.
52# define __builtin_expect(expr, val) (expr)
Bram Moolenaar207fd752013-12-14 11:50:35 +010053#endif
54
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +010055#ifdef __GNUC__
56# pragma GCC diagnostic push
57# pragma GCC diagnostic ignored "-Wunused-variable"
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +010058#endif
59
Bram Moolenaaraee1f4a2013-08-02 16:10:32 +020060#include <EXTERN.h>
61#include <perl.h>
62#include <XSUB.h>
Bram Moolenaar6244a0f2016-04-14 14:09:25 +020063#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
64# include <perliol.h>
65#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000066
Bram Moolenaarcf190c62016-06-02 11:54:06 +020067/* Workaround for perl < 5.8.7 */
68#ifndef PERLIO_FUNCS_DECL
69# ifdef PERLIO_FUNCS_CONST
70# define PERLIO_FUNCS_DECL(funcs) const PerlIO_funcs funcs
71# define PERLIO_FUNCS_CAST(funcs) (PerlIO_funcs*)(funcs)
72# else
73# define PERLIO_FUNCS_DECL(funcs) PerlIO_funcs funcs
74# define PERLIO_FUNCS_CAST(funcs) (funcs)
75# endif
76#endif
Bram Moolenaarc4bc0e62016-06-02 13:54:49 +020077#ifndef SvREFCNT_inc_void_NN
78# define SvREFCNT_inc_void_NN SvREFCNT_inc
79#endif
Bram Moolenaarcf190c62016-06-02 11:54:06 +020080
Bram Moolenaar071d4272004-06-13 20:20:40 +000081/*
82 * Work around clashes between Perl and Vim namespace. proto.h doesn't
83 * include if_perl.pro and perlsfio.pro when IN_PERL_FILE is defined, because
84 * we need the CV typedef. proto.h can't be moved to after including
85 * if_perl.h, because we get all sorts of name clashes then.
86 */
87#ifndef PROTO
Bram Moolenaareeb50ab2016-06-26 17:19:46 +020088# ifndef __MINGW32__
89# include "proto/if_perl.pro"
90# include "proto/if_perlsfio.pro"
91# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000092#endif
93
Bram Moolenaar1f402802018-09-21 14:01:27 +020094// Perl compatibility stuff. This should ensure compatibility with older
95// versions of Perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +000096#ifndef PERL_VERSION
Bram Moolenaareeb50ab2016-06-26 17:19:46 +020097# include <patchlevel.h>
98# define PERL_REVISION 5
99# define PERL_VERSION PATCHLEVEL
100# define PERL_SUBVERSION SUBVERSION
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101#endif
102
Bram Moolenaar1f402802018-09-21 14:01:27 +0200103
104// Work around for ActivePerl 5.20.3+: Avoid generating (g)vim.lib.
105#if defined(ACTIVEPERL_VERSION) && (ACTIVEPERL_VERSION >= 2003) \
Bram Moolenaar4f974752019-02-17 17:44:42 +0100106 && defined(MSWIN) && defined(USE_DYNAMIC_LOADING)
Bram Moolenaar1f402802018-09-21 14:01:27 +0200107# undef XS_EXTERNAL
108# define XS_EXTERNAL(name) XSPROTO(name)
109#endif
110
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000111/*
112 * Quoting Jan Dubois of Active State:
113 * ActivePerl build 822 still identifies itself as 5.8.8 but already
114 * contains many of the changes from the upcoming Perl 5.8.9 release.
115 *
116 * The changes include addition of two symbols (Perl_sv_2iv_flags,
117 * Perl_newXS_flags) not present in earlier releases.
118 *
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000119 * Jan Dubois suggested the following guarding scheme.
120 *
121 * Active State defined ACTIVEPERL_VERSION as a string in versions before
122 * 5.8.8; and so the comparison to 822 below needs to be guarded.
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000123 */
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000124#if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 8)
125# if (ACTIVEPERL_VERSION >= 822) || (PERL_SUBVERSION >= 9)
126# define PERL589_OR_LATER
127# endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000128#endif
129#if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
130# define PERL589_OR_LATER
131#endif
132
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100133#if (PERL_REVISION == 5) && ((PERL_VERSION > 10) || \
134 (PERL_VERSION == 10) && (PERL_SUBVERSION >= 1))
135# define PERL5101_OR_LATER
136#endif
137
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138#ifndef pTHX
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200139# define pTHX void
140# define pTHX_
Bram Moolenaar071d4272004-06-13 20:20:40 +0000141#endif
142
143#ifndef EXTERN_C
144# define EXTERN_C
145#endif
146
147/* Compatibility hacks over */
148
149static PerlInterpreter *perl_interp = NULL;
Bram Moolenaard99df422016-01-29 23:20:40 +0100150static void xs_init(pTHX);
151static void VIM_init(void);
152EXTERN_C void boot_DynaLoader(pTHX_ CV*);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153
154/*
Bram Moolenaare06c1882010-07-21 22:05:20 +0200155 * For dynamic linked perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156 */
157#if defined(DYNAMIC_PERL) || defined(PROTO)
Bram Moolenaare06c1882010-07-21 22:05:20 +0200158
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200159# ifndef DYNAMIC_PERL /* just generating prototypes */
Bram Moolenaar4f974752019-02-17 17:44:42 +0100160# ifdef MSWIN
Bram Moolenaare06c1882010-07-21 22:05:20 +0200161typedef int HANDLE;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200162# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200163typedef int XSINIT_t;
164typedef int XSUBADDR_t;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200165# endif
166# ifndef USE_ITHREADS
Bram Moolenaare06c1882010-07-21 22:05:20 +0200167typedef int perl_key;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200168# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200169
Bram Moolenaar4f974752019-02-17 17:44:42 +0100170# ifndef MSWIN
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200171# include <dlfcn.h>
172# define HANDLE void*
173# define PERL_PROC void*
174# define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
175# define symbol_from_dll dlsym
176# define close_dll dlclose
177# else
178# define PERL_PROC FARPROC
179# define load_dll vimLoadLib
180# define symbol_from_dll GetProcAddress
181# define close_dll FreeLibrary
182# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183/*
184 * Wrapper defines
185 */
186# define perl_alloc dll_perl_alloc
187# define perl_construct dll_perl_construct
188# define perl_parse dll_perl_parse
189# define perl_run dll_perl_run
190# define perl_destruct dll_perl_destruct
191# define perl_free dll_perl_free
192# define Perl_get_context dll_Perl_get_context
193# define Perl_croak dll_Perl_croak
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100194# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100195# define Perl_croak_xs_usage dll_Perl_croak_xs_usage
196# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197# ifndef PROTO
198# define Perl_croak_nocontext dll_Perl_croak_nocontext
199# define Perl_call_argv dll_Perl_call_argv
200# define Perl_call_pv dll_Perl_call_pv
201# define Perl_eval_sv dll_Perl_eval_sv
202# define Perl_get_sv dll_Perl_get_sv
203# define Perl_eval_pv dll_Perl_eval_pv
204# define Perl_call_method dll_Perl_call_method
205# endif
206# define Perl_dowantarray dll_Perl_dowantarray
207# define Perl_free_tmps dll_Perl_free_tmps
208# define Perl_gv_stashpv dll_Perl_gv_stashpv
209# define Perl_markstack_grow dll_Perl_markstack_grow
210# define Perl_mg_find dll_Perl_mg_find
Bram Moolenaar578333b2018-07-22 07:31:09 +0200211# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
212# define Perl_mg_get dll_Perl_mg_get
213# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214# define Perl_newXS dll_Perl_newXS
215# define Perl_newSV dll_Perl_newSV
216# define Perl_newSViv dll_Perl_newSViv
217# define Perl_newSVpv dll_Perl_newSVpv
218# define Perl_pop_scope dll_Perl_pop_scope
219# define Perl_push_scope dll_Perl_push_scope
220# define Perl_save_int dll_Perl_save_int
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200221# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
222# define Perl_save_strlen dll_Perl_save_strlen
223# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224# define Perl_stack_grow dll_Perl_stack_grow
225# define Perl_set_context dll_Perl_set_context
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200226# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200227# define Perl_sv_2bool_flags dll_Perl_sv_2bool_flags
228# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
229# define Perl_xs_apiversion_bootcheck dll_Perl_xs_apiversion_bootcheck
230# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200231# else
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200232# define Perl_sv_2bool dll_Perl_sv_2bool
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200233# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234# define Perl_sv_2iv dll_Perl_sv_2iv
235# define Perl_sv_2mortal dll_Perl_sv_2mortal
236# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
237# define Perl_sv_2pv_flags dll_Perl_sv_2pv_flags
238# define Perl_sv_2pv_nolen dll_Perl_sv_2pv_nolen
239# else
240# define Perl_sv_2pv dll_Perl_sv_2pv
241# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100242# define Perl_sv_2pvbyte dll_Perl_sv_2pvbyte
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243# define Perl_sv_bless dll_Perl_sv_bless
244# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
245# define Perl_sv_catpvn_flags dll_Perl_sv_catpvn_flags
246# else
247# define Perl_sv_catpvn dll_Perl_sv_catpvn
248# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200249# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000250# define Perl_sv_2iv_flags dll_Perl_sv_2iv_flags
251# define Perl_newXS_flags dll_Perl_newXS_flags
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200252# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253# define Perl_sv_free dll_Perl_sv_free
Bram Moolenaarccf22172008-09-01 15:56:45 +0000254# if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
255# define Perl_sv_free2 dll_Perl_sv_free2
256# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257# define Perl_sv_isa dll_Perl_sv_isa
258# define Perl_sv_magic dll_Perl_sv_magic
259# define Perl_sv_setiv dll_Perl_sv_setiv
260# define Perl_sv_setpv dll_Perl_sv_setpv
261# define Perl_sv_setpvn dll_Perl_sv_setpvn
262# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
263# define Perl_sv_setsv_flags dll_Perl_sv_setsv_flags
264# else
265# define Perl_sv_setsv dll_Perl_sv_setsv
266# endif
267# define Perl_sv_upgrade dll_Perl_sv_upgrade
268# define Perl_Tstack_sp_ptr dll_Perl_Tstack_sp_ptr
269# define Perl_Top_ptr dll_Perl_Top_ptr
270# define Perl_Tstack_base_ptr dll_Perl_Tstack_base_ptr
271# define Perl_Tstack_max_ptr dll_Perl_Tstack_max_ptr
272# define Perl_Ttmps_ix_ptr dll_Perl_Ttmps_ix_ptr
273# define Perl_Ttmps_floor_ptr dll_Perl_Ttmps_floor_ptr
274# define Perl_Tmarkstack_ptr_ptr dll_Perl_Tmarkstack_ptr_ptr
275# define Perl_Tmarkstack_max_ptr dll_Perl_Tmarkstack_max_ptr
276# define Perl_TSv_ptr dll_Perl_TSv_ptr
277# define Perl_TXpv_ptr dll_Perl_TXpv_ptr
278# define Perl_Tna_ptr dll_Perl_Tna_ptr
279# define Perl_Idefgv_ptr dll_Perl_Idefgv_ptr
280# define Perl_Ierrgv_ptr dll_Perl_Ierrgv_ptr
281# define Perl_Isv_yes_ptr dll_Perl_Isv_yes_ptr
282# define boot_DynaLoader dll_boot_DynaLoader
Bram Moolenaare06c1882010-07-21 22:05:20 +0200283# define Perl_Gthr_key_ptr dll_Perl_Gthr_key_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000285# define Perl_sys_init dll_Perl_sys_init
Bram Moolenaarc236c162008-07-13 17:41:49 +0000286# define Perl_sys_term dll_Perl_sys_term
287# define Perl_ISv_ptr dll_Perl_ISv_ptr
288# define Perl_Istack_max_ptr dll_Perl_Istack_max_ptr
289# define Perl_Istack_base_ptr dll_Perl_Istack_base_ptr
290# define Perl_Itmps_ix_ptr dll_Perl_Itmps_ix_ptr
291# define Perl_Itmps_floor_ptr dll_Perl_Itmps_floor_ptr
292# define Perl_IXpv_ptr dll_Perl_IXpv_ptr
293# define Perl_Ina_ptr dll_Perl_Ina_ptr
294# define Perl_Imarkstack_ptr_ptr dll_Perl_Imarkstack_ptr_ptr
295# define Perl_Imarkstack_max_ptr dll_Perl_Imarkstack_max_ptr
296# define Perl_Istack_sp_ptr dll_Perl_Istack_sp_ptr
297# define Perl_Iop_ptr dll_Perl_Iop_ptr
298# define Perl_call_list dll_Perl_call_list
299# define Perl_Iscopestack_ix_ptr dll_Perl_Iscopestack_ix_ptr
300# define Perl_Iunitcheckav_ptr dll_Perl_Iunitcheckav_ptr
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200301# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
302# define Perl_xs_handshake dll_Perl_xs_handshake
303# define Perl_xs_boot_epilog dll_Perl_xs_boot_epilog
304# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200305# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100306# ifdef USE_ITHREADS
307# define PL_thr_key *dll_PL_thr_key
308# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200309# endif
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100310# define Perl_hv_iternext_flags dll_Perl_hv_iternext_flags
311# define Perl_hv_iterinit dll_Perl_hv_iterinit
312# define Perl_hv_iterkey dll_Perl_hv_iterkey
313# define Perl_hv_iterval dll_Perl_hv_iterval
314# define Perl_av_fetch dll_Perl_av_fetch
315# define Perl_av_len dll_Perl_av_len
316# define Perl_sv_2nv_flags dll_Perl_sv_2nv_flags
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200317# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
318# define PerlIOBase_pushed dll_PerlIOBase_pushed
319# define PerlIO_define_layer dll_PerlIO_define_layer
320# endif
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200321# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
322# define Perl_savetmps dll_Perl_savetmps
323# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000324
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325/*
326 * Declare HANDLE for perl.dll and function pointers.
327 */
328static HANDLE hPerlLib = NULL;
329
330static PerlInterpreter* (*perl_alloc)();
331static void (*perl_construct)(PerlInterpreter*);
332static void (*perl_destruct)(PerlInterpreter*);
333static void (*perl_free)(PerlInterpreter*);
334static int (*perl_run)(PerlInterpreter*);
335static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
336static void* (*Perl_get_context)(void);
Bram Moolenaar864733a2016-04-02 14:18:01 +0200337static void (*Perl_croak)(pTHX_ const char*, ...) __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200338# ifdef PERL5101_OR_LATER
Bram Moolenaar6b107212013-12-11 15:06:40 +0100339/* Perl-5.18 has a different Perl_croak_xs_usage signature. */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200340# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar864733a2016-04-02 14:18:01 +0200341static void (*Perl_croak_xs_usage)(const CV *const, const char *const params)
342 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200343# else
Bram Moolenaar864733a2016-04-02 14:18:01 +0200344static void (*Perl_croak_xs_usage)(pTHX_ const CV *const, const char *const params)
345 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200346# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100347# endif
Bram Moolenaar864733a2016-04-02 14:18:01 +0200348static void (*Perl_croak_nocontext)(const char*, ...) __attribute__noreturn__;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349static I32 (*Perl_dowantarray)(pTHX);
350static void (*Perl_free_tmps)(pTHX);
351static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200352# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200353static I32* (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200354# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355static void (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200356# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000357static MAGIC* (*Perl_mg_find)(pTHX_ SV*, int);
Bram Moolenaar578333b2018-07-22 07:31:09 +0200358# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
359static int (*Perl_mg_get)(pTHX_ SV*);
360# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361static CV* (*Perl_newXS)(pTHX_ char*, XSUBADDR_t, char*);
362static SV* (*Perl_newSV)(pTHX_ STRLEN);
363static SV* (*Perl_newSViv)(pTHX_ IV);
364static SV* (*Perl_newSVpv)(pTHX_ const char*, STRLEN);
365static I32 (*Perl_call_argv)(pTHX_ const char*, I32, char**);
366static I32 (*Perl_call_pv)(pTHX_ const char*, I32);
367static I32 (*Perl_eval_sv)(pTHX_ SV*, I32);
368static SV* (*Perl_get_sv)(pTHX_ const char*, I32);
369static SV* (*Perl_eval_pv)(pTHX_ const char*, I32);
370static SV* (*Perl_call_method)(pTHX_ const char*, I32);
371static void (*Perl_pop_scope)(pTHX);
372static void (*Perl_push_scope)(pTHX);
373static void (*Perl_save_int)(pTHX_ int*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200374# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200375static void (*Perl_save_strlen)(pTHX_ STRLEN* ptr);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200376# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377static SV** (*Perl_stack_grow)(pTHX_ SV**, SV**p, int);
378static SV** (*Perl_set_context)(void*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200379# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200380static bool (*Perl_sv_2bool_flags)(pTHX_ SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200381# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200382static void (*Perl_xs_apiversion_bootcheck)(pTHX_ SV *module, const char *api_p, STRLEN api_len);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200383# endif
384# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385static bool (*Perl_sv_2bool)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200386# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387static IV (*Perl_sv_2iv)(pTHX_ SV*);
388static SV* (*Perl_sv_2mortal)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200389# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390static char* (*Perl_sv_2pv_flags)(pTHX_ SV*, STRLEN*, I32);
391static char* (*Perl_sv_2pv_nolen)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200392# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200394# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100395static char* (*Perl_sv_2pvbyte)(pTHX_ SV*, STRLEN*);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200397# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200399# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400static void (*Perl_sv_catpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200401# endif
402# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000403static IV (*Perl_sv_2iv_flags)(pTHX_ SV* sv, I32 flags);
404static CV * (*Perl_newXS_flags)(pTHX_ const char *name, XSUBADDR_t subaddr, const char *const filename, const char *const proto, U32 flags);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200405# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406static void (*Perl_sv_free)(pTHX_ SV*);
407static int (*Perl_sv_isa)(pTHX_ SV*, const char*);
408static void (*Perl_sv_magic)(pTHX_ SV*, SV*, int, const char*, I32);
409static void (*Perl_sv_setiv)(pTHX_ SV*, IV);
410static void (*Perl_sv_setpv)(pTHX_ SV*, const char*);
411static void (*Perl_sv_setpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200412# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413static void (*Perl_sv_setsv_flags)(pTHX_ SV*, SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200414# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415static void (*Perl_sv_setsv)(pTHX_ SV*, SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200416# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417static bool (*Perl_sv_upgrade)(pTHX_ SV*, U32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200418# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419static SV*** (*Perl_Tstack_sp_ptr)(register PerlInterpreter*);
420static OP** (*Perl_Top_ptr)(register PerlInterpreter*);
421static SV*** (*Perl_Tstack_base_ptr)(register PerlInterpreter*);
422static SV*** (*Perl_Tstack_max_ptr)(register PerlInterpreter*);
423static I32* (*Perl_Ttmps_ix_ptr)(register PerlInterpreter*);
424static I32* (*Perl_Ttmps_floor_ptr)(register PerlInterpreter*);
425static I32** (*Perl_Tmarkstack_ptr_ptr)(register PerlInterpreter*);
426static I32** (*Perl_Tmarkstack_max_ptr)(register PerlInterpreter*);
427static SV** (*Perl_TSv_ptr)(register PerlInterpreter*);
428static XPV** (*Perl_TXpv_ptr)(register PerlInterpreter*);
429static STRLEN* (*Perl_Tna_ptr)(register PerlInterpreter*);
Bram Moolenaar6b107212013-12-11 15:06:40 +0100430# else
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200431/* Perl-5.18 has a different Perl_sv_free2 signature. */
432# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
433static void (*Perl_sv_free2)(pTHX_ SV*, const U32);
434# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000435static void (*Perl_sv_free2)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200436# endif
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000437static void (*Perl_sys_init)(int* argc, char*** argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000438static void (*Perl_sys_term)(void);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200439static void (*Perl_call_list)(pTHX_ I32, AV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200440# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
441# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000442static SV** (*Perl_ISv_ptr)(register PerlInterpreter*);
443static SV*** (*Perl_Istack_max_ptr)(register PerlInterpreter*);
444static SV*** (*Perl_Istack_base_ptr)(register PerlInterpreter*);
445static XPV** (*Perl_IXpv_ptr)(register PerlInterpreter*);
446static I32* (*Perl_Itmps_ix_ptr)(register PerlInterpreter*);
447static I32* (*Perl_Itmps_floor_ptr)(register PerlInterpreter*);
448static STRLEN* (*Perl_Ina_ptr)(register PerlInterpreter*);
449static I32** (*Perl_Imarkstack_ptr_ptr)(register PerlInterpreter*);
450static I32** (*Perl_Imarkstack_max_ptr)(register PerlInterpreter*);
451static SV*** (*Perl_Istack_sp_ptr)(register PerlInterpreter*);
452static OP** (*Perl_Iop_ptr)(register PerlInterpreter*);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000453static I32* (*Perl_Iscopestack_ix_ptr)(register PerlInterpreter*);
454static AV** (*Perl_Iunitcheckav_ptr)(register PerlInterpreter*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200455# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200456# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200457# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200458static I32 (*Perl_xs_handshake)(const U32, void *, const char *, ...);
459static void (*Perl_xs_boot_epilog)(pTHX_ const U32);
Bram Moolenaard8619992014-03-12 17:08:05 +0100460# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200461
462# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
463# ifdef USE_ITHREADS
464static perl_key* dll_PL_thr_key;
465# endif
466# else
Bram Moolenaare06c1882010-07-21 22:05:20 +0200467static GV** (*Perl_Idefgv_ptr)(register PerlInterpreter*);
468static GV** (*Perl_Ierrgv_ptr)(register PerlInterpreter*);
469static SV* (*Perl_Isv_yes_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200470static perl_key* (*Perl_Gthr_key_ptr)_((pTHX));
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200471# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200472static void (*boot_DynaLoader)_((pTHX_ CV*));
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100473static HE * (*Perl_hv_iternext_flags)(pTHX_ HV *, I32);
474static I32 (*Perl_hv_iterinit)(pTHX_ HV *);
475static char * (*Perl_hv_iterkey)(pTHX_ HE *, I32 *);
476static SV * (*Perl_hv_iterval)(pTHX_ HV *, HE *);
477static SV** (*Perl_av_fetch)(pTHX_ AV *, SSize_t, I32);
478static SSize_t (*Perl_av_len)(pTHX_ AV *);
479static NV (*Perl_sv_2nv_flags)(pTHX_ SV *const, const I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200480# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200481static IV (*PerlIOBase_pushed)(pTHX_ PerlIO *, const char *, SV *, PerlIO_funcs *);
482static void (*PerlIO_define_layer)(pTHX_ PerlIO_funcs *);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200483# endif
484# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200485static void (*Perl_savetmps)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200486# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200487
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488/*
489 * Table of name to function pointer of perl.
490 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491static struct {
492 char* name;
493 PERL_PROC* ptr;
494} perl_funcname_table[] = {
495 {"perl_alloc", (PERL_PROC*)&perl_alloc},
496 {"perl_construct", (PERL_PROC*)&perl_construct},
497 {"perl_destruct", (PERL_PROC*)&perl_destruct},
498 {"perl_free", (PERL_PROC*)&perl_free},
499 {"perl_run", (PERL_PROC*)&perl_run},
500 {"perl_parse", (PERL_PROC*)&perl_parse},
501 {"Perl_get_context", (PERL_PROC*)&Perl_get_context},
502 {"Perl_croak", (PERL_PROC*)&Perl_croak},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200503# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100504 {"Perl_croak_xs_usage", (PERL_PROC*)&Perl_croak_xs_usage},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200505# endif
506# ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507 {"Perl_croak_nocontext", (PERL_PROC*)&Perl_croak_nocontext},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200508# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509 {"Perl_dowantarray", (PERL_PROC*)&Perl_dowantarray},
510 {"Perl_free_tmps", (PERL_PROC*)&Perl_free_tmps},
511 {"Perl_gv_stashpv", (PERL_PROC*)&Perl_gv_stashpv},
512 {"Perl_markstack_grow", (PERL_PROC*)&Perl_markstack_grow},
513 {"Perl_mg_find", (PERL_PROC*)&Perl_mg_find},
Bram Moolenaar578333b2018-07-22 07:31:09 +0200514# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
515 {"Perl_mg_get", (PERL_PROC*)&Perl_mg_get},
516# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517 {"Perl_newXS", (PERL_PROC*)&Perl_newXS},
518 {"Perl_newSV", (PERL_PROC*)&Perl_newSV},
519 {"Perl_newSViv", (PERL_PROC*)&Perl_newSViv},
520 {"Perl_newSVpv", (PERL_PROC*)&Perl_newSVpv},
521 {"Perl_call_argv", (PERL_PROC*)&Perl_call_argv},
522 {"Perl_call_pv", (PERL_PROC*)&Perl_call_pv},
523 {"Perl_eval_sv", (PERL_PROC*)&Perl_eval_sv},
524 {"Perl_get_sv", (PERL_PROC*)&Perl_get_sv},
525 {"Perl_eval_pv", (PERL_PROC*)&Perl_eval_pv},
526 {"Perl_call_method", (PERL_PROC*)&Perl_call_method},
527 {"Perl_pop_scope", (PERL_PROC*)&Perl_pop_scope},
528 {"Perl_push_scope", (PERL_PROC*)&Perl_push_scope},
529 {"Perl_save_int", (PERL_PROC*)&Perl_save_int},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200530# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200531 {"Perl_save_strlen", (PERL_PROC*)&Perl_save_strlen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200532# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533 {"Perl_stack_grow", (PERL_PROC*)&Perl_stack_grow},
534 {"Perl_set_context", (PERL_PROC*)&Perl_set_context},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200535# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200536 {"Perl_sv_2bool_flags", (PERL_PROC*)&Perl_sv_2bool_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200537# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200538 {"Perl_xs_apiversion_bootcheck",(PERL_PROC*)&Perl_xs_apiversion_bootcheck},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200539# endif
540# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541 {"Perl_sv_2bool", (PERL_PROC*)&Perl_sv_2bool},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200542# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543 {"Perl_sv_2iv", (PERL_PROC*)&Perl_sv_2iv},
544 {"Perl_sv_2mortal", (PERL_PROC*)&Perl_sv_2mortal},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200545# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546 {"Perl_sv_2pv_flags", (PERL_PROC*)&Perl_sv_2pv_flags},
547 {"Perl_sv_2pv_nolen", (PERL_PROC*)&Perl_sv_2pv_nolen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200548# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549 {"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200550# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100551 {"Perl_sv_2pvbyte", (PERL_PROC*)&Perl_sv_2pvbyte},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200552# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000553 {"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags},
554 {"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200555# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 {"Perl_sv_bless", (PERL_PROC*)&Perl_sv_bless},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200557# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558 {"Perl_sv_catpvn_flags", (PERL_PROC*)&Perl_sv_catpvn_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200559# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 {"Perl_sv_catpvn", (PERL_PROC*)&Perl_sv_catpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200561# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562 {"Perl_sv_free", (PERL_PROC*)&Perl_sv_free},
563 {"Perl_sv_isa", (PERL_PROC*)&Perl_sv_isa},
564 {"Perl_sv_magic", (PERL_PROC*)&Perl_sv_magic},
565 {"Perl_sv_setiv", (PERL_PROC*)&Perl_sv_setiv},
566 {"Perl_sv_setpv", (PERL_PROC*)&Perl_sv_setpv},
567 {"Perl_sv_setpvn", (PERL_PROC*)&Perl_sv_setpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200568# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 {"Perl_sv_setsv_flags", (PERL_PROC*)&Perl_sv_setsv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200570# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 {"Perl_sv_setsv", (PERL_PROC*)&Perl_sv_setsv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200572# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573 {"Perl_sv_upgrade", (PERL_PROC*)&Perl_sv_upgrade},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200574# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 {"Perl_Tstack_sp_ptr", (PERL_PROC*)&Perl_Tstack_sp_ptr},
576 {"Perl_Top_ptr", (PERL_PROC*)&Perl_Top_ptr},
577 {"Perl_Tstack_base_ptr", (PERL_PROC*)&Perl_Tstack_base_ptr},
578 {"Perl_Tstack_max_ptr", (PERL_PROC*)&Perl_Tstack_max_ptr},
579 {"Perl_Ttmps_ix_ptr", (PERL_PROC*)&Perl_Ttmps_ix_ptr},
580 {"Perl_Ttmps_floor_ptr", (PERL_PROC*)&Perl_Ttmps_floor_ptr},
581 {"Perl_Tmarkstack_ptr_ptr", (PERL_PROC*)&Perl_Tmarkstack_ptr_ptr},
582 {"Perl_Tmarkstack_max_ptr", (PERL_PROC*)&Perl_Tmarkstack_max_ptr},
583 {"Perl_TSv_ptr", (PERL_PROC*)&Perl_TSv_ptr},
584 {"Perl_TXpv_ptr", (PERL_PROC*)&Perl_TXpv_ptr},
585 {"Perl_Tna_ptr", (PERL_PROC*)&Perl_Tna_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200586# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000587 {"Perl_sv_free2", (PERL_PROC*)&Perl_sv_free2},
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000588 {"Perl_sys_init", (PERL_PROC*)&Perl_sys_init},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000589 {"Perl_sys_term", (PERL_PROC*)&Perl_sys_term},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200590 {"Perl_call_list", (PERL_PROC*)&Perl_call_list},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200591# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
592# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000593 {"Perl_ISv_ptr", (PERL_PROC*)&Perl_ISv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000594 {"Perl_Istack_max_ptr", (PERL_PROC*)&Perl_Istack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200595 {"Perl_Istack_base_ptr", (PERL_PROC*)&Perl_Istack_base_ptr},
596 {"Perl_IXpv_ptr", (PERL_PROC*)&Perl_IXpv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000597 {"Perl_Itmps_ix_ptr", (PERL_PROC*)&Perl_Itmps_ix_ptr},
598 {"Perl_Itmps_floor_ptr", (PERL_PROC*)&Perl_Itmps_floor_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200599 {"Perl_Ina_ptr", (PERL_PROC*)&Perl_Ina_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000600 {"Perl_Imarkstack_ptr_ptr", (PERL_PROC*)&Perl_Imarkstack_ptr_ptr},
601 {"Perl_Imarkstack_max_ptr", (PERL_PROC*)&Perl_Imarkstack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200602 {"Perl_Istack_sp_ptr", (PERL_PROC*)&Perl_Istack_sp_ptr},
603 {"Perl_Iop_ptr", (PERL_PROC*)&Perl_Iop_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000604 {"Perl_Iscopestack_ix_ptr", (PERL_PROC*)&Perl_Iscopestack_ix_ptr},
605 {"Perl_Iunitcheckav_ptr", (PERL_PROC*)&Perl_Iunitcheckav_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200606# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200607# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200608# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200609 {"Perl_xs_handshake", (PERL_PROC*)&Perl_xs_handshake},
610 {"Perl_xs_boot_epilog", (PERL_PROC*)&Perl_xs_boot_epilog},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200611# endif
612# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100613# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200614 {"PL_thr_key", (PERL_PROC*)&dll_PL_thr_key},
Bram Moolenaard8619992014-03-12 17:08:05 +0100615# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200616# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617 {"Perl_Idefgv_ptr", (PERL_PROC*)&Perl_Idefgv_ptr},
618 {"Perl_Ierrgv_ptr", (PERL_PROC*)&Perl_Ierrgv_ptr},
619 {"Perl_Isv_yes_ptr", (PERL_PROC*)&Perl_Isv_yes_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200620 {"Perl_Gthr_key_ptr", (PERL_PROC*)&Perl_Gthr_key_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200621# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200622 {"boot_DynaLoader", (PERL_PROC*)&boot_DynaLoader},
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100623 {"Perl_hv_iternext_flags", (PERL_PROC*)&Perl_hv_iternext_flags},
624 {"Perl_hv_iterinit", (PERL_PROC*)&Perl_hv_iterinit},
625 {"Perl_hv_iterkey", (PERL_PROC*)&Perl_hv_iterkey},
626 {"Perl_hv_iterval", (PERL_PROC*)&Perl_hv_iterval},
627 {"Perl_av_fetch", (PERL_PROC*)&Perl_av_fetch},
628 {"Perl_av_len", (PERL_PROC*)&Perl_av_len},
629 {"Perl_sv_2nv_flags", (PERL_PROC*)&Perl_sv_2nv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200630# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200631 {"PerlIOBase_pushed", (PERL_PROC*)&PerlIOBase_pushed},
632 {"PerlIO_define_layer", (PERL_PROC*)&PerlIO_define_layer},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200633# endif
634# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200635 {"Perl_savetmps", (PERL_PROC*)&Perl_savetmps},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200636# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637 {"", NULL},
638};
639
Bram Moolenaar6b107212013-12-11 15:06:40 +0100640/* Work around for perl-5.18.
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200641 * For now, only the definitions of S_SvREFCNT_dec are needed in
642 * "perl\lib\CORE\inline.h". */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200643# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200644static void
645S_SvREFCNT_dec(pTHX_ SV *sv)
646{
647 if (LIKELY(sv != NULL)) {
648 U32 rc = SvREFCNT(sv);
649 if (LIKELY(rc > 1))
650 SvREFCNT(sv) = rc - 1;
651 else
652 Perl_sv_free2(aTHX_ sv, rc);
653 }
654}
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200655# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100656
Bram Moolenaarfa4161c2017-06-10 15:46:23 +0200657/* perl-5.26 also needs S_TOPMARK and S_POPMARK. */
658# if (PERL_REVISION == 5) && (PERL_VERSION >= 26)
659PERL_STATIC_INLINE I32
660S_TOPMARK(pTHX)
661{
662 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log,
663 "MARK top %p %" IVdf "\n",
664 PL_markstack_ptr,
665 (IV)*PL_markstack_ptr)));
666 return *PL_markstack_ptr;
667}
668
669PERL_STATIC_INLINE I32
670S_POPMARK(pTHX)
671{
672 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log,
673 "MARK pop %p %" IVdf "\n",
674 (PL_markstack_ptr-1),
675 (IV)*(PL_markstack_ptr-1))));
676 assert((PL_markstack_ptr > PL_markstack) || !"MARK underflow");
677 return *PL_markstack_ptr--;
678}
679# endif
680
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681/*
682 * Make all runtime-links of perl.
683 *
Bram Moolenaar364ab2f2013-08-02 20:05:32 +0200684 * 1. Get module handle using dlopen() or vimLoadLib().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685 * 2. Get pointer to perl function by GetProcAddress.
686 * 3. Repeat 2, until get all functions will be used.
687 *
688 * Parameter 'libname' provides name of DLL.
689 * Return OK or FAIL.
690 */
691 static int
692perl_runtime_link_init(char *libname, int verbose)
693{
694 int i;
695
696 if (hPerlLib != NULL)
697 return OK;
Bram Moolenaare06c1882010-07-21 22:05:20 +0200698 if ((hPerlLib = load_dll(libname)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 {
700 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100701 semsg(_("E370: Could not load library %s"), libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 return FAIL;
703 }
704 for (i = 0; perl_funcname_table[i].ptr; ++i)
705 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200706 if (!(*perl_funcname_table[i].ptr = symbol_from_dll(hPerlLib,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 perl_funcname_table[i].name)))
708 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200709 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 hPerlLib = NULL;
711 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100712 semsg((const char *)_(e_loadfunc), perl_funcname_table[i].name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713 return FAIL;
714 }
715 }
716 return OK;
717}
718
719/*
720 * If runtime-link-perl(DLL) was loaded successfully, return TRUE.
721 * There were no DLL loaded, return FALSE.
722 */
723 int
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100724perl_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725{
Bram Moolenaar25e4fcd2016-01-09 14:57:47 +0100726 return perl_runtime_link_init((char *)p_perldll, verbose) == OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727}
728#endif /* DYNAMIC_PERL */
729
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200730#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
731static void vim_IOLayer_init(void);
732#endif
733
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734/*
735 * perl_init(): initialize perl interpreter
736 * We have to call perl_parse to initialize some structures,
737 * there's nothing to actually parse.
738 */
739 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100740perl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741{
Bram Moolenaarc236c162008-07-13 17:41:49 +0000742 char *bootargs[] = { "VI", NULL };
743 int argc = 3;
744 static char *argv[] = { "", "-e", "" };
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745
Bram Moolenaarc236c162008-07-13 17:41:49 +0000746#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000747 Perl_sys_init(&argc, (char***)&argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000748#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 perl_interp = perl_alloc();
750 perl_construct(perl_interp);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000751 perl_parse(perl_interp, xs_init, argc, argv, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 perl_call_argv("VIM::bootstrap", (long)G_DISCARD, bootargs);
753 VIM_init();
754#ifdef USE_SFIO
755 sfdisc(PerlIO_stdout(), sfdcnewvim());
756 sfdisc(PerlIO_stderr(), sfdcnewvim());
757 sfsetbuf(PerlIO_stdout(), NULL, 0);
758 sfsetbuf(PerlIO_stderr(), NULL, 0);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200759#elif defined(PERLIO_LAYERS)
760 vim_IOLayer_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761#endif
762}
763
764/*
Bram Moolenaar20279732020-03-29 20:51:07 +0200765 * Clean up after ourselves.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 */
767 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100768perl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769{
770 if (perl_interp)
771 {
772 perl_run(perl_interp);
773 perl_destruct(perl_interp);
774 perl_free(perl_interp);
775 perl_interp = NULL;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000776#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100777 Perl_sys_term();
Bram Moolenaarc236c162008-07-13 17:41:49 +0000778#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780}
781
782/*
783 * msg_split(): send a message to the message handling routines
784 * split at '\n' first though.
785 */
786 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100787msg_split(
788 char_u *s,
789 int attr) /* highlighting attributes */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790{
791 char *next;
792 char *token = (char *)s;
793
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000794 while ((next = strchr(token, '\n')) && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795 {
796 *next++ = '\0'; /* replace \n with \0 */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100797 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798 token = next;
799 }
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000800 if (*token && !got_int)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100801 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802}
803
804#ifndef FEAT_EVAL
805/*
806 * This stub is needed because an "#ifdef FEAT_EVAL" around Eval() doesn't
807 * work properly.
808 */
809 char_u *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100810eval_to_string(
811 char_u *arg UNUSED,
812 char_u **nextcmd UNUSED,
813 int dolist UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814{
815 return NULL;
816}
817#endif
818
819/*
820 * Create a new reference to an SV pointing to the SCR structure
Bram Moolenaare344bea2005-09-01 20:46:49 +0000821 * The b_perl_private/w_perl_private part of the SCR structure points to the
822 * SV, so there can only be one such SV for a particular SCR structure. When
823 * the last reference has gone (DESTROY is called),
824 * b_perl_private/w_perl_private is reset; When the screen goes away before
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 * all references are gone, the value of the SV is reset;
826 * any subsequent use of any of those reference will produce
827 * a warning. (see typemap)
828 */
Bram Moolenaare344bea2005-09-01 20:46:49 +0000829
830 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100831newWINrv(SV *rv, win_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000832{
833 sv_upgrade(rv, SVt_RV);
834 if (ptr->w_perl_private == NULL)
835 {
836 ptr->w_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100837 sv_setiv(ptr->w_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000838 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200839 SvREFCNT_inc_void_NN(ptr->w_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000840 SvRV(rv) = ptr->w_perl_private;
841 SvROK_on(rv);
842 return sv_bless(rv, gv_stashpv("VIWIN", TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843}
844
Bram Moolenaare344bea2005-09-01 20:46:49 +0000845 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100846newBUFrv(SV *rv, buf_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000847{
848 sv_upgrade(rv, SVt_RV);
849 if (ptr->b_perl_private == NULL)
850 {
851 ptr->b_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100852 sv_setiv(ptr->b_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000853 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200854 SvREFCNT_inc_void_NN(ptr->b_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000855 SvRV(rv) = ptr->b_perl_private;
856 SvROK_on(rv);
857 return sv_bless(rv, gv_stashpv("VIBUF", TRUE));
858}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200860#if 0
861SV *__sv_save[1024];
862int __sv_save_ix;
863# define D_Save_Sv(sv) do { if (__sv_save_ix < 1024) __sv_save[__sv_save_ix++] = (sv); } while (0)
864#else
865# define D_Save_Sv(sv) NOOP
866#endif
867
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868/*
869 * perl_win_free
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200870 * Remove all references to the window to be destroyed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871 */
872 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100873perl_win_free(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200875 if (wp->w_perl_private && perl_interp != NULL)
876 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200877 SV *sv = (SV*)wp->w_perl_private;
878 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200879 sv_setiv(sv, 0);
880 SvREFCNT_dec(sv);
881 }
882 wp->w_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883}
884
885 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100886perl_buf_free(buf_T *bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200888 if (bp->b_perl_private && perl_interp != NULL)
889 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200890 SV *sv = (SV *)bp->b_perl_private;
891 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200892 sv_setiv(sv, 0);
893 SvREFCNT_dec(sv);
894 }
895 bp->b_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896}
897
898#ifndef PROTO
899# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
900I32 cur_val(pTHX_ IV iv, SV *sv);
901# else
902I32 cur_val(IV iv, SV *sv);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200903# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904
905/*
906 * Handler for the magic variables $main::curwin and $main::curbuf.
907 * The handler is put into the magic vtbl for these variables.
908 * (This is effectively a C-level equivalent of a tied variable).
909 * There is no "set" function as the variables are read-only.
910 */
911# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
912I32 cur_val(pTHX_ IV iv, SV *sv)
913# else
914I32 cur_val(IV iv, SV *sv)
915# endif
916{
917 SV *rv;
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200918
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 if (iv == 0)
920 rv = newWINrv(newSV(0), curwin);
921 else
922 rv = newBUFrv(newSV(0), curbuf);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200923
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200924 if (SvRV(sv) != SvRV(rv))
925 // XXX: This magic variable is a bit confusing...
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100926 // Is currently refcounted ?
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200927 sv_setsv(sv, rv);
928
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200929 SvREFCNT_dec(rv);
930
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 return 0;
932}
933#endif /* !PROTO */
934
935struct ufuncs cw_funcs = { cur_val, 0, 0 };
936struct ufuncs cb_funcs = { cur_val, 0, 1 };
937
938/*
939 * VIM_init(): Vim-specific initialisation.
940 * Make the magical main::curwin and main::curbuf variables
941 */
942 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100943VIM_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944{
945 static char cw[] = "main::curwin";
946 static char cb[] = "main::curbuf";
947 SV *sv;
948
949 sv = perl_get_sv(cw, TRUE);
950 sv_magic(sv, NULL, 'U', (char *)&cw_funcs, sizeof(cw_funcs));
951 SvREADONLY_on(sv);
952
953 sv = perl_get_sv(cb, TRUE);
954 sv_magic(sv, NULL, 'U', (char *)&cb_funcs, sizeof(cb_funcs));
955 SvREADONLY_on(sv);
956
957 /*
958 * Setup the Safe compartment.
959 * It shouldn't be a fatal error if the Safe module is missing.
960 * XXX: Only shares the 'Msg' routine (which has to be called
961 * like 'Msg(...)').
962 */
963 (void)perl_eval_pv( "if ( eval( 'require Safe' ) ) { $VIM::safe = Safe->new(); $VIM::safe->share_from( 'VIM', ['Msg'] ); }", G_DISCARD | G_VOID );
964
965}
966
967#ifdef DYNAMIC_PERL
968static char *e_noperl = N_("Sorry, this command is disabled: the Perl library could not be loaded.");
969#endif
Bram Moolenaar8c62a082019-02-08 14:34:10 +0100970static char *e_perlsandbox = N_("E299: Perl evaluation forbidden in sandbox without the Safe module");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971
972/*
973 * ":perl"
974 */
975 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100976ex_perl(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977{
978 char *err;
979 char *script;
980 STRLEN length;
981 SV *sv;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200982#ifdef HAVE_SANDBOX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 SV *safe;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200984#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985
986 script = (char *)script_get(eap, eap->arg);
987 if (eap->skip)
988 {
989 vim_free(script);
990 return;
991 }
992
993 if (perl_interp == NULL)
994 {
995#ifdef DYNAMIC_PERL
996 if (!perl_enabled(TRUE))
997 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100998 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 vim_free(script);
1000 return;
1001 }
1002#endif
1003 perl_init();
1004 }
1005
1006 {
1007 dSP;
1008 ENTER;
1009 SAVETMPS;
1010
1011 if (script == NULL)
1012 sv = newSVpv((char *)eap->arg, 0);
1013 else
1014 {
1015 sv = newSVpv(script, 0);
1016 vim_free(script);
1017 }
1018
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001019 if (sandbox || secure)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020 {
Bram Moolenaara1711622011-07-27 14:15:46 +02001021 safe = perl_get_sv("VIM::safe", FALSE);
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001022# ifndef MAKE_TEST /* avoid a warning for unreachable code */
Bram Moolenaar954e8c52009-11-11 13:45:33 +00001023 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001024 emsg(_(e_perlsandbox));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 else
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001026# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027 {
1028 PUSHMARK(SP);
1029 XPUSHs(safe);
1030 XPUSHs(sv);
1031 PUTBACK;
1032 perl_call_method("reval", G_DISCARD);
1033 }
1034 }
1035 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1037
1038 SvREFCNT_dec(sv);
1039
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001040 err = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041
1042 FREETMPS;
1043 LEAVE;
1044
1045 if (!length)
1046 return;
1047
1048 msg_split((char_u *)err, highlight_attr[HLF_E]);
1049 return;
1050 }
1051}
1052
1053 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001054replace_line(linenr_T *line, linenr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055{
1056 char *str;
1057
1058 if (SvOK(GvSV(PL_defgv)))
1059 {
1060 str = SvPV(GvSV(PL_defgv), PL_na);
1061 ml_replace(*line, (char_u *)str, 1);
1062 changed_bytes(*line, 0);
1063 }
1064 else
1065 {
1066 ml_delete(*line, FALSE);
1067 deleted_lines_mark(*line, 1L);
1068 --(*end);
1069 --(*line);
1070 }
1071 return OK;
1072}
1073
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001074static struct ref_map_S {
1075 void *vim_ref;
1076 SV *perl_ref;
1077 struct ref_map_S *next;
1078} *ref_map = NULL;
1079
1080 static void
1081ref_map_free(void)
1082{
1083 struct ref_map_S *tofree;
1084 struct ref_map_S *refs = ref_map;
1085
1086 while (refs) {
1087 tofree = refs;
1088 refs = refs->next;
1089 vim_free(tofree);
1090 }
1091 ref_map = NULL;
1092}
1093
1094 static struct ref_map_S *
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001095ref_map_find_SV(SV *const sv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001096{
1097 struct ref_map_S *refs = ref_map;
1098 int count = 350;
1099
1100 while (refs) {
1101 if (refs->perl_ref == sv)
1102 break;
1103 refs = refs->next;
1104 count--;
1105 }
1106
1107 if (!refs && count > 0) {
1108 refs = (struct ref_map_S *)alloc(sizeof(struct ref_map_S));
1109 if (!refs)
1110 return NULL;
1111 refs->perl_ref = sv;
1112 refs->vim_ref = NULL;
1113 refs->next = ref_map;
1114 ref_map = refs;
1115 }
1116
1117 return refs;
1118}
1119
1120 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001121perl_to_vim(SV *sv, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001122{
1123 if (SvROK(sv))
1124 sv = SvRV(sv);
1125
1126 switch (SvTYPE(sv)) {
1127 case SVt_NULL:
1128 break;
1129 case SVt_NV: /* float */
1130#ifdef FEAT_FLOAT
1131 rettv->v_type = VAR_FLOAT;
1132 rettv->vval.v_float = SvNV(sv);
1133 break;
1134#endif
1135 case SVt_IV: /* integer */
1136 if (!SvROK(sv)) { /* references should be string */
1137 rettv->vval.v_number = SvIV(sv);
1138 break;
1139 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02001140 /* FALLTHROUGH */
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001141 case SVt_PV: /* string */
1142 {
1143 size_t len = 0;
1144 char * str_from = SvPV(sv, len);
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001145 char_u *str_to = (char_u*)alloc(
1146 (unsigned)(sizeof(char_u) * (len + 1)));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001147
1148 if (str_to) {
1149 str_to[len] = '\0';
1150
1151 while (len--) {
1152 if (str_from[len] == '\0')
1153 str_to[len] = '\n';
1154 else
1155 str_to[len] = str_from[len];
1156 }
1157 }
1158
1159 rettv->v_type = VAR_STRING;
1160 rettv->vval.v_string = str_to;
1161 break;
1162 }
1163 case SVt_PVAV: /* list */
1164 {
1165 SSize_t size;
1166 listitem_T * item;
1167 SV ** item2;
1168 list_T * list;
1169 struct ref_map_S * refs;
1170
1171 if ((refs = ref_map_find_SV(sv)) == NULL)
1172 return FAIL;
1173
1174 if (refs->vim_ref)
1175 list = (list_T *) refs->vim_ref;
1176 else
1177 {
1178 if ((list = list_alloc()) == NULL)
1179 return FAIL;
1180 refs->vim_ref = list;
1181
1182 for (size = av_len((AV*)sv); size >= 0; size--)
1183 {
1184 if ((item = listitem_alloc()) == NULL)
1185 break;
1186
1187 item->li_tv.v_type = VAR_NUMBER;
1188 item->li_tv.v_lock = 0;
1189 item->li_tv.vval.v_number = 0;
1190 list_insert(list, item, list->lv_first);
1191
1192 item2 = av_fetch((AV *)sv, size, 0);
1193
1194 if (item2 == NULL || *item2 == NULL ||
Bram Moolenaard99df422016-01-29 23:20:40 +01001195 perl_to_vim(*item2, &item->li_tv) == FAIL)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001196 break;
1197 }
1198 }
1199
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001200 rettv_list_set(rettv, list);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001201 break;
1202 }
1203 case SVt_PVHV: /* dictionary */
1204 {
1205 HE * entry;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001206 I32 key_len;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001207 char * key;
1208 dictitem_T * item;
1209 SV * item2;
1210 dict_T * dict;
1211 struct ref_map_S * refs;
1212
1213 if ((refs = ref_map_find_SV(sv)) == NULL)
1214 return FAIL;
1215
1216 if (refs->vim_ref)
1217 dict = (dict_T *) refs->vim_ref;
1218 else
1219 {
1220
1221 if ((dict = dict_alloc()) == NULL)
1222 return FAIL;
1223 refs->vim_ref = dict;
1224
1225 hv_iterinit((HV *)sv);
1226
1227 for (entry = hv_iternext((HV *)sv); entry; entry = hv_iternext((HV *)sv))
1228 {
1229 key_len = 0;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001230 key = hv_iterkey(entry, &key_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001231
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001232 if (!key || !key_len || strlen(key) < (size_t)key_len) {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001233 semsg("Malformed key Dictionary '%s'", key && *key ? key : "(empty)");
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001234 break;
1235 }
1236
1237 if ((item = dictitem_alloc((char_u *)key)) == NULL)
1238 break;
Bram Moolenaarc89d4b32018-07-08 17:19:02 +02001239 item->di_tv.v_type = VAR_NUMBER;
1240 item->di_tv.vval.v_number = 0;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001241
1242 if (dict_add(dict, item) == FAIL) {
1243 dictitem_free(item);
1244 break;
1245 }
1246 item2 = hv_iterval((HV *)sv, entry);
1247 if (item2 == NULL || perl_to_vim(item2, &item->di_tv) == FAIL)
1248 break;
1249 }
1250 }
1251
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001252 rettv_dict_set(rettv, dict);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001253 break;
1254 }
1255 default: /* not convertible */
1256 {
1257 char *val = SvPV_nolen(sv);
1258 rettv->v_type = VAR_STRING;
1259 rettv->vval.v_string = val ? vim_strsave((char_u *)val) : NULL;
1260 break;
1261 }
1262 }
1263 return OK;
1264}
1265
1266/*
1267 * "perleval()"
1268 */
1269 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001270do_perleval(char_u *str, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001271{
1272 char *err = NULL;
1273 STRLEN err_len = 0;
1274 SV *sv = NULL;
1275#ifdef HAVE_SANDBOX
1276 SV *safe;
1277#endif
1278
1279 if (perl_interp == NULL)
1280 {
1281#ifdef DYNAMIC_PERL
1282 if (!perl_enabled(TRUE))
1283 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001284 emsg(_(e_noperl));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001285 return;
1286 }
1287#endif
1288 perl_init();
1289 }
1290
1291 {
1292 dSP;
1293 ENTER;
1294 SAVETMPS;
1295
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001296 if (sandbox || secure)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001297 {
1298 safe = get_sv("VIM::safe", FALSE);
1299# ifndef MAKE_TEST /* avoid a warning for unreachable code */
1300 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001301 emsg(_(e_perlsandbox));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001302 else
1303# endif
1304 {
1305 sv = newSVpv((char *)str, 0);
1306 PUSHMARK(SP);
1307 XPUSHs(safe);
1308 XPUSHs(sv);
1309 PUTBACK;
1310 call_method("reval", G_SCALAR);
1311 SPAGAIN;
1312 SvREFCNT_dec(sv);
1313 sv = POPs;
1314 }
1315 }
1316 else
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001317 sv = eval_pv((char *)str, 0);
1318
1319 if (sv) {
1320 perl_to_vim(sv, rettv);
1321 ref_map_free();
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001322 err = SvPV(GvSV(PL_errgv), err_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001323 }
1324 PUTBACK;
1325 FREETMPS;
1326 LEAVE;
1327 }
1328 if (err_len)
1329 msg_split((char_u *)err, highlight_attr[HLF_E]);
1330}
1331
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332/*
1333 * ":perldo".
1334 */
1335 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001336ex_perldo(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337{
1338 STRLEN length;
1339 SV *sv;
1340 char *str;
1341 linenr_T i;
Bram Moolenaar85b57432017-01-29 22:59:12 +01001342 buf_T *was_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001344 if (BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345 return;
1346
1347 if (perl_interp == NULL)
1348 {
1349#ifdef DYNAMIC_PERL
1350 if (!perl_enabled(TRUE))
1351 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001352 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353 return;
1354 }
1355#endif
1356 perl_init();
1357 }
1358 {
1359 dSP;
1360 length = strlen((char *)eap->arg);
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001361 sv = newSV(length + sizeof("sub VIM::perldo {") - 1 + 1);
1362 sv_setpvn(sv, "sub VIM::perldo {", sizeof("sub VIM::perldo {") - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 sv_catpvn(sv, (char *)eap->arg, length);
1364 sv_catpvn(sv, "}", 1);
1365 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1366 SvREFCNT_dec(sv);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001367 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 if (length)
1369 goto err;
1370
1371 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
1372 return;
1373
1374 ENTER;
1375 SAVETMPS;
1376 for (i = eap->line1; i <= eap->line2; i++)
1377 {
Bram Moolenaar85b57432017-01-29 22:59:12 +01001378 /* Check the line number, the command my have deleted lines. */
1379 if (i > curbuf->b_ml.ml_line_count)
1380 break;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001381 sv_setpv(GvSV(PL_defgv), (char *)ml_get(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 PUSHMARK(sp);
1383 perl_call_pv("VIM::perldo", G_SCALAR | G_EVAL);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001384 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar85b57432017-01-29 22:59:12 +01001385 if (length || curbuf != was_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 break;
1387 SPAGAIN;
1388 if (SvTRUEx(POPs))
1389 {
1390 if (replace_line(&i, &eap->line2) != OK)
1391 {
1392 PUTBACK;
1393 break;
1394 }
1395 }
1396 PUTBACK;
1397 }
1398 FREETMPS;
1399 LEAVE;
1400 check_cursor();
1401 update_screen(NOT_VALID);
1402 if (!length)
1403 return;
1404
1405err:
1406 msg_split((char_u *)str, highlight_attr[HLF_E]);
1407 return;
1408 }
1409}
1410
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001411#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
1412typedef struct {
1413 struct _PerlIO base;
1414 int attr;
1415} PerlIOVim;
1416
1417 static IV
1418PerlIOVim_pushed(pTHX_ PerlIO *f, const char *mode,
1419 SV *arg, PerlIO_funcs *tab)
1420{
1421 PerlIOVim *s = PerlIOSelf(f, PerlIOVim);
1422 s->attr = 0;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001423 if (arg && SvPOK(arg))
1424 s->attr = syn_name2attr((char_u *)SvPV_nolen(arg));
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001425 return PerlIOBase_pushed(aTHX_ f, mode, (SV *)NULL, tab);
1426}
1427
1428 static SSize_t
1429PerlIOVim_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
1430{
1431 char_u *str;
1432 PerlIOVim * s = PerlIOSelf(f, PerlIOVim);
1433
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001434 str = vim_strnsave((char_u *)vbuf, (int)count);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001435 if (str == NULL)
1436 return 0;
1437 msg_split((char_u *)str, s->attr);
1438 vim_free(str);
1439
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001440 return (SSize_t)count;
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001441}
1442
1443static PERLIO_FUNCS_DECL(PerlIO_Vim) = {
1444 sizeof(PerlIO_funcs),
1445 "Vim",
1446 sizeof(PerlIOVim),
1447 PERLIO_K_DUMMY, /* flags */
1448 PerlIOVim_pushed,
1449 NULL, /* popped */
1450 NULL, /* open */
1451 NULL, /* binmode */
1452 NULL, /* arg */
1453 NULL, /* fileno */
1454 NULL, /* dup */
1455 NULL, /* read */
1456 NULL, /* unread */
1457 PerlIOVim_write,
1458 NULL, /* seek */
1459 NULL, /* tell */
1460 NULL, /* close */
1461 NULL, /* flush */
1462 NULL, /* fill */
1463 NULL, /* eof */
1464 NULL, /* error */
1465 NULL, /* clearerr */
1466 NULL, /* setlinebuf */
1467 NULL, /* get_base */
1468 NULL, /* get_bufsiz */
1469 NULL, /* get_ptr */
1470 NULL, /* get_cnt */
1471 NULL /* set_ptrcnt */
1472};
1473
1474/* Use Vim routine for print operator */
1475 static void
1476vim_IOLayer_init(void)
1477{
1478 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_Vim));
1479 (void)eval_pv( "binmode(STDOUT, ':Vim')"
1480 " && binmode(STDERR, ':Vim(ErrorMsg)');", 0);
1481}
1482#endif /* PERLIO_LAYERS && !USE_SFIO */
1483
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484XS(boot_VIM);
1485
1486 static void
1487xs_init(pTHX)
1488{
1489 char *file = __FILE__;
1490
1491 /* DynaLoader is a special case */
1492 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
1493 newXS("VIM::bootstrap", boot_VIM, file);
1494}
1495
1496typedef win_T * VIWIN;
1497typedef buf_T * VIBUF;
1498
1499MODULE = VIM PACKAGE = VIM
1500
1501void
1502Msg(text, hl=NULL)
1503 char *text;
1504 char *hl;
1505
1506 PREINIT:
1507 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508
1509 PPCODE:
1510 if (text != NULL)
1511 {
1512 attr = 0;
1513 if (hl != NULL)
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001514 attr = syn_name2attr((char_u *)hl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 msg_split((char_u *)text, attr);
1516 }
1517
1518void
1519SetOption(line)
1520 char *line;
1521
1522 PPCODE:
1523 if (line != NULL)
1524 do_set((char_u *)line, 0);
1525 update_screen(NOT_VALID);
1526
1527void
1528DoCommand(line)
1529 char *line;
1530
1531 PPCODE:
1532 if (line != NULL)
1533 do_cmdline_cmd((char_u *)line);
1534
1535void
1536Eval(str)
1537 char *str;
1538
1539 PREINIT:
1540 char_u *value;
1541 PPCODE:
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001542 value = eval_to_string((char_u *)str, (char_u **)0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 if (value == NULL)
1544 {
1545 XPUSHs(sv_2mortal(newSViv(0)));
1546 XPUSHs(sv_2mortal(newSVpv("", 0)));
1547 }
1548 else
1549 {
1550 XPUSHs(sv_2mortal(newSViv(1)));
1551 XPUSHs(sv_2mortal(newSVpv((char *)value, 0)));
1552 vim_free(value);
1553 }
1554
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001555SV*
1556Blob(SV* sv)
1557 PREINIT:
Bram Moolenaarb1443b42019-01-13 23:51:14 +01001558 STRLEN len;
1559 char *s;
1560 unsigned i;
1561 char buf[3];
1562 SV* newsv;
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001563
1564 CODE:
1565 s = SvPVbyte(sv, len);
1566 newsv = newSVpv("0z", 2);
1567 for (i = 0; i < len; i++)
1568 {
Bram Moolenaar2472ae82019-02-23 15:04:17 +01001569 sprintf(buf, "%02X", (unsigned char)(s[i]));
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001570 sv_catpvn(newsv, buf, 2);
1571 }
1572 RETVAL = newsv;
1573 OUTPUT:
1574 RETVAL
1575
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576void
1577Buffers(...)
1578
1579 PREINIT:
1580 buf_T *vimbuf;
1581 int i, b;
1582
1583 PPCODE:
1584 if (items == 0)
1585 {
1586 if (GIMME == G_SCALAR)
1587 {
1588 i = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02001589 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590 ++i;
1591
1592 XPUSHs(sv_2mortal(newSViv(i)));
1593 }
1594 else
1595 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001596 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001597 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 }
1599 }
1600 else
1601 {
1602 for (i = 0; i < items; i++)
1603 {
1604 SV *sv = ST(i);
1605 if (SvIOK(sv))
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001606 b = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607 else
1608 {
1609 char_u *pat;
1610 STRLEN len;
1611
1612 pat = (char_u *)SvPV(sv, len);
1613 ++emsg_off;
Bram Moolenaar16896a12018-03-06 12:25:56 +01001614 b = buflist_findpat(pat, pat + len, TRUE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615 --emsg_off;
1616 }
1617
1618 if (b >= 0)
1619 {
1620 vimbuf = buflist_findnr(b);
1621 if (vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001622 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001623 }
1624 }
1625 }
1626
1627void
1628Windows(...)
1629
1630 PREINIT:
1631 win_T *vimwin;
1632 int i, w;
1633
1634 PPCODE:
1635 if (items == 0)
1636 {
1637 if (GIMME == G_SCALAR)
1638 XPUSHs(sv_2mortal(newSViv(win_count())));
1639 else
1640 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001641 FOR_ALL_WINDOWS(vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001642 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 }
1644 }
1645 else
1646 {
1647 for (i = 0; i < items; i++)
1648 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001649 w = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 vimwin = win_find_nr(w);
1651 if (vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001652 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 }
1654 }
1655
1656MODULE = VIM PACKAGE = VIWIN
1657
1658void
1659DESTROY(win)
1660 VIWIN win
1661
1662 CODE:
1663 if (win_valid(win))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001664 win->w_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665
1666SV *
1667Buffer(win)
1668 VIWIN win
1669
1670 CODE:
1671 if (!win_valid(win))
1672 win = curwin;
1673 RETVAL = newBUFrv(newSV(0), win->w_buffer);
1674 OUTPUT:
1675 RETVAL
1676
1677void
1678SetHeight(win, height)
1679 VIWIN win
1680 int height;
1681
1682 PREINIT:
1683 win_T *savewin;
1684
1685 PPCODE:
1686 if (!win_valid(win))
1687 win = curwin;
1688 savewin = curwin;
1689 curwin = win;
1690 win_setheight(height);
1691 curwin = savewin;
1692
1693void
Bram Moolenaar864733a2016-04-02 14:18:01 +02001694Cursor(win, ...)
1695 VIWIN win
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696
1697 PPCODE:
Bram Moolenaara1711622011-07-27 14:15:46 +02001698 if (items == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699 {
1700 EXTEND(sp, 2);
1701 if (!win_valid(win))
1702 win = curwin;
1703 PUSHs(sv_2mortal(newSViv(win->w_cursor.lnum)));
1704 PUSHs(sv_2mortal(newSViv(win->w_cursor.col)));
1705 }
Bram Moolenaara1711622011-07-27 14:15:46 +02001706 else if (items == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707 {
1708 int lnum, col;
1709
1710 if (!win_valid(win))
1711 win = curwin;
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001712 lnum = (int) SvIV(ST(1));
1713 col = (int) SvIV(ST(2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 win->w_cursor.lnum = lnum;
1715 win->w_cursor.col = col;
Bram Moolenaar53901442018-07-25 22:02:36 +02001716 win->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 check_cursor(); /* put cursor on an existing line */
1718 update_screen(NOT_VALID);
1719 }
1720
1721MODULE = VIM PACKAGE = VIBUF
1722
1723void
1724DESTROY(vimbuf)
1725 VIBUF vimbuf;
1726
1727 CODE:
1728 if (buf_valid(vimbuf))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001729 vimbuf->b_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730
1731void
1732Name(vimbuf)
1733 VIBUF vimbuf;
1734
1735 PPCODE:
1736 if (!buf_valid(vimbuf))
1737 vimbuf = curbuf;
1738 /* No file name returns an empty string */
1739 if (vimbuf->b_fname == NULL)
1740 XPUSHs(sv_2mortal(newSVpv("", 0)));
1741 else
1742 XPUSHs(sv_2mortal(newSVpv((char *)vimbuf->b_fname, 0)));
1743
1744void
1745Number(vimbuf)
1746 VIBUF vimbuf;
1747
1748 PPCODE:
1749 if (!buf_valid(vimbuf))
1750 vimbuf = curbuf;
1751 XPUSHs(sv_2mortal(newSViv(vimbuf->b_fnum)));
1752
1753void
1754Count(vimbuf)
1755 VIBUF vimbuf;
1756
1757 PPCODE:
1758 if (!buf_valid(vimbuf))
1759 vimbuf = curbuf;
1760 XPUSHs(sv_2mortal(newSViv(vimbuf->b_ml.ml_line_count)));
1761
1762void
1763Get(vimbuf, ...)
1764 VIBUF vimbuf;
1765
1766 PREINIT:
1767 char_u *line;
1768 int i;
1769 long lnum;
1770 PPCODE:
1771 if (buf_valid(vimbuf))
1772 {
1773 for (i = 1; i < items; i++)
1774 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001775 lnum = (long) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1777 {
1778 line = ml_get_buf(vimbuf, lnum, FALSE);
1779 XPUSHs(sv_2mortal(newSVpv((char *)line, 0)));
1780 }
1781 }
1782 }
1783
1784void
1785Set(vimbuf, ...)
1786 VIBUF vimbuf;
1787
1788 PREINIT:
1789 int i;
1790 long lnum;
1791 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 PPCODE:
1793 if (buf_valid(vimbuf))
1794 {
1795 if (items < 3)
1796 croak("Usage: VIBUF::Set(vimbuf, lnum, @lines)");
1797
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001798 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 for(i = 2; i < items; i++, lnum++)
1800 {
1801 line = SvPV(ST(i),PL_na);
1802 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1803 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001804 aco_save_T aco;
1805
1806 /* set curwin/curbuf for "vimbuf" and save some things */
1807 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001808
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 if (u_savesub(lnum) == OK)
1810 {
1811 ml_replace(lnum, (char_u *)line, TRUE);
1812 changed_bytes(lnum, 0);
1813 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001814
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001815 /* restore curwin/curbuf and a few other things */
1816 aucmd_restbuf(&aco);
1817 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 }
1819 }
1820 }
1821
1822void
1823Delete(vimbuf, ...)
1824 VIBUF vimbuf;
1825
1826 PREINIT:
1827 long i, lnum = 0, count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828 PPCODE:
1829 if (buf_valid(vimbuf))
1830 {
1831 if (items == 2)
1832 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001833 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 count = 1;
1835 }
1836 else if (items == 3)
1837 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001838 lnum = (long) SvIV(ST(1));
1839 count = (long) 1 + SvIV(ST(2)) - lnum;
Bram Moolenaara1711622011-07-27 14:15:46 +02001840 if (count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 count = 1;
Bram Moolenaara1711622011-07-27 14:15:46 +02001842 if (count < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 {
1844 lnum -= count;
1845 count = -count;
1846 }
1847 }
1848 if (items >= 2)
1849 {
1850 for (i = 0; i < count; i++)
1851 {
1852 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1853 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001854 aco_save_T aco;
1855
1856 /* set curwin/curbuf for "vimbuf" and save some things */
1857 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001858
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 if (u_savedel(lnum, 1) == OK)
1860 {
1861 ml_delete(lnum, 0);
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00001862 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 deleted_lines_mark(lnum, 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001865
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001866 /* restore curwin/curbuf and a few other things */
1867 aucmd_restbuf(&aco);
1868 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001869
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870 update_curbuf(VALID);
1871 }
1872 }
1873 }
1874 }
1875
1876void
1877Append(vimbuf, ...)
1878 VIBUF vimbuf;
1879
1880 PREINIT:
1881 int i;
1882 long lnum;
1883 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 PPCODE:
1885 if (buf_valid(vimbuf))
1886 {
1887 if (items < 3)
1888 croak("Usage: VIBUF::Append(vimbuf, lnum, @lines)");
1889
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001890 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 for (i = 2; i < items; i++, lnum++)
1892 {
1893 line = SvPV(ST(i),PL_na);
1894 if (lnum >= 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1895 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001896 aco_save_T aco;
1897
1898 /* set curwin/curbuf for "vimbuf" and save some things */
1899 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001900
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901 if (u_inssub(lnum + 1) == OK)
1902 {
1903 ml_append(lnum, (char_u *)line, (colnr_T)0, FALSE);
1904 appended_lines_mark(lnum, 1L);
1905 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001906
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001907 /* restore curwin/curbuf and a few other things */
1908 aucmd_restbuf(&aco);
1909 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001910
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 update_curbuf(VALID);
1912 }
1913 }
1914 }
1915
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001916#ifdef __GNUC__
1917# pragma GCC diagnostic pop
1918#endif