blob: 9fd219691ef09b6025593f5743ab5f2e96aee5ba [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
Bram Moolenaar578333b2018-07-22 07:31:09 +0200202# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
203# define Perl_mg_get dll_Perl_mg_get
204# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205# define Perl_newXS dll_Perl_newXS
206# define Perl_newSV dll_Perl_newSV
207# define Perl_newSViv dll_Perl_newSViv
208# define Perl_newSVpv dll_Perl_newSVpv
209# define Perl_pop_scope dll_Perl_pop_scope
210# define Perl_push_scope dll_Perl_push_scope
211# define Perl_save_int dll_Perl_save_int
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200212# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
213# define Perl_save_strlen dll_Perl_save_strlen
214# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215# define Perl_stack_grow dll_Perl_stack_grow
216# define Perl_set_context dll_Perl_set_context
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200217# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200218# define Perl_sv_2bool_flags dll_Perl_sv_2bool_flags
219# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
220# define Perl_xs_apiversion_bootcheck dll_Perl_xs_apiversion_bootcheck
221# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200222# else
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200223# define Perl_sv_2bool dll_Perl_sv_2bool
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200224# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225# define Perl_sv_2iv dll_Perl_sv_2iv
226# define Perl_sv_2mortal dll_Perl_sv_2mortal
227# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
228# define Perl_sv_2pv_flags dll_Perl_sv_2pv_flags
229# define Perl_sv_2pv_nolen dll_Perl_sv_2pv_nolen
230# else
231# define Perl_sv_2pv dll_Perl_sv_2pv
232# endif
233# define Perl_sv_bless dll_Perl_sv_bless
234# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
235# define Perl_sv_catpvn_flags dll_Perl_sv_catpvn_flags
236# else
237# define Perl_sv_catpvn dll_Perl_sv_catpvn
238# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200239# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000240# define Perl_sv_2iv_flags dll_Perl_sv_2iv_flags
241# define Perl_newXS_flags dll_Perl_newXS_flags
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200242# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243# define Perl_sv_free dll_Perl_sv_free
Bram Moolenaarccf22172008-09-01 15:56:45 +0000244# if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
245# define Perl_sv_free2 dll_Perl_sv_free2
246# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247# define Perl_sv_isa dll_Perl_sv_isa
248# define Perl_sv_magic dll_Perl_sv_magic
249# define Perl_sv_setiv dll_Perl_sv_setiv
250# define Perl_sv_setpv dll_Perl_sv_setpv
251# define Perl_sv_setpvn dll_Perl_sv_setpvn
252# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
253# define Perl_sv_setsv_flags dll_Perl_sv_setsv_flags
254# else
255# define Perl_sv_setsv dll_Perl_sv_setsv
256# endif
257# define Perl_sv_upgrade dll_Perl_sv_upgrade
258# define Perl_Tstack_sp_ptr dll_Perl_Tstack_sp_ptr
259# define Perl_Top_ptr dll_Perl_Top_ptr
260# define Perl_Tstack_base_ptr dll_Perl_Tstack_base_ptr
261# define Perl_Tstack_max_ptr dll_Perl_Tstack_max_ptr
262# define Perl_Ttmps_ix_ptr dll_Perl_Ttmps_ix_ptr
263# define Perl_Ttmps_floor_ptr dll_Perl_Ttmps_floor_ptr
264# define Perl_Tmarkstack_ptr_ptr dll_Perl_Tmarkstack_ptr_ptr
265# define Perl_Tmarkstack_max_ptr dll_Perl_Tmarkstack_max_ptr
266# define Perl_TSv_ptr dll_Perl_TSv_ptr
267# define Perl_TXpv_ptr dll_Perl_TXpv_ptr
268# define Perl_Tna_ptr dll_Perl_Tna_ptr
269# define Perl_Idefgv_ptr dll_Perl_Idefgv_ptr
270# define Perl_Ierrgv_ptr dll_Perl_Ierrgv_ptr
271# define Perl_Isv_yes_ptr dll_Perl_Isv_yes_ptr
272# define boot_DynaLoader dll_boot_DynaLoader
Bram Moolenaare06c1882010-07-21 22:05:20 +0200273# define Perl_Gthr_key_ptr dll_Perl_Gthr_key_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000275# define Perl_sys_init dll_Perl_sys_init
Bram Moolenaarc236c162008-07-13 17:41:49 +0000276# define Perl_sys_term dll_Perl_sys_term
277# define Perl_ISv_ptr dll_Perl_ISv_ptr
278# define Perl_Istack_max_ptr dll_Perl_Istack_max_ptr
279# define Perl_Istack_base_ptr dll_Perl_Istack_base_ptr
280# define Perl_Itmps_ix_ptr dll_Perl_Itmps_ix_ptr
281# define Perl_Itmps_floor_ptr dll_Perl_Itmps_floor_ptr
282# define Perl_IXpv_ptr dll_Perl_IXpv_ptr
283# define Perl_Ina_ptr dll_Perl_Ina_ptr
284# define Perl_Imarkstack_ptr_ptr dll_Perl_Imarkstack_ptr_ptr
285# define Perl_Imarkstack_max_ptr dll_Perl_Imarkstack_max_ptr
286# define Perl_Istack_sp_ptr dll_Perl_Istack_sp_ptr
287# define Perl_Iop_ptr dll_Perl_Iop_ptr
288# define Perl_call_list dll_Perl_call_list
289# define Perl_Iscopestack_ix_ptr dll_Perl_Iscopestack_ix_ptr
290# define Perl_Iunitcheckav_ptr dll_Perl_Iunitcheckav_ptr
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200291# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
292# define Perl_xs_handshake dll_Perl_xs_handshake
293# define Perl_xs_boot_epilog dll_Perl_xs_boot_epilog
294# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200295# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100296# ifdef USE_ITHREADS
297# define PL_thr_key *dll_PL_thr_key
298# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200299# endif
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100300# define Perl_hv_iternext_flags dll_Perl_hv_iternext_flags
301# define Perl_hv_iterinit dll_Perl_hv_iterinit
302# define Perl_hv_iterkey dll_Perl_hv_iterkey
303# define Perl_hv_iterval dll_Perl_hv_iterval
304# define Perl_av_fetch dll_Perl_av_fetch
305# define Perl_av_len dll_Perl_av_len
306# define Perl_sv_2nv_flags dll_Perl_sv_2nv_flags
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200307# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
308# define PerlIOBase_pushed dll_PerlIOBase_pushed
309# define PerlIO_define_layer dll_PerlIO_define_layer
310# endif
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200311# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
312# define Perl_savetmps dll_Perl_savetmps
313# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000314
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315/*
316 * Declare HANDLE for perl.dll and function pointers.
317 */
318static HANDLE hPerlLib = NULL;
319
320static PerlInterpreter* (*perl_alloc)();
321static void (*perl_construct)(PerlInterpreter*);
322static void (*perl_destruct)(PerlInterpreter*);
323static void (*perl_free)(PerlInterpreter*);
324static int (*perl_run)(PerlInterpreter*);
325static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
326static void* (*Perl_get_context)(void);
Bram Moolenaar864733a2016-04-02 14:18:01 +0200327static void (*Perl_croak)(pTHX_ const char*, ...) __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200328# ifdef PERL5101_OR_LATER
Bram Moolenaar6b107212013-12-11 15:06:40 +0100329/* Perl-5.18 has a different Perl_croak_xs_usage signature. */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200330# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar864733a2016-04-02 14:18:01 +0200331static void (*Perl_croak_xs_usage)(const CV *const, const char *const params)
332 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200333# else
Bram Moolenaar864733a2016-04-02 14:18:01 +0200334static void (*Perl_croak_xs_usage)(pTHX_ const CV *const, const char *const params)
335 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200336# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100337# endif
Bram Moolenaar864733a2016-04-02 14:18:01 +0200338static void (*Perl_croak_nocontext)(const char*, ...) __attribute__noreturn__;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339static I32 (*Perl_dowantarray)(pTHX);
340static void (*Perl_free_tmps)(pTHX);
341static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200342# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200343static I32* (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200344# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345static void (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200346# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347static MAGIC* (*Perl_mg_find)(pTHX_ SV*, int);
Bram Moolenaar578333b2018-07-22 07:31:09 +0200348# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
349static int (*Perl_mg_get)(pTHX_ SV*);
350# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351static CV* (*Perl_newXS)(pTHX_ char*, XSUBADDR_t, char*);
352static SV* (*Perl_newSV)(pTHX_ STRLEN);
353static SV* (*Perl_newSViv)(pTHX_ IV);
354static SV* (*Perl_newSVpv)(pTHX_ const char*, STRLEN);
355static I32 (*Perl_call_argv)(pTHX_ const char*, I32, char**);
356static I32 (*Perl_call_pv)(pTHX_ const char*, I32);
357static I32 (*Perl_eval_sv)(pTHX_ SV*, I32);
358static SV* (*Perl_get_sv)(pTHX_ const char*, I32);
359static SV* (*Perl_eval_pv)(pTHX_ const char*, I32);
360static SV* (*Perl_call_method)(pTHX_ const char*, I32);
361static void (*Perl_pop_scope)(pTHX);
362static void (*Perl_push_scope)(pTHX);
363static void (*Perl_save_int)(pTHX_ int*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200364# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200365static void (*Perl_save_strlen)(pTHX_ STRLEN* ptr);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200366# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367static SV** (*Perl_stack_grow)(pTHX_ SV**, SV**p, int);
368static SV** (*Perl_set_context)(void*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200369# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200370static bool (*Perl_sv_2bool_flags)(pTHX_ SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200371# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200372static void (*Perl_xs_apiversion_bootcheck)(pTHX_ SV *module, const char *api_p, STRLEN api_len);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200373# endif
374# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375static bool (*Perl_sv_2bool)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200376# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377static IV (*Perl_sv_2iv)(pTHX_ SV*);
378static SV* (*Perl_sv_2mortal)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200379# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380static char* (*Perl_sv_2pv_flags)(pTHX_ SV*, STRLEN*, I32);
381static char* (*Perl_sv_2pv_nolen)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200382# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200384# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200386# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200388# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389static void (*Perl_sv_catpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200390# endif
391# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000392static IV (*Perl_sv_2iv_flags)(pTHX_ SV* sv, I32 flags);
393static 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 +0200394# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395static void (*Perl_sv_free)(pTHX_ SV*);
396static int (*Perl_sv_isa)(pTHX_ SV*, const char*);
397static void (*Perl_sv_magic)(pTHX_ SV*, SV*, int, const char*, I32);
398static void (*Perl_sv_setiv)(pTHX_ SV*, IV);
399static void (*Perl_sv_setpv)(pTHX_ SV*, const char*);
400static void (*Perl_sv_setpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200401# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402static void (*Perl_sv_setsv_flags)(pTHX_ SV*, SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200403# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404static void (*Perl_sv_setsv)(pTHX_ SV*, SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200405# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406static bool (*Perl_sv_upgrade)(pTHX_ SV*, U32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200407# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408static SV*** (*Perl_Tstack_sp_ptr)(register PerlInterpreter*);
409static OP** (*Perl_Top_ptr)(register PerlInterpreter*);
410static SV*** (*Perl_Tstack_base_ptr)(register PerlInterpreter*);
411static SV*** (*Perl_Tstack_max_ptr)(register PerlInterpreter*);
412static I32* (*Perl_Ttmps_ix_ptr)(register PerlInterpreter*);
413static I32* (*Perl_Ttmps_floor_ptr)(register PerlInterpreter*);
414static I32** (*Perl_Tmarkstack_ptr_ptr)(register PerlInterpreter*);
415static I32** (*Perl_Tmarkstack_max_ptr)(register PerlInterpreter*);
416static SV** (*Perl_TSv_ptr)(register PerlInterpreter*);
417static XPV** (*Perl_TXpv_ptr)(register PerlInterpreter*);
418static STRLEN* (*Perl_Tna_ptr)(register PerlInterpreter*);
Bram Moolenaar6b107212013-12-11 15:06:40 +0100419# else
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200420/* Perl-5.18 has a different Perl_sv_free2 signature. */
421# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
422static void (*Perl_sv_free2)(pTHX_ SV*, const U32);
423# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000424static void (*Perl_sv_free2)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200425# endif
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000426static void (*Perl_sys_init)(int* argc, char*** argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000427static void (*Perl_sys_term)(void);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200428static void (*Perl_call_list)(pTHX_ I32, AV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200429# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
430# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000431static SV** (*Perl_ISv_ptr)(register PerlInterpreter*);
432static SV*** (*Perl_Istack_max_ptr)(register PerlInterpreter*);
433static SV*** (*Perl_Istack_base_ptr)(register PerlInterpreter*);
434static XPV** (*Perl_IXpv_ptr)(register PerlInterpreter*);
435static I32* (*Perl_Itmps_ix_ptr)(register PerlInterpreter*);
436static I32* (*Perl_Itmps_floor_ptr)(register PerlInterpreter*);
437static STRLEN* (*Perl_Ina_ptr)(register PerlInterpreter*);
438static I32** (*Perl_Imarkstack_ptr_ptr)(register PerlInterpreter*);
439static I32** (*Perl_Imarkstack_max_ptr)(register PerlInterpreter*);
440static SV*** (*Perl_Istack_sp_ptr)(register PerlInterpreter*);
441static OP** (*Perl_Iop_ptr)(register PerlInterpreter*);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000442static I32* (*Perl_Iscopestack_ix_ptr)(register PerlInterpreter*);
443static AV** (*Perl_Iunitcheckav_ptr)(register PerlInterpreter*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200444# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200445# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200446# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200447static I32 (*Perl_xs_handshake)(const U32, void *, const char *, ...);
448static void (*Perl_xs_boot_epilog)(pTHX_ const U32);
Bram Moolenaard8619992014-03-12 17:08:05 +0100449# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200450
451# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
452# ifdef USE_ITHREADS
453static perl_key* dll_PL_thr_key;
454# endif
455# else
Bram Moolenaare06c1882010-07-21 22:05:20 +0200456static GV** (*Perl_Idefgv_ptr)(register PerlInterpreter*);
457static GV** (*Perl_Ierrgv_ptr)(register PerlInterpreter*);
458static SV* (*Perl_Isv_yes_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200459static perl_key* (*Perl_Gthr_key_ptr)_((pTHX));
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200460# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200461static void (*boot_DynaLoader)_((pTHX_ CV*));
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100462static HE * (*Perl_hv_iternext_flags)(pTHX_ HV *, I32);
463static I32 (*Perl_hv_iterinit)(pTHX_ HV *);
464static char * (*Perl_hv_iterkey)(pTHX_ HE *, I32 *);
465static SV * (*Perl_hv_iterval)(pTHX_ HV *, HE *);
466static SV** (*Perl_av_fetch)(pTHX_ AV *, SSize_t, I32);
467static SSize_t (*Perl_av_len)(pTHX_ AV *);
468static NV (*Perl_sv_2nv_flags)(pTHX_ SV *const, const I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200469# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200470static IV (*PerlIOBase_pushed)(pTHX_ PerlIO *, const char *, SV *, PerlIO_funcs *);
471static void (*PerlIO_define_layer)(pTHX_ PerlIO_funcs *);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200472# endif
473# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200474static void (*Perl_savetmps)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200475# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200476
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477/*
478 * Table of name to function pointer of perl.
479 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480static struct {
481 char* name;
482 PERL_PROC* ptr;
483} perl_funcname_table[] = {
484 {"perl_alloc", (PERL_PROC*)&perl_alloc},
485 {"perl_construct", (PERL_PROC*)&perl_construct},
486 {"perl_destruct", (PERL_PROC*)&perl_destruct},
487 {"perl_free", (PERL_PROC*)&perl_free},
488 {"perl_run", (PERL_PROC*)&perl_run},
489 {"perl_parse", (PERL_PROC*)&perl_parse},
490 {"Perl_get_context", (PERL_PROC*)&Perl_get_context},
491 {"Perl_croak", (PERL_PROC*)&Perl_croak},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200492# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100493 {"Perl_croak_xs_usage", (PERL_PROC*)&Perl_croak_xs_usage},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200494# endif
495# ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496 {"Perl_croak_nocontext", (PERL_PROC*)&Perl_croak_nocontext},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200497# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498 {"Perl_dowantarray", (PERL_PROC*)&Perl_dowantarray},
499 {"Perl_free_tmps", (PERL_PROC*)&Perl_free_tmps},
500 {"Perl_gv_stashpv", (PERL_PROC*)&Perl_gv_stashpv},
501 {"Perl_markstack_grow", (PERL_PROC*)&Perl_markstack_grow},
502 {"Perl_mg_find", (PERL_PROC*)&Perl_mg_find},
Bram Moolenaar578333b2018-07-22 07:31:09 +0200503# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
504 {"Perl_mg_get", (PERL_PROC*)&Perl_mg_get},
505# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506 {"Perl_newXS", (PERL_PROC*)&Perl_newXS},
507 {"Perl_newSV", (PERL_PROC*)&Perl_newSV},
508 {"Perl_newSViv", (PERL_PROC*)&Perl_newSViv},
509 {"Perl_newSVpv", (PERL_PROC*)&Perl_newSVpv},
510 {"Perl_call_argv", (PERL_PROC*)&Perl_call_argv},
511 {"Perl_call_pv", (PERL_PROC*)&Perl_call_pv},
512 {"Perl_eval_sv", (PERL_PROC*)&Perl_eval_sv},
513 {"Perl_get_sv", (PERL_PROC*)&Perl_get_sv},
514 {"Perl_eval_pv", (PERL_PROC*)&Perl_eval_pv},
515 {"Perl_call_method", (PERL_PROC*)&Perl_call_method},
516 {"Perl_pop_scope", (PERL_PROC*)&Perl_pop_scope},
517 {"Perl_push_scope", (PERL_PROC*)&Perl_push_scope},
518 {"Perl_save_int", (PERL_PROC*)&Perl_save_int},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200519# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200520 {"Perl_save_strlen", (PERL_PROC*)&Perl_save_strlen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200521# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522 {"Perl_stack_grow", (PERL_PROC*)&Perl_stack_grow},
523 {"Perl_set_context", (PERL_PROC*)&Perl_set_context},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200524# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200525 {"Perl_sv_2bool_flags", (PERL_PROC*)&Perl_sv_2bool_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200526# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200527 {"Perl_xs_apiversion_bootcheck",(PERL_PROC*)&Perl_xs_apiversion_bootcheck},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200528# endif
529# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 {"Perl_sv_2bool", (PERL_PROC*)&Perl_sv_2bool},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200531# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532 {"Perl_sv_2iv", (PERL_PROC*)&Perl_sv_2iv},
533 {"Perl_sv_2mortal", (PERL_PROC*)&Perl_sv_2mortal},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200534# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 {"Perl_sv_2pv_flags", (PERL_PROC*)&Perl_sv_2pv_flags},
536 {"Perl_sv_2pv_nolen", (PERL_PROC*)&Perl_sv_2pv_nolen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200537# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 {"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200539# endif
540# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000541 {"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags},
542 {"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200543# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000544 {"Perl_sv_bless", (PERL_PROC*)&Perl_sv_bless},
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_catpvn_flags", (PERL_PROC*)&Perl_sv_catpvn_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200547# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 {"Perl_sv_catpvn", (PERL_PROC*)&Perl_sv_catpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200549# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550 {"Perl_sv_free", (PERL_PROC*)&Perl_sv_free},
551 {"Perl_sv_isa", (PERL_PROC*)&Perl_sv_isa},
552 {"Perl_sv_magic", (PERL_PROC*)&Perl_sv_magic},
553 {"Perl_sv_setiv", (PERL_PROC*)&Perl_sv_setiv},
554 {"Perl_sv_setpv", (PERL_PROC*)&Perl_sv_setpv},
555 {"Perl_sv_setpvn", (PERL_PROC*)&Perl_sv_setpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200556# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 {"Perl_sv_setsv_flags", (PERL_PROC*)&Perl_sv_setsv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200558# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 {"Perl_sv_setsv", (PERL_PROC*)&Perl_sv_setsv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200560# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561 {"Perl_sv_upgrade", (PERL_PROC*)&Perl_sv_upgrade},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200562# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 {"Perl_Tstack_sp_ptr", (PERL_PROC*)&Perl_Tstack_sp_ptr},
564 {"Perl_Top_ptr", (PERL_PROC*)&Perl_Top_ptr},
565 {"Perl_Tstack_base_ptr", (PERL_PROC*)&Perl_Tstack_base_ptr},
566 {"Perl_Tstack_max_ptr", (PERL_PROC*)&Perl_Tstack_max_ptr},
567 {"Perl_Ttmps_ix_ptr", (PERL_PROC*)&Perl_Ttmps_ix_ptr},
568 {"Perl_Ttmps_floor_ptr", (PERL_PROC*)&Perl_Ttmps_floor_ptr},
569 {"Perl_Tmarkstack_ptr_ptr", (PERL_PROC*)&Perl_Tmarkstack_ptr_ptr},
570 {"Perl_Tmarkstack_max_ptr", (PERL_PROC*)&Perl_Tmarkstack_max_ptr},
571 {"Perl_TSv_ptr", (PERL_PROC*)&Perl_TSv_ptr},
572 {"Perl_TXpv_ptr", (PERL_PROC*)&Perl_TXpv_ptr},
573 {"Perl_Tna_ptr", (PERL_PROC*)&Perl_Tna_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200574# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000575 {"Perl_sv_free2", (PERL_PROC*)&Perl_sv_free2},
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000576 {"Perl_sys_init", (PERL_PROC*)&Perl_sys_init},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000577 {"Perl_sys_term", (PERL_PROC*)&Perl_sys_term},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200578 {"Perl_call_list", (PERL_PROC*)&Perl_call_list},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200579# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
580# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000581 {"Perl_ISv_ptr", (PERL_PROC*)&Perl_ISv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000582 {"Perl_Istack_max_ptr", (PERL_PROC*)&Perl_Istack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200583 {"Perl_Istack_base_ptr", (PERL_PROC*)&Perl_Istack_base_ptr},
584 {"Perl_IXpv_ptr", (PERL_PROC*)&Perl_IXpv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000585 {"Perl_Itmps_ix_ptr", (PERL_PROC*)&Perl_Itmps_ix_ptr},
586 {"Perl_Itmps_floor_ptr", (PERL_PROC*)&Perl_Itmps_floor_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200587 {"Perl_Ina_ptr", (PERL_PROC*)&Perl_Ina_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000588 {"Perl_Imarkstack_ptr_ptr", (PERL_PROC*)&Perl_Imarkstack_ptr_ptr},
589 {"Perl_Imarkstack_max_ptr", (PERL_PROC*)&Perl_Imarkstack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200590 {"Perl_Istack_sp_ptr", (PERL_PROC*)&Perl_Istack_sp_ptr},
591 {"Perl_Iop_ptr", (PERL_PROC*)&Perl_Iop_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000592 {"Perl_Iscopestack_ix_ptr", (PERL_PROC*)&Perl_Iscopestack_ix_ptr},
593 {"Perl_Iunitcheckav_ptr", (PERL_PROC*)&Perl_Iunitcheckav_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200594# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200595# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200596# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200597 {"Perl_xs_handshake", (PERL_PROC*)&Perl_xs_handshake},
598 {"Perl_xs_boot_epilog", (PERL_PROC*)&Perl_xs_boot_epilog},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200599# endif
600# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100601# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200602 {"PL_thr_key", (PERL_PROC*)&dll_PL_thr_key},
Bram Moolenaard8619992014-03-12 17:08:05 +0100603# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200604# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 {"Perl_Idefgv_ptr", (PERL_PROC*)&Perl_Idefgv_ptr},
606 {"Perl_Ierrgv_ptr", (PERL_PROC*)&Perl_Ierrgv_ptr},
607 {"Perl_Isv_yes_ptr", (PERL_PROC*)&Perl_Isv_yes_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200608 {"Perl_Gthr_key_ptr", (PERL_PROC*)&Perl_Gthr_key_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200609# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200610 {"boot_DynaLoader", (PERL_PROC*)&boot_DynaLoader},
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100611 {"Perl_hv_iternext_flags", (PERL_PROC*)&Perl_hv_iternext_flags},
612 {"Perl_hv_iterinit", (PERL_PROC*)&Perl_hv_iterinit},
613 {"Perl_hv_iterkey", (PERL_PROC*)&Perl_hv_iterkey},
614 {"Perl_hv_iterval", (PERL_PROC*)&Perl_hv_iterval},
615 {"Perl_av_fetch", (PERL_PROC*)&Perl_av_fetch},
616 {"Perl_av_len", (PERL_PROC*)&Perl_av_len},
617 {"Perl_sv_2nv_flags", (PERL_PROC*)&Perl_sv_2nv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200618# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200619 {"PerlIOBase_pushed", (PERL_PROC*)&PerlIOBase_pushed},
620 {"PerlIO_define_layer", (PERL_PROC*)&PerlIO_define_layer},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200621# endif
622# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200623 {"Perl_savetmps", (PERL_PROC*)&Perl_savetmps},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200624# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625 {"", NULL},
626};
627
Bram Moolenaar6b107212013-12-11 15:06:40 +0100628/* Work around for perl-5.18.
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200629 * For now, only the definitions of S_SvREFCNT_dec are needed in
630 * "perl\lib\CORE\inline.h". */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200631# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200632static void
633S_SvREFCNT_dec(pTHX_ SV *sv)
634{
635 if (LIKELY(sv != NULL)) {
636 U32 rc = SvREFCNT(sv);
637 if (LIKELY(rc > 1))
638 SvREFCNT(sv) = rc - 1;
639 else
640 Perl_sv_free2(aTHX_ sv, rc);
641 }
642}
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200643# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100644
Bram Moolenaarfa4161c2017-06-10 15:46:23 +0200645/* perl-5.26 also needs S_TOPMARK and S_POPMARK. */
646# if (PERL_REVISION == 5) && (PERL_VERSION >= 26)
647PERL_STATIC_INLINE I32
648S_TOPMARK(pTHX)
649{
650 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log,
651 "MARK top %p %" IVdf "\n",
652 PL_markstack_ptr,
653 (IV)*PL_markstack_ptr)));
654 return *PL_markstack_ptr;
655}
656
657PERL_STATIC_INLINE I32
658S_POPMARK(pTHX)
659{
660 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log,
661 "MARK pop %p %" IVdf "\n",
662 (PL_markstack_ptr-1),
663 (IV)*(PL_markstack_ptr-1))));
664 assert((PL_markstack_ptr > PL_markstack) || !"MARK underflow");
665 return *PL_markstack_ptr--;
666}
667# endif
668
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669/*
670 * Make all runtime-links of perl.
671 *
Bram Moolenaar364ab2f2013-08-02 20:05:32 +0200672 * 1. Get module handle using dlopen() or vimLoadLib().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 * 2. Get pointer to perl function by GetProcAddress.
674 * 3. Repeat 2, until get all functions will be used.
675 *
676 * Parameter 'libname' provides name of DLL.
677 * Return OK or FAIL.
678 */
679 static int
680perl_runtime_link_init(char *libname, int verbose)
681{
682 int i;
683
684 if (hPerlLib != NULL)
685 return OK;
Bram Moolenaare06c1882010-07-21 22:05:20 +0200686 if ((hPerlLib = load_dll(libname)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 {
688 if (verbose)
689 EMSG2(_("E370: Could not load library %s"), libname);
690 return FAIL;
691 }
692 for (i = 0; perl_funcname_table[i].ptr; ++i)
693 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200694 if (!(*perl_funcname_table[i].ptr = symbol_from_dll(hPerlLib,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 perl_funcname_table[i].name)))
696 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200697 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 hPerlLib = NULL;
699 if (verbose)
700 EMSG2(_(e_loadfunc), perl_funcname_table[i].name);
701 return FAIL;
702 }
703 }
704 return OK;
705}
706
707/*
708 * If runtime-link-perl(DLL) was loaded successfully, return TRUE.
709 * There were no DLL loaded, return FALSE.
710 */
711 int
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100712perl_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713{
Bram Moolenaar25e4fcd2016-01-09 14:57:47 +0100714 return perl_runtime_link_init((char *)p_perldll, verbose) == OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715}
716#endif /* DYNAMIC_PERL */
717
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200718#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
719static void vim_IOLayer_init(void);
720#endif
721
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722/*
723 * perl_init(): initialize perl interpreter
724 * We have to call perl_parse to initialize some structures,
725 * there's nothing to actually parse.
726 */
727 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100728perl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729{
Bram Moolenaarc236c162008-07-13 17:41:49 +0000730 char *bootargs[] = { "VI", NULL };
731 int argc = 3;
732 static char *argv[] = { "", "-e", "" };
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733
Bram Moolenaarc236c162008-07-13 17:41:49 +0000734#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000735 Perl_sys_init(&argc, (char***)&argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000736#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737 perl_interp = perl_alloc();
738 perl_construct(perl_interp);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000739 perl_parse(perl_interp, xs_init, argc, argv, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 perl_call_argv("VIM::bootstrap", (long)G_DISCARD, bootargs);
741 VIM_init();
742#ifdef USE_SFIO
743 sfdisc(PerlIO_stdout(), sfdcnewvim());
744 sfdisc(PerlIO_stderr(), sfdcnewvim());
745 sfsetbuf(PerlIO_stdout(), NULL, 0);
746 sfsetbuf(PerlIO_stderr(), NULL, 0);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200747#elif defined(PERLIO_LAYERS)
748 vim_IOLayer_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749#endif
750}
751
752/*
753 * perl_end(): clean up after ourselves
754 */
755 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100756perl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757{
758 if (perl_interp)
759 {
760 perl_run(perl_interp);
761 perl_destruct(perl_interp);
762 perl_free(perl_interp);
763 perl_interp = NULL;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000764#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100765 Perl_sys_term();
Bram Moolenaarc236c162008-07-13 17:41:49 +0000766#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 }
768#ifdef DYNAMIC_PERL
769 if (hPerlLib)
770 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200771 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 hPerlLib = NULL;
773 }
774#endif
775}
776
777/*
778 * msg_split(): send a message to the message handling routines
779 * split at '\n' first though.
780 */
781 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100782msg_split(
783 char_u *s,
784 int attr) /* highlighting attributes */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785{
786 char *next;
787 char *token = (char *)s;
788
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000789 while ((next = strchr(token, '\n')) && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790 {
791 *next++ = '\0'; /* replace \n with \0 */
792 msg_attr((char_u *)token, attr);
793 token = next;
794 }
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000795 if (*token && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 msg_attr((char_u *)token, attr);
797}
798
799#ifndef FEAT_EVAL
800/*
801 * This stub is needed because an "#ifdef FEAT_EVAL" around Eval() doesn't
802 * work properly.
803 */
804 char_u *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100805eval_to_string(
806 char_u *arg UNUSED,
807 char_u **nextcmd UNUSED,
808 int dolist UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809{
810 return NULL;
811}
812#endif
813
814/*
815 * Create a new reference to an SV pointing to the SCR structure
Bram Moolenaare344bea2005-09-01 20:46:49 +0000816 * The b_perl_private/w_perl_private part of the SCR structure points to the
817 * SV, so there can only be one such SV for a particular SCR structure. When
818 * the last reference has gone (DESTROY is called),
819 * b_perl_private/w_perl_private is reset; When the screen goes away before
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 * all references are gone, the value of the SV is reset;
821 * any subsequent use of any of those reference will produce
822 * a warning. (see typemap)
823 */
Bram Moolenaare344bea2005-09-01 20:46:49 +0000824
825 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100826newWINrv(SV *rv, win_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000827{
828 sv_upgrade(rv, SVt_RV);
829 if (ptr->w_perl_private == NULL)
830 {
831 ptr->w_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100832 sv_setiv(ptr->w_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000833 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200834 SvREFCNT_inc_void_NN(ptr->w_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000835 SvRV(rv) = ptr->w_perl_private;
836 SvROK_on(rv);
837 return sv_bless(rv, gv_stashpv("VIWIN", TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838}
839
Bram Moolenaare344bea2005-09-01 20:46:49 +0000840 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100841newBUFrv(SV *rv, buf_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000842{
843 sv_upgrade(rv, SVt_RV);
844 if (ptr->b_perl_private == NULL)
845 {
846 ptr->b_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100847 sv_setiv(ptr->b_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000848 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200849 SvREFCNT_inc_void_NN(ptr->b_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000850 SvRV(rv) = ptr->b_perl_private;
851 SvROK_on(rv);
852 return sv_bless(rv, gv_stashpv("VIBUF", TRUE));
853}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200855#if 0
856SV *__sv_save[1024];
857int __sv_save_ix;
858# define D_Save_Sv(sv) do { if (__sv_save_ix < 1024) __sv_save[__sv_save_ix++] = (sv); } while (0)
859#else
860# define D_Save_Sv(sv) NOOP
861#endif
862
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863/*
864 * perl_win_free
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200865 * Remove all references to the window to be destroyed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866 */
867 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100868perl_win_free(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200870 if (wp->w_perl_private && perl_interp != NULL)
871 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200872 SV *sv = (SV*)wp->w_perl_private;
873 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200874 sv_setiv(sv, 0);
875 SvREFCNT_dec(sv);
876 }
877 wp->w_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878}
879
880 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100881perl_buf_free(buf_T *bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200883 if (bp->b_perl_private && perl_interp != NULL)
884 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200885 SV *sv = (SV *)bp->b_perl_private;
886 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200887 sv_setiv(sv, 0);
888 SvREFCNT_dec(sv);
889 }
890 bp->b_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891}
892
893#ifndef PROTO
894# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
895I32 cur_val(pTHX_ IV iv, SV *sv);
896# else
897I32 cur_val(IV iv, SV *sv);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200898# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899
900/*
901 * Handler for the magic variables $main::curwin and $main::curbuf.
902 * The handler is put into the magic vtbl for these variables.
903 * (This is effectively a C-level equivalent of a tied variable).
904 * There is no "set" function as the variables are read-only.
905 */
906# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
907I32 cur_val(pTHX_ IV iv, SV *sv)
908# else
909I32 cur_val(IV iv, SV *sv)
910# endif
911{
912 SV *rv;
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200913
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 if (iv == 0)
915 rv = newWINrv(newSV(0), curwin);
916 else
917 rv = newBUFrv(newSV(0), curbuf);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200918
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200919 if (SvRV(sv) != SvRV(rv))
920 // XXX: This magic variable is a bit confusing...
921 // Is curently refcounted ?
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200922 sv_setsv(sv, rv);
923
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200924 SvREFCNT_dec(rv);
925
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 return 0;
927}
928#endif /* !PROTO */
929
930struct ufuncs cw_funcs = { cur_val, 0, 0 };
931struct ufuncs cb_funcs = { cur_val, 0, 1 };
932
933/*
934 * VIM_init(): Vim-specific initialisation.
935 * Make the magical main::curwin and main::curbuf variables
936 */
937 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100938VIM_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939{
940 static char cw[] = "main::curwin";
941 static char cb[] = "main::curbuf";
942 SV *sv;
943
944 sv = perl_get_sv(cw, TRUE);
945 sv_magic(sv, NULL, 'U', (char *)&cw_funcs, sizeof(cw_funcs));
946 SvREADONLY_on(sv);
947
948 sv = perl_get_sv(cb, TRUE);
949 sv_magic(sv, NULL, 'U', (char *)&cb_funcs, sizeof(cb_funcs));
950 SvREADONLY_on(sv);
951
952 /*
953 * Setup the Safe compartment.
954 * It shouldn't be a fatal error if the Safe module is missing.
955 * XXX: Only shares the 'Msg' routine (which has to be called
956 * like 'Msg(...)').
957 */
958 (void)perl_eval_pv( "if ( eval( 'require Safe' ) ) { $VIM::safe = Safe->new(); $VIM::safe->share_from( 'VIM', ['Msg'] ); }", G_DISCARD | G_VOID );
959
960}
961
962#ifdef DYNAMIC_PERL
963static char *e_noperl = N_("Sorry, this command is disabled: the Perl library could not be loaded.");
964#endif
965
966/*
967 * ":perl"
968 */
969 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100970ex_perl(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971{
972 char *err;
973 char *script;
974 STRLEN length;
975 SV *sv;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200976#ifdef HAVE_SANDBOX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 SV *safe;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200978#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979
980 script = (char *)script_get(eap, eap->arg);
981 if (eap->skip)
982 {
983 vim_free(script);
984 return;
985 }
986
987 if (perl_interp == NULL)
988 {
989#ifdef DYNAMIC_PERL
990 if (!perl_enabled(TRUE))
991 {
992 EMSG(_(e_noperl));
993 vim_free(script);
994 return;
995 }
996#endif
997 perl_init();
998 }
999
1000 {
1001 dSP;
1002 ENTER;
1003 SAVETMPS;
1004
1005 if (script == NULL)
1006 sv = newSVpv((char *)eap->arg, 0);
1007 else
1008 {
1009 sv = newSVpv(script, 0);
1010 vim_free(script);
1011 }
1012
1013#ifdef HAVE_SANDBOX
1014 if (sandbox)
1015 {
Bram Moolenaara1711622011-07-27 14:15:46 +02001016 safe = perl_get_sv("VIM::safe", FALSE);
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001017# ifndef MAKE_TEST /* avoid a warning for unreachable code */
Bram Moolenaar954e8c52009-11-11 13:45:33 +00001018 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019 EMSG(_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
1020 else
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001021# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022 {
1023 PUSHMARK(SP);
1024 XPUSHs(safe);
1025 XPUSHs(sv);
1026 PUTBACK;
1027 perl_call_method("reval", G_DISCARD);
1028 }
1029 }
1030 else
1031#endif
1032 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1033
1034 SvREFCNT_dec(sv);
1035
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001036 err = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037
1038 FREETMPS;
1039 LEAVE;
1040
1041 if (!length)
1042 return;
1043
1044 msg_split((char_u *)err, highlight_attr[HLF_E]);
1045 return;
1046 }
1047}
1048
1049 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001050replace_line(linenr_T *line, linenr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051{
1052 char *str;
1053
1054 if (SvOK(GvSV(PL_defgv)))
1055 {
1056 str = SvPV(GvSV(PL_defgv), PL_na);
1057 ml_replace(*line, (char_u *)str, 1);
1058 changed_bytes(*line, 0);
1059 }
1060 else
1061 {
1062 ml_delete(*line, FALSE);
1063 deleted_lines_mark(*line, 1L);
1064 --(*end);
1065 --(*line);
1066 }
1067 return OK;
1068}
1069
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001070static struct ref_map_S {
1071 void *vim_ref;
1072 SV *perl_ref;
1073 struct ref_map_S *next;
1074} *ref_map = NULL;
1075
1076 static void
1077ref_map_free(void)
1078{
1079 struct ref_map_S *tofree;
1080 struct ref_map_S *refs = ref_map;
1081
1082 while (refs) {
1083 tofree = refs;
1084 refs = refs->next;
1085 vim_free(tofree);
1086 }
1087 ref_map = NULL;
1088}
1089
1090 static struct ref_map_S *
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001091ref_map_find_SV(SV *const sv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001092{
1093 struct ref_map_S *refs = ref_map;
1094 int count = 350;
1095
1096 while (refs) {
1097 if (refs->perl_ref == sv)
1098 break;
1099 refs = refs->next;
1100 count--;
1101 }
1102
1103 if (!refs && count > 0) {
1104 refs = (struct ref_map_S *)alloc(sizeof(struct ref_map_S));
1105 if (!refs)
1106 return NULL;
1107 refs->perl_ref = sv;
1108 refs->vim_ref = NULL;
1109 refs->next = ref_map;
1110 ref_map = refs;
1111 }
1112
1113 return refs;
1114}
1115
1116 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001117perl_to_vim(SV *sv, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001118{
1119 if (SvROK(sv))
1120 sv = SvRV(sv);
1121
1122 switch (SvTYPE(sv)) {
1123 case SVt_NULL:
1124 break;
1125 case SVt_NV: /* float */
1126#ifdef FEAT_FLOAT
1127 rettv->v_type = VAR_FLOAT;
1128 rettv->vval.v_float = SvNV(sv);
1129 break;
1130#endif
1131 case SVt_IV: /* integer */
1132 if (!SvROK(sv)) { /* references should be string */
1133 rettv->vval.v_number = SvIV(sv);
1134 break;
1135 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02001136 /* FALLTHROUGH */
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001137 case SVt_PV: /* string */
1138 {
1139 size_t len = 0;
1140 char * str_from = SvPV(sv, len);
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001141 char_u *str_to = (char_u*)alloc(
1142 (unsigned)(sizeof(char_u) * (len + 1)));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001143
1144 if (str_to) {
1145 str_to[len] = '\0';
1146
1147 while (len--) {
1148 if (str_from[len] == '\0')
1149 str_to[len] = '\n';
1150 else
1151 str_to[len] = str_from[len];
1152 }
1153 }
1154
1155 rettv->v_type = VAR_STRING;
1156 rettv->vval.v_string = str_to;
1157 break;
1158 }
1159 case SVt_PVAV: /* list */
1160 {
1161 SSize_t size;
1162 listitem_T * item;
1163 SV ** item2;
1164 list_T * list;
1165 struct ref_map_S * refs;
1166
1167 if ((refs = ref_map_find_SV(sv)) == NULL)
1168 return FAIL;
1169
1170 if (refs->vim_ref)
1171 list = (list_T *) refs->vim_ref;
1172 else
1173 {
1174 if ((list = list_alloc()) == NULL)
1175 return FAIL;
1176 refs->vim_ref = list;
1177
1178 for (size = av_len((AV*)sv); size >= 0; size--)
1179 {
1180 if ((item = listitem_alloc()) == NULL)
1181 break;
1182
1183 item->li_tv.v_type = VAR_NUMBER;
1184 item->li_tv.v_lock = 0;
1185 item->li_tv.vval.v_number = 0;
1186 list_insert(list, item, list->lv_first);
1187
1188 item2 = av_fetch((AV *)sv, size, 0);
1189
1190 if (item2 == NULL || *item2 == NULL ||
Bram Moolenaard99df422016-01-29 23:20:40 +01001191 perl_to_vim(*item2, &item->li_tv) == FAIL)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001192 break;
1193 }
1194 }
1195
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001196 rettv_list_set(rettv, list);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001197 break;
1198 }
1199 case SVt_PVHV: /* dictionary */
1200 {
1201 HE * entry;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001202 I32 key_len;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001203 char * key;
1204 dictitem_T * item;
1205 SV * item2;
1206 dict_T * dict;
1207 struct ref_map_S * refs;
1208
1209 if ((refs = ref_map_find_SV(sv)) == NULL)
1210 return FAIL;
1211
1212 if (refs->vim_ref)
1213 dict = (dict_T *) refs->vim_ref;
1214 else
1215 {
1216
1217 if ((dict = dict_alloc()) == NULL)
1218 return FAIL;
1219 refs->vim_ref = dict;
1220
1221 hv_iterinit((HV *)sv);
1222
1223 for (entry = hv_iternext((HV *)sv); entry; entry = hv_iternext((HV *)sv))
1224 {
1225 key_len = 0;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001226 key = hv_iterkey(entry, &key_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001227
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001228 if (!key || !key_len || strlen(key) < (size_t)key_len) {
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001229 EMSG2("Malformed key Dictionary '%s'", key && *key ? key : "(empty)");
1230 break;
1231 }
1232
1233 if ((item = dictitem_alloc((char_u *)key)) == NULL)
1234 break;
Bram Moolenaarc89d4b32018-07-08 17:19:02 +02001235 item->di_tv.v_type = VAR_NUMBER;
1236 item->di_tv.vval.v_number = 0;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001237
1238 if (dict_add(dict, item) == FAIL) {
1239 dictitem_free(item);
1240 break;
1241 }
1242 item2 = hv_iterval((HV *)sv, entry);
1243 if (item2 == NULL || perl_to_vim(item2, &item->di_tv) == FAIL)
1244 break;
1245 }
1246 }
1247
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001248 rettv_dict_set(rettv, dict);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001249 break;
1250 }
1251 default: /* not convertible */
1252 {
1253 char *val = SvPV_nolen(sv);
1254 rettv->v_type = VAR_STRING;
1255 rettv->vval.v_string = val ? vim_strsave((char_u *)val) : NULL;
1256 break;
1257 }
1258 }
1259 return OK;
1260}
1261
1262/*
1263 * "perleval()"
1264 */
1265 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001266do_perleval(char_u *str, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001267{
1268 char *err = NULL;
1269 STRLEN err_len = 0;
1270 SV *sv = NULL;
1271#ifdef HAVE_SANDBOX
1272 SV *safe;
1273#endif
1274
1275 if (perl_interp == NULL)
1276 {
1277#ifdef DYNAMIC_PERL
1278 if (!perl_enabled(TRUE))
1279 {
1280 EMSG(_(e_noperl));
1281 return;
1282 }
1283#endif
1284 perl_init();
1285 }
1286
1287 {
1288 dSP;
1289 ENTER;
1290 SAVETMPS;
1291
1292#ifdef HAVE_SANDBOX
1293 if (sandbox)
1294 {
1295 safe = get_sv("VIM::safe", FALSE);
1296# ifndef MAKE_TEST /* avoid a warning for unreachable code */
1297 if (safe == NULL || !SvTRUE(safe))
1298 EMSG(_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
1299 else
1300# endif
1301 {
1302 sv = newSVpv((char *)str, 0);
1303 PUSHMARK(SP);
1304 XPUSHs(safe);
1305 XPUSHs(sv);
1306 PUTBACK;
1307 call_method("reval", G_SCALAR);
1308 SPAGAIN;
1309 SvREFCNT_dec(sv);
1310 sv = POPs;
1311 }
1312 }
1313 else
1314#endif /* HAVE_SANDBOX */
1315 sv = eval_pv((char *)str, 0);
1316
1317 if (sv) {
1318 perl_to_vim(sv, rettv);
1319 ref_map_free();
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001320 err = SvPV(GvSV(PL_errgv), err_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001321 }
1322 PUTBACK;
1323 FREETMPS;
1324 LEAVE;
1325 }
1326 if (err_len)
1327 msg_split((char_u *)err, highlight_attr[HLF_E]);
1328}
1329
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330/*
1331 * ":perldo".
1332 */
1333 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001334ex_perldo(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335{
1336 STRLEN length;
1337 SV *sv;
1338 char *str;
1339 linenr_T i;
Bram Moolenaar85b57432017-01-29 22:59:12 +01001340 buf_T *was_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001342 if (BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 return;
1344
1345 if (perl_interp == NULL)
1346 {
1347#ifdef DYNAMIC_PERL
1348 if (!perl_enabled(TRUE))
1349 {
1350 EMSG(_(e_noperl));
1351 return;
1352 }
1353#endif
1354 perl_init();
1355 }
1356 {
1357 dSP;
1358 length = strlen((char *)eap->arg);
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001359 sv = newSV(length + sizeof("sub VIM::perldo {") - 1 + 1);
1360 sv_setpvn(sv, "sub VIM::perldo {", sizeof("sub VIM::perldo {") - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 sv_catpvn(sv, (char *)eap->arg, length);
1362 sv_catpvn(sv, "}", 1);
1363 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1364 SvREFCNT_dec(sv);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001365 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 if (length)
1367 goto err;
1368
1369 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
1370 return;
1371
1372 ENTER;
1373 SAVETMPS;
1374 for (i = eap->line1; i <= eap->line2; i++)
1375 {
Bram Moolenaar85b57432017-01-29 22:59:12 +01001376 /* Check the line number, the command my have deleted lines. */
1377 if (i > curbuf->b_ml.ml_line_count)
1378 break;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001379 sv_setpv(GvSV(PL_defgv), (char *)ml_get(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 PUSHMARK(sp);
1381 perl_call_pv("VIM::perldo", G_SCALAR | G_EVAL);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001382 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar85b57432017-01-29 22:59:12 +01001383 if (length || curbuf != was_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 break;
1385 SPAGAIN;
1386 if (SvTRUEx(POPs))
1387 {
1388 if (replace_line(&i, &eap->line2) != OK)
1389 {
1390 PUTBACK;
1391 break;
1392 }
1393 }
1394 PUTBACK;
1395 }
1396 FREETMPS;
1397 LEAVE;
1398 check_cursor();
1399 update_screen(NOT_VALID);
1400 if (!length)
1401 return;
1402
1403err:
1404 msg_split((char_u *)str, highlight_attr[HLF_E]);
1405 return;
1406 }
1407}
1408
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001409#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
1410typedef struct {
1411 struct _PerlIO base;
1412 int attr;
1413} PerlIOVim;
1414
1415 static IV
1416PerlIOVim_pushed(pTHX_ PerlIO *f, const char *mode,
1417 SV *arg, PerlIO_funcs *tab)
1418{
1419 PerlIOVim *s = PerlIOSelf(f, PerlIOVim);
1420 s->attr = 0;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001421 if (arg && SvPOK(arg))
1422 s->attr = syn_name2attr((char_u *)SvPV_nolen(arg));
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001423 return PerlIOBase_pushed(aTHX_ f, mode, (SV *)NULL, tab);
1424}
1425
1426 static SSize_t
1427PerlIOVim_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
1428{
1429 char_u *str;
1430 PerlIOVim * s = PerlIOSelf(f, PerlIOVim);
1431
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001432 str = vim_strnsave((char_u *)vbuf, (int)count);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001433 if (str == NULL)
1434 return 0;
1435 msg_split((char_u *)str, s->attr);
1436 vim_free(str);
1437
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001438 return (SSize_t)count;
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001439}
1440
1441static PERLIO_FUNCS_DECL(PerlIO_Vim) = {
1442 sizeof(PerlIO_funcs),
1443 "Vim",
1444 sizeof(PerlIOVim),
1445 PERLIO_K_DUMMY, /* flags */
1446 PerlIOVim_pushed,
1447 NULL, /* popped */
1448 NULL, /* open */
1449 NULL, /* binmode */
1450 NULL, /* arg */
1451 NULL, /* fileno */
1452 NULL, /* dup */
1453 NULL, /* read */
1454 NULL, /* unread */
1455 PerlIOVim_write,
1456 NULL, /* seek */
1457 NULL, /* tell */
1458 NULL, /* close */
1459 NULL, /* flush */
1460 NULL, /* fill */
1461 NULL, /* eof */
1462 NULL, /* error */
1463 NULL, /* clearerr */
1464 NULL, /* setlinebuf */
1465 NULL, /* get_base */
1466 NULL, /* get_bufsiz */
1467 NULL, /* get_ptr */
1468 NULL, /* get_cnt */
1469 NULL /* set_ptrcnt */
1470};
1471
1472/* Use Vim routine for print operator */
1473 static void
1474vim_IOLayer_init(void)
1475{
1476 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_Vim));
1477 (void)eval_pv( "binmode(STDOUT, ':Vim')"
1478 " && binmode(STDERR, ':Vim(ErrorMsg)');", 0);
1479}
1480#endif /* PERLIO_LAYERS && !USE_SFIO */
1481
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482XS(boot_VIM);
1483
1484 static void
1485xs_init(pTHX)
1486{
1487 char *file = __FILE__;
1488
1489 /* DynaLoader is a special case */
1490 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
1491 newXS("VIM::bootstrap", boot_VIM, file);
1492}
1493
1494typedef win_T * VIWIN;
1495typedef buf_T * VIBUF;
1496
1497MODULE = VIM PACKAGE = VIM
1498
1499void
1500Msg(text, hl=NULL)
1501 char *text;
1502 char *hl;
1503
1504 PREINIT:
1505 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506
1507 PPCODE:
1508 if (text != NULL)
1509 {
1510 attr = 0;
1511 if (hl != NULL)
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001512 attr = syn_name2attr((char_u *)hl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 msg_split((char_u *)text, attr);
1514 }
1515
1516void
1517SetOption(line)
1518 char *line;
1519
1520 PPCODE:
1521 if (line != NULL)
1522 do_set((char_u *)line, 0);
1523 update_screen(NOT_VALID);
1524
1525void
1526DoCommand(line)
1527 char *line;
1528
1529 PPCODE:
1530 if (line != NULL)
1531 do_cmdline_cmd((char_u *)line);
1532
1533void
1534Eval(str)
1535 char *str;
1536
1537 PREINIT:
1538 char_u *value;
1539 PPCODE:
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001540 value = eval_to_string((char_u *)str, (char_u **)0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 if (value == NULL)
1542 {
1543 XPUSHs(sv_2mortal(newSViv(0)));
1544 XPUSHs(sv_2mortal(newSVpv("", 0)));
1545 }
1546 else
1547 {
1548 XPUSHs(sv_2mortal(newSViv(1)));
1549 XPUSHs(sv_2mortal(newSVpv((char *)value, 0)));
1550 vim_free(value);
1551 }
1552
1553void
1554Buffers(...)
1555
1556 PREINIT:
1557 buf_T *vimbuf;
1558 int i, b;
1559
1560 PPCODE:
1561 if (items == 0)
1562 {
1563 if (GIMME == G_SCALAR)
1564 {
1565 i = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02001566 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 ++i;
1568
1569 XPUSHs(sv_2mortal(newSViv(i)));
1570 }
1571 else
1572 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001573 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001574 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 }
1576 }
1577 else
1578 {
1579 for (i = 0; i < items; i++)
1580 {
1581 SV *sv = ST(i);
1582 if (SvIOK(sv))
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001583 b = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 else
1585 {
1586 char_u *pat;
1587 STRLEN len;
1588
1589 pat = (char_u *)SvPV(sv, len);
1590 ++emsg_off;
Bram Moolenaar16896a12018-03-06 12:25:56 +01001591 b = buflist_findpat(pat, pat + len, TRUE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 --emsg_off;
1593 }
1594
1595 if (b >= 0)
1596 {
1597 vimbuf = buflist_findnr(b);
1598 if (vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001599 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 }
1601 }
1602 }
1603
1604void
1605Windows(...)
1606
1607 PREINIT:
1608 win_T *vimwin;
1609 int i, w;
1610
1611 PPCODE:
1612 if (items == 0)
1613 {
1614 if (GIMME == G_SCALAR)
1615 XPUSHs(sv_2mortal(newSViv(win_count())));
1616 else
1617 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001618 FOR_ALL_WINDOWS(vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001619 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 }
1621 }
1622 else
1623 {
1624 for (i = 0; i < items; i++)
1625 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001626 w = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 vimwin = win_find_nr(w);
1628 if (vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001629 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630 }
1631 }
1632
1633MODULE = VIM PACKAGE = VIWIN
1634
1635void
1636DESTROY(win)
1637 VIWIN win
1638
1639 CODE:
1640 if (win_valid(win))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001641 win->w_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642
1643SV *
1644Buffer(win)
1645 VIWIN win
1646
1647 CODE:
1648 if (!win_valid(win))
1649 win = curwin;
1650 RETVAL = newBUFrv(newSV(0), win->w_buffer);
1651 OUTPUT:
1652 RETVAL
1653
1654void
1655SetHeight(win, height)
1656 VIWIN win
1657 int height;
1658
1659 PREINIT:
1660 win_T *savewin;
1661
1662 PPCODE:
1663 if (!win_valid(win))
1664 win = curwin;
1665 savewin = curwin;
1666 curwin = win;
1667 win_setheight(height);
1668 curwin = savewin;
1669
1670void
Bram Moolenaar864733a2016-04-02 14:18:01 +02001671Cursor(win, ...)
1672 VIWIN win
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673
1674 PPCODE:
Bram Moolenaara1711622011-07-27 14:15:46 +02001675 if (items == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 {
1677 EXTEND(sp, 2);
1678 if (!win_valid(win))
1679 win = curwin;
1680 PUSHs(sv_2mortal(newSViv(win->w_cursor.lnum)));
1681 PUSHs(sv_2mortal(newSViv(win->w_cursor.col)));
1682 }
Bram Moolenaara1711622011-07-27 14:15:46 +02001683 else if (items == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 {
1685 int lnum, col;
1686
1687 if (!win_valid(win))
1688 win = curwin;
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001689 lnum = (int) SvIV(ST(1));
1690 col = (int) SvIV(ST(2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 win->w_cursor.lnum = lnum;
1692 win->w_cursor.col = col;
Bram Moolenaar53901442018-07-25 22:02:36 +02001693 win->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694 check_cursor(); /* put cursor on an existing line */
1695 update_screen(NOT_VALID);
1696 }
1697
1698MODULE = VIM PACKAGE = VIBUF
1699
1700void
1701DESTROY(vimbuf)
1702 VIBUF vimbuf;
1703
1704 CODE:
1705 if (buf_valid(vimbuf))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001706 vimbuf->b_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707
1708void
1709Name(vimbuf)
1710 VIBUF vimbuf;
1711
1712 PPCODE:
1713 if (!buf_valid(vimbuf))
1714 vimbuf = curbuf;
1715 /* No file name returns an empty string */
1716 if (vimbuf->b_fname == NULL)
1717 XPUSHs(sv_2mortal(newSVpv("", 0)));
1718 else
1719 XPUSHs(sv_2mortal(newSVpv((char *)vimbuf->b_fname, 0)));
1720
1721void
1722Number(vimbuf)
1723 VIBUF vimbuf;
1724
1725 PPCODE:
1726 if (!buf_valid(vimbuf))
1727 vimbuf = curbuf;
1728 XPUSHs(sv_2mortal(newSViv(vimbuf->b_fnum)));
1729
1730void
1731Count(vimbuf)
1732 VIBUF vimbuf;
1733
1734 PPCODE:
1735 if (!buf_valid(vimbuf))
1736 vimbuf = curbuf;
1737 XPUSHs(sv_2mortal(newSViv(vimbuf->b_ml.ml_line_count)));
1738
1739void
1740Get(vimbuf, ...)
1741 VIBUF vimbuf;
1742
1743 PREINIT:
1744 char_u *line;
1745 int i;
1746 long lnum;
1747 PPCODE:
1748 if (buf_valid(vimbuf))
1749 {
1750 for (i = 1; i < items; i++)
1751 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001752 lnum = (long) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1754 {
1755 line = ml_get_buf(vimbuf, lnum, FALSE);
1756 XPUSHs(sv_2mortal(newSVpv((char *)line, 0)));
1757 }
1758 }
1759 }
1760
1761void
1762Set(vimbuf, ...)
1763 VIBUF vimbuf;
1764
1765 PREINIT:
1766 int i;
1767 long lnum;
1768 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 PPCODE:
1770 if (buf_valid(vimbuf))
1771 {
1772 if (items < 3)
1773 croak("Usage: VIBUF::Set(vimbuf, lnum, @lines)");
1774
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001775 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 for(i = 2; i < items; i++, lnum++)
1777 {
1778 line = SvPV(ST(i),PL_na);
1779 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1780 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001781 aco_save_T aco;
1782
1783 /* set curwin/curbuf for "vimbuf" and save some things */
1784 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001785
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 if (u_savesub(lnum) == OK)
1787 {
1788 ml_replace(lnum, (char_u *)line, TRUE);
1789 changed_bytes(lnum, 0);
1790 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001791
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001792 /* restore curwin/curbuf and a few other things */
1793 aucmd_restbuf(&aco);
1794 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 }
1796 }
1797 }
1798
1799void
1800Delete(vimbuf, ...)
1801 VIBUF vimbuf;
1802
1803 PREINIT:
1804 long i, lnum = 0, count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 PPCODE:
1806 if (buf_valid(vimbuf))
1807 {
1808 if (items == 2)
1809 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001810 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 count = 1;
1812 }
1813 else if (items == 3)
1814 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001815 lnum = (long) SvIV(ST(1));
1816 count = (long) 1 + SvIV(ST(2)) - lnum;
Bram Moolenaara1711622011-07-27 14:15:46 +02001817 if (count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 count = 1;
Bram Moolenaara1711622011-07-27 14:15:46 +02001819 if (count < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820 {
1821 lnum -= count;
1822 count = -count;
1823 }
1824 }
1825 if (items >= 2)
1826 {
1827 for (i = 0; i < count; i++)
1828 {
1829 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1830 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001831 aco_save_T aco;
1832
1833 /* set curwin/curbuf for "vimbuf" and save some things */
1834 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001835
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836 if (u_savedel(lnum, 1) == OK)
1837 {
1838 ml_delete(lnum, 0);
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00001839 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 deleted_lines_mark(lnum, 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001842
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001843 /* restore curwin/curbuf and a few other things */
1844 aucmd_restbuf(&aco);
1845 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001846
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 update_curbuf(VALID);
1848 }
1849 }
1850 }
1851 }
1852
1853void
1854Append(vimbuf, ...)
1855 VIBUF vimbuf;
1856
1857 PREINIT:
1858 int i;
1859 long lnum;
1860 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 PPCODE:
1862 if (buf_valid(vimbuf))
1863 {
1864 if (items < 3)
1865 croak("Usage: VIBUF::Append(vimbuf, lnum, @lines)");
1866
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001867 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 for (i = 2; i < items; i++, lnum++)
1869 {
1870 line = SvPV(ST(i),PL_na);
1871 if (lnum >= 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1872 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001873 aco_save_T aco;
1874
1875 /* set curwin/curbuf for "vimbuf" and save some things */
1876 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001877
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 if (u_inssub(lnum + 1) == OK)
1879 {
1880 ml_append(lnum, (char_u *)line, (colnr_T)0, FALSE);
1881 appended_lines_mark(lnum, 1L);
1882 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001883
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001884 /* restore curwin/curbuf and a few other things */
1885 aucmd_restbuf(&aco);
1886 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001887
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 update_curbuf(VALID);
1889 }
1890 }
1891 }
1892
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001893#ifdef __GNUC__
1894# pragma GCC diagnostic pop
1895#endif