blob: 7b45033fff80f947515cf07e547230b654e4e788 [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
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
Bram Moolenaareeb50ab2016-06-26 17:19:46 +020085# ifndef __MINGW32__
86# include "proto/if_perl.pro"
87# include "proto/if_perlsfio.pro"
88# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000089#endif
90
91/* Perl compatibility stuff. This should ensure compatibility with older
92 * versions of Perl.
93 */
94
95#ifndef PERL_VERSION
Bram Moolenaareeb50ab2016-06-26 17:19:46 +020096# include <patchlevel.h>
97# define PERL_REVISION 5
98# define PERL_VERSION PATCHLEVEL
99# define PERL_SUBVERSION SUBVERSION
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100#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
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200130# define pTHX void
131# define pTHX_
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132#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
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200150# ifndef DYNAMIC_PERL /* just generating prototypes */
151# ifdef WIN3264
Bram Moolenaare06c1882010-07-21 22:05:20 +0200152typedef int HANDLE;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200153# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200154typedef int XSINIT_t;
155typedef int XSUBADDR_t;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200156# endif
157# ifndef USE_ITHREADS
Bram Moolenaare06c1882010-07-21 22:05:20 +0200158typedef int perl_key;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200159# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200160
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200161# ifndef WIN3264
162# 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
170# define load_dll vimLoadLib
171# 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 Moolenaareeb50ab2016-06-26 17:19:46 +0200236# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000237# define Perl_sv_2iv_flags dll_Perl_sv_2iv_flags
238# define Perl_newXS_flags dll_Perl_newXS_flags
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200239# 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 Moolenaareeb50ab2016-06-26 17:19:46 +0200325# ifdef PERL5101_OR_LATER
Bram Moolenaar6b107212013-12-11 15:06:40 +0100326/* Perl-5.18 has a different Perl_croak_xs_usage signature. */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200327# 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 Moolenaareeb50ab2016-06-26 17:19:46 +0200330# 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 Moolenaareeb50ab2016-06-26 17:19:46 +0200333# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100334# 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 Moolenaareeb50ab2016-06-26 17:19:46 +0200339# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200340static I32* (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200341# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342static void (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19: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 Moolenaareeb50ab2016-06-26 17:19:46 +0200358# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200359static void (*Perl_save_strlen)(pTHX_ STRLEN* ptr);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200360# 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 Moolenaareeb50ab2016-06-26 17:19:46 +0200363# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200364static bool (*Perl_sv_2bool_flags)(pTHX_ SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19: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 Moolenaareeb50ab2016-06-26 17:19:46 +0200367# endif
368# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369static bool (*Perl_sv_2bool)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200370# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371static IV (*Perl_sv_2iv)(pTHX_ SV*);
372static SV* (*Perl_sv_2mortal)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200373# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374static char* (*Perl_sv_2pv_flags)(pTHX_ SV*, STRLEN*, I32);
375static char* (*Perl_sv_2pv_nolen)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200376# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200378# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200380# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200382# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383static void (*Perl_sv_catpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200384# endif
385# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000386static 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);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200388# 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);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200395# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396static void (*Perl_sv_setsv_flags)(pTHX_ SV*, SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200397# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398static void (*Perl_sv_setsv)(pTHX_ SV*, SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200399# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400static bool (*Perl_sv_upgrade)(pTHX_ SV*, U32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +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 Moolenaar6b107212013-12-11 15:06:40 +0100413# else
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200414/* 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 Moolenaareeb50ab2016-06-26 17:19:46 +0200419# 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*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200423# 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 Moolenaareeb50ab2016-06-26 17:19:46 +0200438# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200439# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200440# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200441static I32 (*Perl_xs_handshake)(const U32, void *, const char *, ...);
442static void (*Perl_xs_boot_epilog)(pTHX_ const U32);
Bram Moolenaard8619992014-03-12 17:08:05 +0100443# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200444
445# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
446# ifdef USE_ITHREADS
447static perl_key* dll_PL_thr_key;
448# endif
449# 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 Moolenaareeb50ab2016-06-26 17:19:46 +0200454# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200455static 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 Moolenaareeb50ab2016-06-26 17:19:46 +0200463# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200464static IV (*PerlIOBase_pushed)(pTHX_ PerlIO *, const char *, SV *, PerlIO_funcs *);
465static void (*PerlIO_define_layer)(pTHX_ PerlIO_funcs *);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200466# endif
467# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200468static void (*Perl_savetmps)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200469# 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 Moolenaareeb50ab2016-06-26 17:19:46 +0200486# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100487 {"Perl_croak_xs_usage", (PERL_PROC*)&Perl_croak_xs_usage},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200488# endif
489# ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490 {"Perl_croak_nocontext", (PERL_PROC*)&Perl_croak_nocontext},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200491# 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 Moolenaareeb50ab2016-06-26 17:19:46 +0200510# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200511 {"Perl_save_strlen", (PERL_PROC*)&Perl_save_strlen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200512# 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 Moolenaareeb50ab2016-06-26 17:19:46 +0200515# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200516 {"Perl_sv_2bool_flags", (PERL_PROC*)&Perl_sv_2bool_flags},
Bram Moolenaareeb50ab2016-06-26 17:19: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 Moolenaareeb50ab2016-06-26 17:19:46 +0200519# endif
520# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 {"Perl_sv_2bool", (PERL_PROC*)&Perl_sv_2bool},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +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},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200525# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526 {"Perl_sv_2pv_flags", (PERL_PROC*)&Perl_sv_2pv_flags},
527 {"Perl_sv_2pv_nolen", (PERL_PROC*)&Perl_sv_2pv_nolen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200528# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529 {"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200530# endif
531# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000532 {"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags},
533 {"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200534# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 {"Perl_sv_bless", (PERL_PROC*)&Perl_sv_bless},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200536# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537 {"Perl_sv_catpvn_flags", (PERL_PROC*)&Perl_sv_catpvn_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200538# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539 {"Perl_sv_catpvn", (PERL_PROC*)&Perl_sv_catpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200540# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541 {"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},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200547# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 {"Perl_sv_setsv_flags", (PERL_PROC*)&Perl_sv_setsv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200549# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550 {"Perl_sv_setsv", (PERL_PROC*)&Perl_sv_setsv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200551# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 {"Perl_sv_upgrade", (PERL_PROC*)&Perl_sv_upgrade},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200553# 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 Moolenaareeb50ab2016-06-26 17:19:46 +0200565# 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},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200570# 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 Moolenaareeb50ab2016-06-26 17:19:46 +0200585# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200586# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200587# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200588 {"Perl_xs_handshake", (PERL_PROC*)&Perl_xs_handshake},
589 {"Perl_xs_boot_epilog", (PERL_PROC*)&Perl_xs_boot_epilog},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200590# endif
591# 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 Moolenaareeb50ab2016-06-26 17:19:46 +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 Moolenaareeb50ab2016-06-26 17:19:46 +0200600# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200601 {"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 Moolenaareeb50ab2016-06-26 17:19:46 +0200609# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200610 {"PerlIOBase_pushed", (PERL_PROC*)&PerlIOBase_pushed},
611 {"PerlIO_define_layer", (PERL_PROC*)&PerlIO_define_layer},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200612# endif
613# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200614 {"Perl_savetmps", (PERL_PROC*)&Perl_savetmps},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200615# 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 Moolenaareeb50ab2016-06-26 17:19:46 +0200622# 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 Moolenaareeb50ab2016-06-26 17:19:46 +0200634# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100635
Bram Moolenaarfa4161c2017-06-10 15:46:23 +0200636/* perl-5.26 also needs S_TOPMARK and S_POPMARK. */
637# if (PERL_REVISION == 5) && (PERL_VERSION >= 26)
638PERL_STATIC_INLINE I32
639S_TOPMARK(pTHX)
640{
641 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log,
642 "MARK top %p %" IVdf "\n",
643 PL_markstack_ptr,
644 (IV)*PL_markstack_ptr)));
645 return *PL_markstack_ptr;
646}
647
648PERL_STATIC_INLINE I32
649S_POPMARK(pTHX)
650{
651 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log,
652 "MARK pop %p %" IVdf "\n",
653 (PL_markstack_ptr-1),
654 (IV)*(PL_markstack_ptr-1))));
655 assert((PL_markstack_ptr > PL_markstack) || !"MARK underflow");
656 return *PL_markstack_ptr--;
657}
658# endif
659
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660/*
661 * Make all runtime-links of perl.
662 *
Bram Moolenaar364ab2f2013-08-02 20:05:32 +0200663 * 1. Get module handle using dlopen() or vimLoadLib().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 * 2. Get pointer to perl function by GetProcAddress.
665 * 3. Repeat 2, until get all functions will be used.
666 *
667 * Parameter 'libname' provides name of DLL.
668 * Return OK or FAIL.
669 */
670 static int
671perl_runtime_link_init(char *libname, int verbose)
672{
673 int i;
674
675 if (hPerlLib != NULL)
676 return OK;
Bram Moolenaare06c1882010-07-21 22:05:20 +0200677 if ((hPerlLib = load_dll(libname)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 {
679 if (verbose)
680 EMSG2(_("E370: Could not load library %s"), libname);
681 return FAIL;
682 }
683 for (i = 0; perl_funcname_table[i].ptr; ++i)
684 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200685 if (!(*perl_funcname_table[i].ptr = symbol_from_dll(hPerlLib,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686 perl_funcname_table[i].name)))
687 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200688 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689 hPerlLib = NULL;
690 if (verbose)
691 EMSG2(_(e_loadfunc), perl_funcname_table[i].name);
692 return FAIL;
693 }
694 }
695 return OK;
696}
697
698/*
699 * If runtime-link-perl(DLL) was loaded successfully, return TRUE.
700 * There were no DLL loaded, return FALSE.
701 */
702 int
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100703perl_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704{
Bram Moolenaar25e4fcd2016-01-09 14:57:47 +0100705 return perl_runtime_link_init((char *)p_perldll, verbose) == OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706}
707#endif /* DYNAMIC_PERL */
708
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200709#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
710static void vim_IOLayer_init(void);
711#endif
712
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713/*
714 * perl_init(): initialize perl interpreter
715 * We have to call perl_parse to initialize some structures,
716 * there's nothing to actually parse.
717 */
718 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100719perl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000720{
Bram Moolenaarc236c162008-07-13 17:41:49 +0000721 char *bootargs[] = { "VI", NULL };
722 int argc = 3;
723 static char *argv[] = { "", "-e", "" };
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724
Bram Moolenaarc236c162008-07-13 17:41:49 +0000725#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000726 Perl_sys_init(&argc, (char***)&argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000727#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728 perl_interp = perl_alloc();
729 perl_construct(perl_interp);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000730 perl_parse(perl_interp, xs_init, argc, argv, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731 perl_call_argv("VIM::bootstrap", (long)G_DISCARD, bootargs);
732 VIM_init();
733#ifdef USE_SFIO
734 sfdisc(PerlIO_stdout(), sfdcnewvim());
735 sfdisc(PerlIO_stderr(), sfdcnewvim());
736 sfsetbuf(PerlIO_stdout(), NULL, 0);
737 sfsetbuf(PerlIO_stderr(), NULL, 0);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200738#elif defined(PERLIO_LAYERS)
739 vim_IOLayer_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740#endif
741}
742
743/*
744 * perl_end(): clean up after ourselves
745 */
746 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100747perl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748{
749 if (perl_interp)
750 {
751 perl_run(perl_interp);
752 perl_destruct(perl_interp);
753 perl_free(perl_interp);
754 perl_interp = NULL;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000755#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100756 Perl_sys_term();
Bram Moolenaarc236c162008-07-13 17:41:49 +0000757#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 }
759#ifdef DYNAMIC_PERL
760 if (hPerlLib)
761 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200762 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 hPerlLib = NULL;
764 }
765#endif
766}
767
768/*
769 * msg_split(): send a message to the message handling routines
770 * split at '\n' first though.
771 */
772 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100773msg_split(
774 char_u *s,
775 int attr) /* highlighting attributes */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776{
777 char *next;
778 char *token = (char *)s;
779
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000780 while ((next = strchr(token, '\n')) && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 {
782 *next++ = '\0'; /* replace \n with \0 */
783 msg_attr((char_u *)token, attr);
784 token = next;
785 }
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000786 if (*token && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787 msg_attr((char_u *)token, attr);
788}
789
790#ifndef FEAT_EVAL
791/*
792 * This stub is needed because an "#ifdef FEAT_EVAL" around Eval() doesn't
793 * work properly.
794 */
795 char_u *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100796eval_to_string(
797 char_u *arg UNUSED,
798 char_u **nextcmd UNUSED,
799 int dolist UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800{
801 return NULL;
802}
803#endif
804
805/*
806 * Create a new reference to an SV pointing to the SCR structure
Bram Moolenaare344bea2005-09-01 20:46:49 +0000807 * The b_perl_private/w_perl_private part of the SCR structure points to the
808 * SV, so there can only be one such SV for a particular SCR structure. When
809 * the last reference has gone (DESTROY is called),
810 * b_perl_private/w_perl_private is reset; When the screen goes away before
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 * all references are gone, the value of the SV is reset;
812 * any subsequent use of any of those reference will produce
813 * a warning. (see typemap)
814 */
Bram Moolenaare344bea2005-09-01 20:46:49 +0000815
816 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100817newWINrv(SV *rv, win_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000818{
819 sv_upgrade(rv, SVt_RV);
820 if (ptr->w_perl_private == NULL)
821 {
822 ptr->w_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100823 sv_setiv(ptr->w_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000824 }
825 else
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200826 SvREFCNT_inc_void_NN(ptr->w_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000827 SvRV(rv) = ptr->w_perl_private;
828 SvROK_on(rv);
829 return sv_bless(rv, gv_stashpv("VIWIN", TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830}
831
Bram Moolenaare344bea2005-09-01 20:46:49 +0000832 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100833newBUFrv(SV *rv, buf_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000834{
835 sv_upgrade(rv, SVt_RV);
836 if (ptr->b_perl_private == NULL)
837 {
838 ptr->b_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100839 sv_setiv(ptr->b_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000840 }
841 else
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200842 SvREFCNT_inc_void_NN(ptr->b_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000843 SvRV(rv) = ptr->b_perl_private;
844 SvROK_on(rv);
845 return sv_bless(rv, gv_stashpv("VIBUF", TRUE));
846}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847
848/*
849 * perl_win_free
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200850 * Remove all references to the window to be destroyed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851 */
852 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100853perl_win_free(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854{
Bram Moolenaare344bea2005-09-01 20:46:49 +0000855 if (wp->w_perl_private)
856 sv_setiv((SV *)wp->w_perl_private, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 return;
858}
859
860 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100861perl_buf_free(buf_T *bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862{
Bram Moolenaare344bea2005-09-01 20:46:49 +0000863 if (bp->b_perl_private)
864 sv_setiv((SV *)bp->b_perl_private, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 return;
866}
867
868#ifndef PROTO
869# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
870I32 cur_val(pTHX_ IV iv, SV *sv);
871# else
872I32 cur_val(IV iv, SV *sv);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200873# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874
875/*
876 * Handler for the magic variables $main::curwin and $main::curbuf.
877 * The handler is put into the magic vtbl for these variables.
878 * (This is effectively a C-level equivalent of a tied variable).
879 * There is no "set" function as the variables are read-only.
880 */
881# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
882I32 cur_val(pTHX_ IV iv, SV *sv)
883# else
884I32 cur_val(IV iv, SV *sv)
885# endif
886{
887 SV *rv;
888 if (iv == 0)
889 rv = newWINrv(newSV(0), curwin);
890 else
891 rv = newBUFrv(newSV(0), curbuf);
892 sv_setsv(sv, rv);
Bram Moolenaar95509e12016-04-15 21:16:11 +0200893 SvREFCNT_dec(SvRV(rv));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 return 0;
895}
896#endif /* !PROTO */
897
898struct ufuncs cw_funcs = { cur_val, 0, 0 };
899struct ufuncs cb_funcs = { cur_val, 0, 1 };
900
901/*
902 * VIM_init(): Vim-specific initialisation.
903 * Make the magical main::curwin and main::curbuf variables
904 */
905 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100906VIM_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907{
908 static char cw[] = "main::curwin";
909 static char cb[] = "main::curbuf";
910 SV *sv;
911
912 sv = perl_get_sv(cw, TRUE);
913 sv_magic(sv, NULL, 'U', (char *)&cw_funcs, sizeof(cw_funcs));
914 SvREADONLY_on(sv);
915
916 sv = perl_get_sv(cb, TRUE);
917 sv_magic(sv, NULL, 'U', (char *)&cb_funcs, sizeof(cb_funcs));
918 SvREADONLY_on(sv);
919
920 /*
921 * Setup the Safe compartment.
922 * It shouldn't be a fatal error if the Safe module is missing.
923 * XXX: Only shares the 'Msg' routine (which has to be called
924 * like 'Msg(...)').
925 */
926 (void)perl_eval_pv( "if ( eval( 'require Safe' ) ) { $VIM::safe = Safe->new(); $VIM::safe->share_from( 'VIM', ['Msg'] ); }", G_DISCARD | G_VOID );
927
928}
929
930#ifdef DYNAMIC_PERL
931static char *e_noperl = N_("Sorry, this command is disabled: the Perl library could not be loaded.");
932#endif
933
934/*
935 * ":perl"
936 */
937 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100938ex_perl(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939{
940 char *err;
941 char *script;
942 STRLEN length;
943 SV *sv;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200944#ifdef HAVE_SANDBOX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945 SV *safe;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200946#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947
948 script = (char *)script_get(eap, eap->arg);
949 if (eap->skip)
950 {
951 vim_free(script);
952 return;
953 }
954
955 if (perl_interp == NULL)
956 {
957#ifdef DYNAMIC_PERL
958 if (!perl_enabled(TRUE))
959 {
960 EMSG(_(e_noperl));
961 vim_free(script);
962 return;
963 }
964#endif
965 perl_init();
966 }
967
968 {
969 dSP;
970 ENTER;
971 SAVETMPS;
972
973 if (script == NULL)
974 sv = newSVpv((char *)eap->arg, 0);
975 else
976 {
977 sv = newSVpv(script, 0);
978 vim_free(script);
979 }
980
981#ifdef HAVE_SANDBOX
982 if (sandbox)
983 {
Bram Moolenaara1711622011-07-27 14:15:46 +0200984 safe = perl_get_sv("VIM::safe", FALSE);
Bram Moolenaar3f947ea2009-07-14 14:04:54 +0000985# ifndef MAKE_TEST /* avoid a warning for unreachable code */
Bram Moolenaar954e8c52009-11-11 13:45:33 +0000986 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 EMSG(_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
988 else
Bram Moolenaar3f947ea2009-07-14 14:04:54 +0000989# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 {
991 PUSHMARK(SP);
992 XPUSHs(safe);
993 XPUSHs(sv);
994 PUTBACK;
995 perl_call_method("reval", G_DISCARD);
996 }
997 }
998 else
999#endif
1000 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1001
1002 SvREFCNT_dec(sv);
1003
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001004 err = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005
1006 FREETMPS;
1007 LEAVE;
1008
1009 if (!length)
1010 return;
1011
1012 msg_split((char_u *)err, highlight_attr[HLF_E]);
1013 return;
1014 }
1015}
1016
1017 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001018replace_line(linenr_T *line, linenr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019{
1020 char *str;
1021
1022 if (SvOK(GvSV(PL_defgv)))
1023 {
1024 str = SvPV(GvSV(PL_defgv), PL_na);
1025 ml_replace(*line, (char_u *)str, 1);
1026 changed_bytes(*line, 0);
1027 }
1028 else
1029 {
1030 ml_delete(*line, FALSE);
1031 deleted_lines_mark(*line, 1L);
1032 --(*end);
1033 --(*line);
1034 }
1035 return OK;
1036}
1037
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001038static struct ref_map_S {
1039 void *vim_ref;
1040 SV *perl_ref;
1041 struct ref_map_S *next;
1042} *ref_map = NULL;
1043
1044 static void
1045ref_map_free(void)
1046{
1047 struct ref_map_S *tofree;
1048 struct ref_map_S *refs = ref_map;
1049
1050 while (refs) {
1051 tofree = refs;
1052 refs = refs->next;
1053 vim_free(tofree);
1054 }
1055 ref_map = NULL;
1056}
1057
1058 static struct ref_map_S *
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001059ref_map_find_SV(SV *const sv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001060{
1061 struct ref_map_S *refs = ref_map;
1062 int count = 350;
1063
1064 while (refs) {
1065 if (refs->perl_ref == sv)
1066 break;
1067 refs = refs->next;
1068 count--;
1069 }
1070
1071 if (!refs && count > 0) {
1072 refs = (struct ref_map_S *)alloc(sizeof(struct ref_map_S));
1073 if (!refs)
1074 return NULL;
1075 refs->perl_ref = sv;
1076 refs->vim_ref = NULL;
1077 refs->next = ref_map;
1078 ref_map = refs;
1079 }
1080
1081 return refs;
1082}
1083
1084 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001085perl_to_vim(SV *sv, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001086{
1087 if (SvROK(sv))
1088 sv = SvRV(sv);
1089
1090 switch (SvTYPE(sv)) {
1091 case SVt_NULL:
1092 break;
1093 case SVt_NV: /* float */
1094#ifdef FEAT_FLOAT
1095 rettv->v_type = VAR_FLOAT;
1096 rettv->vval.v_float = SvNV(sv);
1097 break;
1098#endif
1099 case SVt_IV: /* integer */
1100 if (!SvROK(sv)) { /* references should be string */
1101 rettv->vval.v_number = SvIV(sv);
1102 break;
1103 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02001104 /* FALLTHROUGH */
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001105 case SVt_PV: /* string */
1106 {
1107 size_t len = 0;
1108 char * str_from = SvPV(sv, len);
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001109 char_u *str_to = (char_u*)alloc(
1110 (unsigned)(sizeof(char_u) * (len + 1)));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001111
1112 if (str_to) {
1113 str_to[len] = '\0';
1114
1115 while (len--) {
1116 if (str_from[len] == '\0')
1117 str_to[len] = '\n';
1118 else
1119 str_to[len] = str_from[len];
1120 }
1121 }
1122
1123 rettv->v_type = VAR_STRING;
1124 rettv->vval.v_string = str_to;
1125 break;
1126 }
1127 case SVt_PVAV: /* list */
1128 {
1129 SSize_t size;
1130 listitem_T * item;
1131 SV ** item2;
1132 list_T * list;
1133 struct ref_map_S * refs;
1134
1135 if ((refs = ref_map_find_SV(sv)) == NULL)
1136 return FAIL;
1137
1138 if (refs->vim_ref)
1139 list = (list_T *) refs->vim_ref;
1140 else
1141 {
1142 if ((list = list_alloc()) == NULL)
1143 return FAIL;
1144 refs->vim_ref = list;
1145
1146 for (size = av_len((AV*)sv); size >= 0; size--)
1147 {
1148 if ((item = listitem_alloc()) == NULL)
1149 break;
1150
1151 item->li_tv.v_type = VAR_NUMBER;
1152 item->li_tv.v_lock = 0;
1153 item->li_tv.vval.v_number = 0;
1154 list_insert(list, item, list->lv_first);
1155
1156 item2 = av_fetch((AV *)sv, size, 0);
1157
1158 if (item2 == NULL || *item2 == NULL ||
Bram Moolenaard99df422016-01-29 23:20:40 +01001159 perl_to_vim(*item2, &item->li_tv) == FAIL)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001160 break;
1161 }
1162 }
1163
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001164 rettv_list_set(rettv, list);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001165 break;
1166 }
1167 case SVt_PVHV: /* dictionary */
1168 {
1169 HE * entry;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001170 I32 key_len;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001171 char * key;
1172 dictitem_T * item;
1173 SV * item2;
1174 dict_T * dict;
1175 struct ref_map_S * refs;
1176
1177 if ((refs = ref_map_find_SV(sv)) == NULL)
1178 return FAIL;
1179
1180 if (refs->vim_ref)
1181 dict = (dict_T *) refs->vim_ref;
1182 else
1183 {
1184
1185 if ((dict = dict_alloc()) == NULL)
1186 return FAIL;
1187 refs->vim_ref = dict;
1188
1189 hv_iterinit((HV *)sv);
1190
1191 for (entry = hv_iternext((HV *)sv); entry; entry = hv_iternext((HV *)sv))
1192 {
1193 key_len = 0;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001194 key = hv_iterkey(entry, &key_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001195
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001196 if (!key || !key_len || strlen(key) < (size_t)key_len) {
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001197 EMSG2("Malformed key Dictionary '%s'", key && *key ? key : "(empty)");
1198 break;
1199 }
1200
1201 if ((item = dictitem_alloc((char_u *)key)) == NULL)
1202 break;
1203
1204 item->di_tv.v_type = VAR_NUMBER;
1205 item->di_tv.v_lock = 0;
1206 item->di_tv.vval.v_number = 0;
1207
1208 if (dict_add(dict, item) == FAIL) {
1209 dictitem_free(item);
1210 break;
1211 }
1212 item2 = hv_iterval((HV *)sv, entry);
1213 if (item2 == NULL || perl_to_vim(item2, &item->di_tv) == FAIL)
1214 break;
1215 }
1216 }
1217
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001218 rettv_dict_set(rettv, dict);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001219 break;
1220 }
1221 default: /* not convertible */
1222 {
1223 char *val = SvPV_nolen(sv);
1224 rettv->v_type = VAR_STRING;
1225 rettv->vval.v_string = val ? vim_strsave((char_u *)val) : NULL;
1226 break;
1227 }
1228 }
1229 return OK;
1230}
1231
1232/*
1233 * "perleval()"
1234 */
1235 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001236do_perleval(char_u *str, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001237{
1238 char *err = NULL;
1239 STRLEN err_len = 0;
1240 SV *sv = NULL;
1241#ifdef HAVE_SANDBOX
1242 SV *safe;
1243#endif
1244
1245 if (perl_interp == NULL)
1246 {
1247#ifdef DYNAMIC_PERL
1248 if (!perl_enabled(TRUE))
1249 {
1250 EMSG(_(e_noperl));
1251 return;
1252 }
1253#endif
1254 perl_init();
1255 }
1256
1257 {
1258 dSP;
1259 ENTER;
1260 SAVETMPS;
1261
1262#ifdef HAVE_SANDBOX
1263 if (sandbox)
1264 {
1265 safe = get_sv("VIM::safe", FALSE);
1266# ifndef MAKE_TEST /* avoid a warning for unreachable code */
1267 if (safe == NULL || !SvTRUE(safe))
1268 EMSG(_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
1269 else
1270# endif
1271 {
1272 sv = newSVpv((char *)str, 0);
1273 PUSHMARK(SP);
1274 XPUSHs(safe);
1275 XPUSHs(sv);
1276 PUTBACK;
1277 call_method("reval", G_SCALAR);
1278 SPAGAIN;
1279 SvREFCNT_dec(sv);
1280 sv = POPs;
1281 }
1282 }
1283 else
1284#endif /* HAVE_SANDBOX */
1285 sv = eval_pv((char *)str, 0);
1286
1287 if (sv) {
1288 perl_to_vim(sv, rettv);
1289 ref_map_free();
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001290 err = SvPV(GvSV(PL_errgv), err_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001291 }
1292 PUTBACK;
1293 FREETMPS;
1294 LEAVE;
1295 }
1296 if (err_len)
1297 msg_split((char_u *)err, highlight_attr[HLF_E]);
1298}
1299
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300/*
1301 * ":perldo".
1302 */
1303 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001304ex_perldo(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305{
1306 STRLEN length;
1307 SV *sv;
1308 char *str;
1309 linenr_T i;
Bram Moolenaar85b57432017-01-29 22:59:12 +01001310 buf_T *was_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001312 if (BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 return;
1314
1315 if (perl_interp == NULL)
1316 {
1317#ifdef DYNAMIC_PERL
1318 if (!perl_enabled(TRUE))
1319 {
1320 EMSG(_(e_noperl));
1321 return;
1322 }
1323#endif
1324 perl_init();
1325 }
1326 {
1327 dSP;
1328 length = strlen((char *)eap->arg);
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001329 sv = newSV(length + sizeof("sub VIM::perldo {") - 1 + 1);
1330 sv_setpvn(sv, "sub VIM::perldo {", sizeof("sub VIM::perldo {") - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 sv_catpvn(sv, (char *)eap->arg, length);
1332 sv_catpvn(sv, "}", 1);
1333 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1334 SvREFCNT_dec(sv);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001335 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 if (length)
1337 goto err;
1338
1339 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
1340 return;
1341
1342 ENTER;
1343 SAVETMPS;
1344 for (i = eap->line1; i <= eap->line2; i++)
1345 {
Bram Moolenaar85b57432017-01-29 22:59:12 +01001346 /* Check the line number, the command my have deleted lines. */
1347 if (i > curbuf->b_ml.ml_line_count)
1348 break;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001349 sv_setpv(GvSV(PL_defgv), (char *)ml_get(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 PUSHMARK(sp);
1351 perl_call_pv("VIM::perldo", G_SCALAR | G_EVAL);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001352 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar85b57432017-01-29 22:59:12 +01001353 if (length || curbuf != was_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 break;
1355 SPAGAIN;
1356 if (SvTRUEx(POPs))
1357 {
1358 if (replace_line(&i, &eap->line2) != OK)
1359 {
1360 PUTBACK;
1361 break;
1362 }
1363 }
1364 PUTBACK;
1365 }
1366 FREETMPS;
1367 LEAVE;
1368 check_cursor();
1369 update_screen(NOT_VALID);
1370 if (!length)
1371 return;
1372
1373err:
1374 msg_split((char_u *)str, highlight_attr[HLF_E]);
1375 return;
1376 }
1377}
1378
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001379#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
1380typedef struct {
1381 struct _PerlIO base;
1382 int attr;
1383} PerlIOVim;
1384
1385 static IV
1386PerlIOVim_pushed(pTHX_ PerlIO *f, const char *mode,
1387 SV *arg, PerlIO_funcs *tab)
1388{
1389 PerlIOVim *s = PerlIOSelf(f, PerlIOVim);
1390 s->attr = 0;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001391 if (arg && SvPOK(arg))
1392 s->attr = syn_name2attr((char_u *)SvPV_nolen(arg));
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001393 return PerlIOBase_pushed(aTHX_ f, mode, (SV *)NULL, tab);
1394}
1395
1396 static SSize_t
1397PerlIOVim_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
1398{
1399 char_u *str;
1400 PerlIOVim * s = PerlIOSelf(f, PerlIOVim);
1401
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001402 str = vim_strnsave((char_u *)vbuf, (int)count);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001403 if (str == NULL)
1404 return 0;
1405 msg_split((char_u *)str, s->attr);
1406 vim_free(str);
1407
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001408 return (SSize_t)count;
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001409}
1410
1411static PERLIO_FUNCS_DECL(PerlIO_Vim) = {
1412 sizeof(PerlIO_funcs),
1413 "Vim",
1414 sizeof(PerlIOVim),
1415 PERLIO_K_DUMMY, /* flags */
1416 PerlIOVim_pushed,
1417 NULL, /* popped */
1418 NULL, /* open */
1419 NULL, /* binmode */
1420 NULL, /* arg */
1421 NULL, /* fileno */
1422 NULL, /* dup */
1423 NULL, /* read */
1424 NULL, /* unread */
1425 PerlIOVim_write,
1426 NULL, /* seek */
1427 NULL, /* tell */
1428 NULL, /* close */
1429 NULL, /* flush */
1430 NULL, /* fill */
1431 NULL, /* eof */
1432 NULL, /* error */
1433 NULL, /* clearerr */
1434 NULL, /* setlinebuf */
1435 NULL, /* get_base */
1436 NULL, /* get_bufsiz */
1437 NULL, /* get_ptr */
1438 NULL, /* get_cnt */
1439 NULL /* set_ptrcnt */
1440};
1441
1442/* Use Vim routine for print operator */
1443 static void
1444vim_IOLayer_init(void)
1445{
1446 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_Vim));
1447 (void)eval_pv( "binmode(STDOUT, ':Vim')"
1448 " && binmode(STDERR, ':Vim(ErrorMsg)');", 0);
1449}
1450#endif /* PERLIO_LAYERS && !USE_SFIO */
1451
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452XS(boot_VIM);
1453
1454 static void
1455xs_init(pTHX)
1456{
1457 char *file = __FILE__;
1458
1459 /* DynaLoader is a special case */
1460 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
1461 newXS("VIM::bootstrap", boot_VIM, file);
1462}
1463
1464typedef win_T * VIWIN;
1465typedef buf_T * VIBUF;
1466
1467MODULE = VIM PACKAGE = VIM
1468
1469void
1470Msg(text, hl=NULL)
1471 char *text;
1472 char *hl;
1473
1474 PREINIT:
1475 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476
1477 PPCODE:
1478 if (text != NULL)
1479 {
1480 attr = 0;
1481 if (hl != NULL)
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001482 attr = syn_name2attr((char_u *)hl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 msg_split((char_u *)text, attr);
1484 }
1485
1486void
1487SetOption(line)
1488 char *line;
1489
1490 PPCODE:
1491 if (line != NULL)
1492 do_set((char_u *)line, 0);
1493 update_screen(NOT_VALID);
1494
1495void
1496DoCommand(line)
1497 char *line;
1498
1499 PPCODE:
1500 if (line != NULL)
1501 do_cmdline_cmd((char_u *)line);
1502
1503void
1504Eval(str)
1505 char *str;
1506
1507 PREINIT:
1508 char_u *value;
1509 PPCODE:
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001510 value = eval_to_string((char_u *)str, (char_u **)0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511 if (value == NULL)
1512 {
1513 XPUSHs(sv_2mortal(newSViv(0)));
1514 XPUSHs(sv_2mortal(newSVpv("", 0)));
1515 }
1516 else
1517 {
1518 XPUSHs(sv_2mortal(newSViv(1)));
1519 XPUSHs(sv_2mortal(newSVpv((char *)value, 0)));
1520 vim_free(value);
1521 }
1522
1523void
1524Buffers(...)
1525
1526 PREINIT:
1527 buf_T *vimbuf;
1528 int i, b;
1529
1530 PPCODE:
1531 if (items == 0)
1532 {
1533 if (GIMME == G_SCALAR)
1534 {
1535 i = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02001536 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 ++i;
1538
1539 XPUSHs(sv_2mortal(newSViv(i)));
1540 }
1541 else
1542 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001543 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 XPUSHs(newBUFrv(newSV(0), vimbuf));
1545 }
1546 }
1547 else
1548 {
1549 for (i = 0; i < items; i++)
1550 {
1551 SV *sv = ST(i);
1552 if (SvIOK(sv))
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001553 b = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 else
1555 {
1556 char_u *pat;
1557 STRLEN len;
1558
1559 pat = (char_u *)SvPV(sv, len);
1560 ++emsg_off;
Bram Moolenaar16896a12018-03-06 12:25:56 +01001561 b = buflist_findpat(pat, pat + len, TRUE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 --emsg_off;
1563 }
1564
1565 if (b >= 0)
1566 {
1567 vimbuf = buflist_findnr(b);
1568 if (vimbuf)
1569 XPUSHs(newBUFrv(newSV(0), vimbuf));
1570 }
1571 }
1572 }
1573
1574void
1575Windows(...)
1576
1577 PREINIT:
1578 win_T *vimwin;
1579 int i, w;
1580
1581 PPCODE:
1582 if (items == 0)
1583 {
1584 if (GIMME == G_SCALAR)
1585 XPUSHs(sv_2mortal(newSViv(win_count())));
1586 else
1587 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001588 FOR_ALL_WINDOWS(vimwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 XPUSHs(newWINrv(newSV(0), vimwin));
1590 }
1591 }
1592 else
1593 {
1594 for (i = 0; i < items; i++)
1595 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001596 w = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 vimwin = win_find_nr(w);
1598 if (vimwin)
1599 XPUSHs(newWINrv(newSV(0), vimwin));
1600 }
1601 }
1602
1603MODULE = VIM PACKAGE = VIWIN
1604
1605void
1606DESTROY(win)
1607 VIWIN win
1608
1609 CODE:
1610 if (win_valid(win))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001611 win->w_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612
1613SV *
1614Buffer(win)
1615 VIWIN win
1616
1617 CODE:
1618 if (!win_valid(win))
1619 win = curwin;
1620 RETVAL = newBUFrv(newSV(0), win->w_buffer);
1621 OUTPUT:
1622 RETVAL
1623
1624void
1625SetHeight(win, height)
1626 VIWIN win
1627 int height;
1628
1629 PREINIT:
1630 win_T *savewin;
1631
1632 PPCODE:
1633 if (!win_valid(win))
1634 win = curwin;
1635 savewin = curwin;
1636 curwin = win;
1637 win_setheight(height);
1638 curwin = savewin;
1639
1640void
Bram Moolenaar864733a2016-04-02 14:18:01 +02001641Cursor(win, ...)
1642 VIWIN win
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643
1644 PPCODE:
Bram Moolenaara1711622011-07-27 14:15:46 +02001645 if (items == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 {
1647 EXTEND(sp, 2);
1648 if (!win_valid(win))
1649 win = curwin;
1650 PUSHs(sv_2mortal(newSViv(win->w_cursor.lnum)));
1651 PUSHs(sv_2mortal(newSViv(win->w_cursor.col)));
1652 }
Bram Moolenaara1711622011-07-27 14:15:46 +02001653 else if (items == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 {
1655 int lnum, col;
1656
1657 if (!win_valid(win))
1658 win = curwin;
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001659 lnum = (int) SvIV(ST(1));
1660 col = (int) SvIV(ST(2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 win->w_cursor.lnum = lnum;
1662 win->w_cursor.col = col;
1663 check_cursor(); /* put cursor on an existing line */
1664 update_screen(NOT_VALID);
1665 }
1666
1667MODULE = VIM PACKAGE = VIBUF
1668
1669void
1670DESTROY(vimbuf)
1671 VIBUF vimbuf;
1672
1673 CODE:
1674 if (buf_valid(vimbuf))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001675 vimbuf->b_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676
1677void
1678Name(vimbuf)
1679 VIBUF vimbuf;
1680
1681 PPCODE:
1682 if (!buf_valid(vimbuf))
1683 vimbuf = curbuf;
1684 /* No file name returns an empty string */
1685 if (vimbuf->b_fname == NULL)
1686 XPUSHs(sv_2mortal(newSVpv("", 0)));
1687 else
1688 XPUSHs(sv_2mortal(newSVpv((char *)vimbuf->b_fname, 0)));
1689
1690void
1691Number(vimbuf)
1692 VIBUF vimbuf;
1693
1694 PPCODE:
1695 if (!buf_valid(vimbuf))
1696 vimbuf = curbuf;
1697 XPUSHs(sv_2mortal(newSViv(vimbuf->b_fnum)));
1698
1699void
1700Count(vimbuf)
1701 VIBUF vimbuf;
1702
1703 PPCODE:
1704 if (!buf_valid(vimbuf))
1705 vimbuf = curbuf;
1706 XPUSHs(sv_2mortal(newSViv(vimbuf->b_ml.ml_line_count)));
1707
1708void
1709Get(vimbuf, ...)
1710 VIBUF vimbuf;
1711
1712 PREINIT:
1713 char_u *line;
1714 int i;
1715 long lnum;
1716 PPCODE:
1717 if (buf_valid(vimbuf))
1718 {
1719 for (i = 1; i < items; i++)
1720 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001721 lnum = (long) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1723 {
1724 line = ml_get_buf(vimbuf, lnum, FALSE);
1725 XPUSHs(sv_2mortal(newSVpv((char *)line, 0)));
1726 }
1727 }
1728 }
1729
1730void
1731Set(vimbuf, ...)
1732 VIBUF vimbuf;
1733
1734 PREINIT:
1735 int i;
1736 long lnum;
1737 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 PPCODE:
1739 if (buf_valid(vimbuf))
1740 {
1741 if (items < 3)
1742 croak("Usage: VIBUF::Set(vimbuf, lnum, @lines)");
1743
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001744 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 for(i = 2; i < items; i++, lnum++)
1746 {
1747 line = SvPV(ST(i),PL_na);
1748 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1749 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001750 aco_save_T aco;
1751
1752 /* set curwin/curbuf for "vimbuf" and save some things */
1753 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001754
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 if (u_savesub(lnum) == OK)
1756 {
1757 ml_replace(lnum, (char_u *)line, TRUE);
1758 changed_bytes(lnum, 0);
1759 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001760
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001761 /* restore curwin/curbuf and a few other things */
1762 aucmd_restbuf(&aco);
1763 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 }
1765 }
1766 }
1767
1768void
1769Delete(vimbuf, ...)
1770 VIBUF vimbuf;
1771
1772 PREINIT:
1773 long i, lnum = 0, count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 PPCODE:
1775 if (buf_valid(vimbuf))
1776 {
1777 if (items == 2)
1778 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001779 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 count = 1;
1781 }
1782 else if (items == 3)
1783 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001784 lnum = (long) SvIV(ST(1));
1785 count = (long) 1 + SvIV(ST(2)) - lnum;
Bram Moolenaara1711622011-07-27 14:15:46 +02001786 if (count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787 count = 1;
Bram Moolenaara1711622011-07-27 14:15:46 +02001788 if (count < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 {
1790 lnum -= count;
1791 count = -count;
1792 }
1793 }
1794 if (items >= 2)
1795 {
1796 for (i = 0; i < count; i++)
1797 {
1798 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1799 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001800 aco_save_T aco;
1801
1802 /* set curwin/curbuf for "vimbuf" and save some things */
1803 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001804
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 if (u_savedel(lnum, 1) == OK)
1806 {
1807 ml_delete(lnum, 0);
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00001808 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 deleted_lines_mark(lnum, 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001811
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001812 /* restore curwin/curbuf and a few other things */
1813 aucmd_restbuf(&aco);
1814 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001815
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 update_curbuf(VALID);
1817 }
1818 }
1819 }
1820 }
1821
1822void
1823Append(vimbuf, ...)
1824 VIBUF vimbuf;
1825
1826 PREINIT:
1827 int i;
1828 long lnum;
1829 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 PPCODE:
1831 if (buf_valid(vimbuf))
1832 {
1833 if (items < 3)
1834 croak("Usage: VIBUF::Append(vimbuf, lnum, @lines)");
1835
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001836 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837 for (i = 2; i < items; i++, lnum++)
1838 {
1839 line = SvPV(ST(i),PL_na);
1840 if (lnum >= 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1841 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001842 aco_save_T aco;
1843
1844 /* set curwin/curbuf for "vimbuf" and save some things */
1845 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001846
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 if (u_inssub(lnum + 1) == OK)
1848 {
1849 ml_append(lnum, (char_u *)line, (colnr_T)0, FALSE);
1850 appended_lines_mark(lnum, 1L);
1851 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001852
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001853 /* restore curwin/curbuf and a few other things */
1854 aucmd_restbuf(&aco);
1855 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001856
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 update_curbuf(VALID);
1858 }
1859 }
1860 }
1861
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001862#ifdef __GNUC__
1863# pragma GCC diagnostic pop
1864#endif