blob: 098b62e0991fa10243ae966fd7e97ed7bead3235 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 */
8/*
9 * if_perl.xs: Main code for Perl interface support.
10 * Mostly written by Sven Verdoolaege.
11 */
12
13#define _memory_h /* avoid memset redeclaration */
14#define IN_PERL_FILE /* don't include if_perl.pro from proto.h */
15
Bram Moolenaaraee1f4a2013-08-02 16:10:32 +020016/*
Bram Moolenaar6b107212013-12-11 15:06:40 +010017 * Currently 32-bit version of ActivePerl is built with VC6 (or MinGW since
18 * ActivePerl 5.18).
Bram Moolenaaraee1f4a2013-08-02 16:10:32 +020019 * (http://community.activestate.com/faq/windows-compilers-perl-modules)
20 * It means that time_t should be 32-bit. However the default size of
21 * time_t is 64-bit since VC8. So we have to define _USE_32BIT_TIME_T.
22 */
23#if defined(WIN32) && !defined(_WIN64)
24# define _USE_32BIT_TIME_T
25#endif
26
Bram Moolenaar6b107212013-12-11 15:06:40 +010027/*
28 * Prevent including winsock.h. perl.h tries to detect whether winsock.h is
29 * already included before including winsock2.h, because winsock2.h isn't
30 * compatible with winsock.h. However the detection doesn't work with some
31 * versions of MinGW. If WIN32_LEAN_AND_MEAN is defined, windows.h will not
32 * include winsock.h.
33 */
34#ifdef WIN32
35# define WIN32_LEAN_AND_MEAN
36#endif
37
Bram Moolenaar071d4272004-06-13 20:20:40 +000038#include "vim.h"
39
Bram Moolenaar7c0daf02013-12-14 11:46:08 +010040/* Work around for perl-5.18.
41 * Don't include "perl\lib\CORE\inline.h" for now,
42 * include it after Perl_sv_free2 is defined. */
43#ifdef DYNAMIC_PERL
44# define PERL_NO_INLINE_FUNCTIONS
45#endif
46
Bram Moolenaar207fd752013-12-14 11:50:35 +010047/* Work around for using MSVC and ActivePerl 5.18. */
48#ifdef _MSC_VER
49# define __inline__ __inline
50#endif
51
Bram Moolenaaraee1f4a2013-08-02 16:10:32 +020052#include <EXTERN.h>
53#include <perl.h>
54#include <XSUB.h>
55
Bram Moolenaar071d4272004-06-13 20:20:40 +000056
57/*
58 * Work around clashes between Perl and Vim namespace. proto.h doesn't
59 * include if_perl.pro and perlsfio.pro when IN_PERL_FILE is defined, because
60 * we need the CV typedef. proto.h can't be moved to after including
61 * if_perl.h, because we get all sorts of name clashes then.
62 */
63#ifndef PROTO
64#ifndef __MINGW32__
65# include "proto/if_perl.pro"
66# include "proto/if_perlsfio.pro"
67#endif
68#endif
69
70/* Perl compatibility stuff. This should ensure compatibility with older
71 * versions of Perl.
72 */
73
74#ifndef PERL_VERSION
75# include <patchlevel.h>
76# define PERL_REVISION 5
77# define PERL_VERSION PATCHLEVEL
78# define PERL_SUBVERSION SUBVERSION
79#endif
80
Bram Moolenaar700d1d72007-09-13 13:20:16 +000081/*
82 * Quoting Jan Dubois of Active State:
83 * ActivePerl build 822 still identifies itself as 5.8.8 but already
84 * contains many of the changes from the upcoming Perl 5.8.9 release.
85 *
86 * The changes include addition of two symbols (Perl_sv_2iv_flags,
87 * Perl_newXS_flags) not present in earlier releases.
88 *
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +000089 * Jan Dubois suggested the following guarding scheme.
90 *
91 * Active State defined ACTIVEPERL_VERSION as a string in versions before
92 * 5.8.8; and so the comparison to 822 below needs to be guarded.
Bram Moolenaar700d1d72007-09-13 13:20:16 +000093 */
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +000094#if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 8)
95# if (ACTIVEPERL_VERSION >= 822) || (PERL_SUBVERSION >= 9)
96# define PERL589_OR_LATER
97# endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +000098#endif
99#if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
100# define PERL589_OR_LATER
101#endif
102
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100103#if (PERL_REVISION == 5) && ((PERL_VERSION > 10) || \
104 (PERL_VERSION == 10) && (PERL_SUBVERSION >= 1))
105# define PERL5101_OR_LATER
106#endif
107
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108#ifndef pTHX
109# define pTHX void
110# define pTHX_
111#endif
112
113#ifndef EXTERN_C
114# define EXTERN_C
115#endif
116
Bram Moolenaarc271c482012-08-08 13:17:31 +0200117#if (PERL_REVISION == 5) && (PERL_VERSION >= 14) && defined(_MSC_VER)
118/* Using PL_errgv to get the error message after perl_eval_sv() causes a crash
119 * with MSVC and Perl version 5.14. */
120# define AVOID_PL_ERRGV
121#endif
122
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123/* Compatibility hacks over */
124
125static PerlInterpreter *perl_interp = NULL;
126static void xs_init __ARGS((pTHX));
127static void VIM_init __ARGS((void));
128EXTERN_C void boot_DynaLoader __ARGS((pTHX_ CV*));
129
130/*
Bram Moolenaare06c1882010-07-21 22:05:20 +0200131 * For dynamic linked perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132 */
133#if defined(DYNAMIC_PERL) || defined(PROTO)
Bram Moolenaare06c1882010-07-21 22:05:20 +0200134
135#ifndef DYNAMIC_PERL /* just generating prototypes */
Bram Moolenaar766fb0d2010-07-22 11:34:16 +0200136#ifdef WIN3264
Bram Moolenaare06c1882010-07-21 22:05:20 +0200137typedef int HANDLE;
138#endif
139typedef int XSINIT_t;
140typedef int XSUBADDR_t;
Bram Moolenaard8619992014-03-12 17:08:05 +0100141#endif
142#ifndef USE_ITHREADS
Bram Moolenaare06c1882010-07-21 22:05:20 +0200143typedef int perl_key;
144#endif
145
Bram Moolenaar766fb0d2010-07-22 11:34:16 +0200146#ifndef WIN3264
Bram Moolenaare06c1882010-07-21 22:05:20 +0200147#include <dlfcn.h>
148#define HANDLE void*
149#define PERL_PROC void*
150#define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
151#define symbol_from_dll dlsym
152#define close_dll dlclose
153#else
154#define PERL_PROC FARPROC
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200155#define load_dll vimLoadLib
Bram Moolenaare06c1882010-07-21 22:05:20 +0200156#define symbol_from_dll GetProcAddress
157#define close_dll FreeLibrary
158#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159/*
160 * Wrapper defines
161 */
162# define perl_alloc dll_perl_alloc
163# define perl_construct dll_perl_construct
164# define perl_parse dll_perl_parse
165# define perl_run dll_perl_run
166# define perl_destruct dll_perl_destruct
167# define perl_free dll_perl_free
168# define Perl_get_context dll_Perl_get_context
169# define Perl_croak dll_Perl_croak
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100170# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100171# define Perl_croak_xs_usage dll_Perl_croak_xs_usage
172# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173# ifndef PROTO
174# define Perl_croak_nocontext dll_Perl_croak_nocontext
175# define Perl_call_argv dll_Perl_call_argv
176# define Perl_call_pv dll_Perl_call_pv
177# define Perl_eval_sv dll_Perl_eval_sv
178# define Perl_get_sv dll_Perl_get_sv
179# define Perl_eval_pv dll_Perl_eval_pv
180# define Perl_call_method dll_Perl_call_method
181# endif
182# define Perl_dowantarray dll_Perl_dowantarray
183# define Perl_free_tmps dll_Perl_free_tmps
184# define Perl_gv_stashpv dll_Perl_gv_stashpv
185# define Perl_markstack_grow dll_Perl_markstack_grow
186# define Perl_mg_find dll_Perl_mg_find
187# define Perl_newXS dll_Perl_newXS
188# define Perl_newSV dll_Perl_newSV
189# define Perl_newSViv dll_Perl_newSViv
190# define Perl_newSVpv dll_Perl_newSVpv
191# define Perl_pop_scope dll_Perl_pop_scope
192# define Perl_push_scope dll_Perl_push_scope
193# define Perl_save_int dll_Perl_save_int
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200194# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
195# define Perl_save_strlen dll_Perl_save_strlen
196# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197# define Perl_stack_grow dll_Perl_stack_grow
198# define Perl_set_context dll_Perl_set_context
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200199# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200200# define Perl_sv_2bool_flags dll_Perl_sv_2bool_flags
201# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
202# define Perl_xs_apiversion_bootcheck dll_Perl_xs_apiversion_bootcheck
203# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200204# else
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200205# define Perl_sv_2bool dll_Perl_sv_2bool
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200206# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207# define Perl_sv_2iv dll_Perl_sv_2iv
208# define Perl_sv_2mortal dll_Perl_sv_2mortal
209# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
210# define Perl_sv_2pv_flags dll_Perl_sv_2pv_flags
211# define Perl_sv_2pv_nolen dll_Perl_sv_2pv_nolen
212# else
213# define Perl_sv_2pv dll_Perl_sv_2pv
214# endif
215# define Perl_sv_bless dll_Perl_sv_bless
216# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
217# define Perl_sv_catpvn_flags dll_Perl_sv_catpvn_flags
218# else
219# define Perl_sv_catpvn dll_Perl_sv_catpvn
220# endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000221#ifdef PERL589_OR_LATER
222# define Perl_sv_2iv_flags dll_Perl_sv_2iv_flags
223# define Perl_newXS_flags dll_Perl_newXS_flags
224#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225# define Perl_sv_free dll_Perl_sv_free
Bram Moolenaarccf22172008-09-01 15:56:45 +0000226# if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
227# define Perl_sv_free2 dll_Perl_sv_free2
228# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229# define Perl_sv_isa dll_Perl_sv_isa
230# define Perl_sv_magic dll_Perl_sv_magic
231# define Perl_sv_setiv dll_Perl_sv_setiv
232# define Perl_sv_setpv dll_Perl_sv_setpv
233# define Perl_sv_setpvn dll_Perl_sv_setpvn
234# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
235# define Perl_sv_setsv_flags dll_Perl_sv_setsv_flags
236# else
237# define Perl_sv_setsv dll_Perl_sv_setsv
238# endif
239# define Perl_sv_upgrade dll_Perl_sv_upgrade
240# define Perl_Tstack_sp_ptr dll_Perl_Tstack_sp_ptr
241# define Perl_Top_ptr dll_Perl_Top_ptr
242# define Perl_Tstack_base_ptr dll_Perl_Tstack_base_ptr
243# define Perl_Tstack_max_ptr dll_Perl_Tstack_max_ptr
244# define Perl_Ttmps_ix_ptr dll_Perl_Ttmps_ix_ptr
245# define Perl_Ttmps_floor_ptr dll_Perl_Ttmps_floor_ptr
246# define Perl_Tmarkstack_ptr_ptr dll_Perl_Tmarkstack_ptr_ptr
247# define Perl_Tmarkstack_max_ptr dll_Perl_Tmarkstack_max_ptr
248# define Perl_TSv_ptr dll_Perl_TSv_ptr
249# define Perl_TXpv_ptr dll_Perl_TXpv_ptr
250# define Perl_Tna_ptr dll_Perl_Tna_ptr
251# define Perl_Idefgv_ptr dll_Perl_Idefgv_ptr
252# define Perl_Ierrgv_ptr dll_Perl_Ierrgv_ptr
253# define Perl_Isv_yes_ptr dll_Perl_Isv_yes_ptr
254# define boot_DynaLoader dll_boot_DynaLoader
Bram Moolenaare06c1882010-07-21 22:05:20 +0200255# define Perl_Gthr_key_ptr dll_Perl_Gthr_key_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000257# define Perl_sys_init dll_Perl_sys_init
Bram Moolenaarc236c162008-07-13 17:41:49 +0000258# define Perl_sys_term dll_Perl_sys_term
259# define Perl_ISv_ptr dll_Perl_ISv_ptr
260# define Perl_Istack_max_ptr dll_Perl_Istack_max_ptr
261# define Perl_Istack_base_ptr dll_Perl_Istack_base_ptr
262# define Perl_Itmps_ix_ptr dll_Perl_Itmps_ix_ptr
263# define Perl_Itmps_floor_ptr dll_Perl_Itmps_floor_ptr
264# define Perl_IXpv_ptr dll_Perl_IXpv_ptr
265# define Perl_Ina_ptr dll_Perl_Ina_ptr
266# define Perl_Imarkstack_ptr_ptr dll_Perl_Imarkstack_ptr_ptr
267# define Perl_Imarkstack_max_ptr dll_Perl_Imarkstack_max_ptr
268# define Perl_Istack_sp_ptr dll_Perl_Istack_sp_ptr
269# define Perl_Iop_ptr dll_Perl_Iop_ptr
270# define Perl_call_list dll_Perl_call_list
271# define Perl_Iscopestack_ix_ptr dll_Perl_Iscopestack_ix_ptr
272# define Perl_Iunitcheckav_ptr dll_Perl_Iunitcheckav_ptr
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200273# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
274# define Perl_xs_handshake dll_Perl_xs_handshake
275# define Perl_xs_boot_epilog dll_Perl_xs_boot_epilog
276# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200277# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100278# ifdef USE_ITHREADS
279# define PL_thr_key *dll_PL_thr_key
280# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200281# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000282
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283/*
284 * Declare HANDLE for perl.dll and function pointers.
285 */
286static HANDLE hPerlLib = NULL;
287
288static PerlInterpreter* (*perl_alloc)();
289static void (*perl_construct)(PerlInterpreter*);
290static void (*perl_destruct)(PerlInterpreter*);
291static void (*perl_free)(PerlInterpreter*);
292static int (*perl_run)(PerlInterpreter*);
293static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
294static void* (*Perl_get_context)(void);
Bram Moolenaara7ecc562006-08-16 16:17:39 +0000295static void (*Perl_croak)(pTHX_ const char*, ...);
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100296#ifdef PERL5101_OR_LATER
Bram Moolenaar6b107212013-12-11 15:06:40 +0100297/* Perl-5.18 has a different Perl_croak_xs_usage signature. */
298# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
299static void (*Perl_croak_xs_usage)(const CV *const, const char *const params);
300# else
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100301static void (*Perl_croak_xs_usage)(pTHX_ const CV *const, const char *const params);
Bram Moolenaar6b107212013-12-11 15:06:40 +0100302# endif
Bram Moolenaar9be6e212013-06-15 16:47:35 +0200303#endif
Bram Moolenaara7ecc562006-08-16 16:17:39 +0000304static void (*Perl_croak_nocontext)(const char*, ...);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305static I32 (*Perl_dowantarray)(pTHX);
306static void (*Perl_free_tmps)(pTHX);
307static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200308#if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
309static I32* (*Perl_markstack_grow)(pTHX);
310#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311static void (*Perl_markstack_grow)(pTHX);
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200312#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313static MAGIC* (*Perl_mg_find)(pTHX_ SV*, int);
314static CV* (*Perl_newXS)(pTHX_ char*, XSUBADDR_t, char*);
315static SV* (*Perl_newSV)(pTHX_ STRLEN);
316static SV* (*Perl_newSViv)(pTHX_ IV);
317static SV* (*Perl_newSVpv)(pTHX_ const char*, STRLEN);
318static I32 (*Perl_call_argv)(pTHX_ const char*, I32, char**);
319static I32 (*Perl_call_pv)(pTHX_ const char*, I32);
320static I32 (*Perl_eval_sv)(pTHX_ SV*, I32);
321static SV* (*Perl_get_sv)(pTHX_ const char*, I32);
322static SV* (*Perl_eval_pv)(pTHX_ const char*, I32);
323static SV* (*Perl_call_method)(pTHX_ const char*, I32);
324static void (*Perl_pop_scope)(pTHX);
325static void (*Perl_push_scope)(pTHX);
326static void (*Perl_save_int)(pTHX_ int*);
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200327#if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
328static void (*Perl_save_strlen)(pTHX_ STRLEN* ptr);
329#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330static SV** (*Perl_stack_grow)(pTHX_ SV**, SV**p, int);
331static SV** (*Perl_set_context)(void*);
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200332#if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
333static bool (*Perl_sv_2bool_flags)(pTHX_ SV*, I32);
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200334# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200335static void (*Perl_xs_apiversion_bootcheck)(pTHX_ SV *module, const char *api_p, STRLEN api_len);
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200336# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200337#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338static bool (*Perl_sv_2bool)(pTHX_ SV*);
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200339#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340static IV (*Perl_sv_2iv)(pTHX_ SV*);
341static SV* (*Perl_sv_2mortal)(pTHX_ SV*);
342#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
343static char* (*Perl_sv_2pv_flags)(pTHX_ SV*, STRLEN*, I32);
344static char* (*Perl_sv_2pv_nolen)(pTHX_ SV*);
345#else
346static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*);
347#endif
348static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*);
349#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
350static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32);
351#else
352static void (*Perl_sv_catpvn)(pTHX_ SV*, const char*, STRLEN);
353#endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000354#ifdef PERL589_OR_LATER
355static IV (*Perl_sv_2iv_flags)(pTHX_ SV* sv, I32 flags);
356static CV * (*Perl_newXS_flags)(pTHX_ const char *name, XSUBADDR_t subaddr, const char *const filename, const char *const proto, U32 flags);
357#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358static void (*Perl_sv_free)(pTHX_ SV*);
359static int (*Perl_sv_isa)(pTHX_ SV*, const char*);
360static void (*Perl_sv_magic)(pTHX_ SV*, SV*, int, const char*, I32);
361static void (*Perl_sv_setiv)(pTHX_ SV*, IV);
362static void (*Perl_sv_setpv)(pTHX_ SV*, const char*);
363static void (*Perl_sv_setpvn)(pTHX_ SV*, const char*, STRLEN);
364#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
365static void (*Perl_sv_setsv_flags)(pTHX_ SV*, SV*, I32);
366#else
367static void (*Perl_sv_setsv)(pTHX_ SV*, SV*);
368#endif
369static bool (*Perl_sv_upgrade)(pTHX_ SV*, U32);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200370#if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371static SV*** (*Perl_Tstack_sp_ptr)(register PerlInterpreter*);
372static OP** (*Perl_Top_ptr)(register PerlInterpreter*);
373static SV*** (*Perl_Tstack_base_ptr)(register PerlInterpreter*);
374static SV*** (*Perl_Tstack_max_ptr)(register PerlInterpreter*);
375static I32* (*Perl_Ttmps_ix_ptr)(register PerlInterpreter*);
376static I32* (*Perl_Ttmps_floor_ptr)(register PerlInterpreter*);
377static I32** (*Perl_Tmarkstack_ptr_ptr)(register PerlInterpreter*);
378static I32** (*Perl_Tmarkstack_max_ptr)(register PerlInterpreter*);
379static SV** (*Perl_TSv_ptr)(register PerlInterpreter*);
380static XPV** (*Perl_TXpv_ptr)(register PerlInterpreter*);
381static STRLEN* (*Perl_Tna_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200382#else
Bram Moolenaar6b107212013-12-11 15:06:40 +0100383/* Perl-5.18 has a different Perl_sv_free2 signature. */
384# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
385static void (*Perl_sv_free2)(pTHX_ SV*, const U32);
386# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000387static void (*Perl_sv_free2)(pTHX_ SV*);
Bram Moolenaar6b107212013-12-11 15:06:40 +0100388# endif
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000389static void (*Perl_sys_init)(int* argc, char*** argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000390static void (*Perl_sys_term)(void);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200391static void (*Perl_call_list)(pTHX_ I32, AV*);
392# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
393# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000394static SV** (*Perl_ISv_ptr)(register PerlInterpreter*);
395static SV*** (*Perl_Istack_max_ptr)(register PerlInterpreter*);
396static SV*** (*Perl_Istack_base_ptr)(register PerlInterpreter*);
397static XPV** (*Perl_IXpv_ptr)(register PerlInterpreter*);
398static I32* (*Perl_Itmps_ix_ptr)(register PerlInterpreter*);
399static I32* (*Perl_Itmps_floor_ptr)(register PerlInterpreter*);
400static STRLEN* (*Perl_Ina_ptr)(register PerlInterpreter*);
401static I32** (*Perl_Imarkstack_ptr_ptr)(register PerlInterpreter*);
402static I32** (*Perl_Imarkstack_max_ptr)(register PerlInterpreter*);
403static SV*** (*Perl_Istack_sp_ptr)(register PerlInterpreter*);
404static OP** (*Perl_Iop_ptr)(register PerlInterpreter*);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000405static I32* (*Perl_Iscopestack_ix_ptr)(register PerlInterpreter*);
406static AV** (*Perl_Iunitcheckav_ptr)(register PerlInterpreter*);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200407# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000408#endif
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200409#if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
410static I32 (*Perl_xs_handshake)(const U32, void *, const char *, ...);
411static void (*Perl_xs_boot_epilog)(pTHX_ const U32);
412#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200414#if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100415# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200416static perl_key* dll_PL_thr_key;
Bram Moolenaard8619992014-03-12 17:08:05 +0100417# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200418#else
Bram Moolenaare06c1882010-07-21 22:05:20 +0200419static GV** (*Perl_Idefgv_ptr)(register PerlInterpreter*);
420static GV** (*Perl_Ierrgv_ptr)(register PerlInterpreter*);
421static SV* (*Perl_Isv_yes_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200422static perl_key* (*Perl_Gthr_key_ptr)_((pTHX));
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200423#endif
424static void (*boot_DynaLoader)_((pTHX_ CV*));
Bram Moolenaare06c1882010-07-21 22:05:20 +0200425
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426/*
427 * Table of name to function pointer of perl.
428 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429static struct {
430 char* name;
431 PERL_PROC* ptr;
432} perl_funcname_table[] = {
433 {"perl_alloc", (PERL_PROC*)&perl_alloc},
434 {"perl_construct", (PERL_PROC*)&perl_construct},
435 {"perl_destruct", (PERL_PROC*)&perl_destruct},
436 {"perl_free", (PERL_PROC*)&perl_free},
437 {"perl_run", (PERL_PROC*)&perl_run},
438 {"perl_parse", (PERL_PROC*)&perl_parse},
439 {"Perl_get_context", (PERL_PROC*)&Perl_get_context},
440 {"Perl_croak", (PERL_PROC*)&Perl_croak},
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100441#ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100442 {"Perl_croak_xs_usage", (PERL_PROC*)&Perl_croak_xs_usage},
443#endif
Bram Moolenaard8619992014-03-12 17:08:05 +0100444#ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445 {"Perl_croak_nocontext", (PERL_PROC*)&Perl_croak_nocontext},
Bram Moolenaard8619992014-03-12 17:08:05 +0100446#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 {"Perl_dowantarray", (PERL_PROC*)&Perl_dowantarray},
448 {"Perl_free_tmps", (PERL_PROC*)&Perl_free_tmps},
449 {"Perl_gv_stashpv", (PERL_PROC*)&Perl_gv_stashpv},
450 {"Perl_markstack_grow", (PERL_PROC*)&Perl_markstack_grow},
451 {"Perl_mg_find", (PERL_PROC*)&Perl_mg_find},
452 {"Perl_newXS", (PERL_PROC*)&Perl_newXS},
453 {"Perl_newSV", (PERL_PROC*)&Perl_newSV},
454 {"Perl_newSViv", (PERL_PROC*)&Perl_newSViv},
455 {"Perl_newSVpv", (PERL_PROC*)&Perl_newSVpv},
456 {"Perl_call_argv", (PERL_PROC*)&Perl_call_argv},
457 {"Perl_call_pv", (PERL_PROC*)&Perl_call_pv},
458 {"Perl_eval_sv", (PERL_PROC*)&Perl_eval_sv},
459 {"Perl_get_sv", (PERL_PROC*)&Perl_get_sv},
460 {"Perl_eval_pv", (PERL_PROC*)&Perl_eval_pv},
461 {"Perl_call_method", (PERL_PROC*)&Perl_call_method},
462 {"Perl_pop_scope", (PERL_PROC*)&Perl_pop_scope},
463 {"Perl_push_scope", (PERL_PROC*)&Perl_push_scope},
464 {"Perl_save_int", (PERL_PROC*)&Perl_save_int},
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200465#if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
466 {"Perl_save_strlen", (PERL_PROC*)&Perl_save_strlen},
467#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468 {"Perl_stack_grow", (PERL_PROC*)&Perl_stack_grow},
469 {"Perl_set_context", (PERL_PROC*)&Perl_set_context},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200470#if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
471 {"Perl_sv_2bool_flags", (PERL_PROC*)&Perl_sv_2bool_flags},
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200472# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200473 {"Perl_xs_apiversion_bootcheck",(PERL_PROC*)&Perl_xs_apiversion_bootcheck},
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200474# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200475#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476 {"Perl_sv_2bool", (PERL_PROC*)&Perl_sv_2bool},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200477#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478 {"Perl_sv_2iv", (PERL_PROC*)&Perl_sv_2iv},
479 {"Perl_sv_2mortal", (PERL_PROC*)&Perl_sv_2mortal},
480#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
481 {"Perl_sv_2pv_flags", (PERL_PROC*)&Perl_sv_2pv_flags},
482 {"Perl_sv_2pv_nolen", (PERL_PROC*)&Perl_sv_2pv_nolen},
483#else
484 {"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv},
485#endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000486#ifdef PERL589_OR_LATER
487 {"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags},
488 {"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags},
489#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490 {"Perl_sv_bless", (PERL_PROC*)&Perl_sv_bless},
491#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
492 {"Perl_sv_catpvn_flags", (PERL_PROC*)&Perl_sv_catpvn_flags},
493#else
494 {"Perl_sv_catpvn", (PERL_PROC*)&Perl_sv_catpvn},
495#endif
496 {"Perl_sv_free", (PERL_PROC*)&Perl_sv_free},
497 {"Perl_sv_isa", (PERL_PROC*)&Perl_sv_isa},
498 {"Perl_sv_magic", (PERL_PROC*)&Perl_sv_magic},
499 {"Perl_sv_setiv", (PERL_PROC*)&Perl_sv_setiv},
500 {"Perl_sv_setpv", (PERL_PROC*)&Perl_sv_setpv},
501 {"Perl_sv_setpvn", (PERL_PROC*)&Perl_sv_setpvn},
502#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
503 {"Perl_sv_setsv_flags", (PERL_PROC*)&Perl_sv_setsv_flags},
504#else
505 {"Perl_sv_setsv", (PERL_PROC*)&Perl_sv_setsv},
506#endif
507 {"Perl_sv_upgrade", (PERL_PROC*)&Perl_sv_upgrade},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000508#if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509 {"Perl_Tstack_sp_ptr", (PERL_PROC*)&Perl_Tstack_sp_ptr},
510 {"Perl_Top_ptr", (PERL_PROC*)&Perl_Top_ptr},
511 {"Perl_Tstack_base_ptr", (PERL_PROC*)&Perl_Tstack_base_ptr},
512 {"Perl_Tstack_max_ptr", (PERL_PROC*)&Perl_Tstack_max_ptr},
513 {"Perl_Ttmps_ix_ptr", (PERL_PROC*)&Perl_Ttmps_ix_ptr},
514 {"Perl_Ttmps_floor_ptr", (PERL_PROC*)&Perl_Ttmps_floor_ptr},
515 {"Perl_Tmarkstack_ptr_ptr", (PERL_PROC*)&Perl_Tmarkstack_ptr_ptr},
516 {"Perl_Tmarkstack_max_ptr", (PERL_PROC*)&Perl_Tmarkstack_max_ptr},
517 {"Perl_TSv_ptr", (PERL_PROC*)&Perl_TSv_ptr},
518 {"Perl_TXpv_ptr", (PERL_PROC*)&Perl_TXpv_ptr},
519 {"Perl_Tna_ptr", (PERL_PROC*)&Perl_Tna_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000520#else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000521 {"Perl_sv_free2", (PERL_PROC*)&Perl_sv_free2},
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000522 {"Perl_sys_init", (PERL_PROC*)&Perl_sys_init},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000523 {"Perl_sys_term", (PERL_PROC*)&Perl_sys_term},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200524 {"Perl_call_list", (PERL_PROC*)&Perl_call_list},
525# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
526# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000527 {"Perl_ISv_ptr", (PERL_PROC*)&Perl_ISv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000528 {"Perl_Istack_max_ptr", (PERL_PROC*)&Perl_Istack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200529 {"Perl_Istack_base_ptr", (PERL_PROC*)&Perl_Istack_base_ptr},
530 {"Perl_IXpv_ptr", (PERL_PROC*)&Perl_IXpv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000531 {"Perl_Itmps_ix_ptr", (PERL_PROC*)&Perl_Itmps_ix_ptr},
532 {"Perl_Itmps_floor_ptr", (PERL_PROC*)&Perl_Itmps_floor_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200533 {"Perl_Ina_ptr", (PERL_PROC*)&Perl_Ina_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000534 {"Perl_Imarkstack_ptr_ptr", (PERL_PROC*)&Perl_Imarkstack_ptr_ptr},
535 {"Perl_Imarkstack_max_ptr", (PERL_PROC*)&Perl_Imarkstack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200536 {"Perl_Istack_sp_ptr", (PERL_PROC*)&Perl_Istack_sp_ptr},
537 {"Perl_Iop_ptr", (PERL_PROC*)&Perl_Iop_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000538 {"Perl_Iscopestack_ix_ptr", (PERL_PROC*)&Perl_Iscopestack_ix_ptr},
539 {"Perl_Iunitcheckav_ptr", (PERL_PROC*)&Perl_Iunitcheckav_ptr},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200540# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000541#endif
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200542#if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
543 {"Perl_xs_handshake", (PERL_PROC*)&Perl_xs_handshake},
544 {"Perl_xs_boot_epilog", (PERL_PROC*)&Perl_xs_boot_epilog},
545#endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200546#if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100547# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200548 {"PL_thr_key", (PERL_PROC*)&dll_PL_thr_key},
Bram Moolenaard8619992014-03-12 17:08:05 +0100549# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200550#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 {"Perl_Idefgv_ptr", (PERL_PROC*)&Perl_Idefgv_ptr},
552 {"Perl_Ierrgv_ptr", (PERL_PROC*)&Perl_Ierrgv_ptr},
553 {"Perl_Isv_yes_ptr", (PERL_PROC*)&Perl_Isv_yes_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200554 {"Perl_Gthr_key_ptr", (PERL_PROC*)&Perl_Gthr_key_ptr},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200555#endif
556 {"boot_DynaLoader", (PERL_PROC*)&boot_DynaLoader},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 {"", NULL},
558};
559
Bram Moolenaar6b107212013-12-11 15:06:40 +0100560/* Work around for perl-5.18.
561 * The definitions of S_SvREFCNT_inc and S_SvREFCNT_dec are needed, so include
562 * "perl\lib\CORE\inline.h", after Perl_sv_free2 is defined.
563 * The linker won't complain about undefined __impl_Perl_sv_free2. */
564#if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
565# include <inline.h>
566#endif
567
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568/*
569 * Make all runtime-links of perl.
570 *
Bram Moolenaar364ab2f2013-08-02 20:05:32 +0200571 * 1. Get module handle using dlopen() or vimLoadLib().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 * 2. Get pointer to perl function by GetProcAddress.
573 * 3. Repeat 2, until get all functions will be used.
574 *
575 * Parameter 'libname' provides name of DLL.
576 * Return OK or FAIL.
577 */
578 static int
579perl_runtime_link_init(char *libname, int verbose)
580{
581 int i;
582
583 if (hPerlLib != NULL)
584 return OK;
Bram Moolenaare06c1882010-07-21 22:05:20 +0200585 if ((hPerlLib = load_dll(libname)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 {
587 if (verbose)
588 EMSG2(_("E370: Could not load library %s"), libname);
589 return FAIL;
590 }
591 for (i = 0; perl_funcname_table[i].ptr; ++i)
592 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200593 if (!(*perl_funcname_table[i].ptr = symbol_from_dll(hPerlLib,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 perl_funcname_table[i].name)))
595 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200596 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 hPerlLib = NULL;
598 if (verbose)
599 EMSG2(_(e_loadfunc), perl_funcname_table[i].name);
600 return FAIL;
601 }
602 }
603 return OK;
604}
605
606/*
607 * If runtime-link-perl(DLL) was loaded successfully, return TRUE.
608 * There were no DLL loaded, return FALSE.
609 */
610 int
611perl_enabled(verbose)
612 int verbose;
613{
Bram Moolenaar25e4fcd2016-01-09 14:57:47 +0100614 return perl_runtime_link_init((char *)p_perldll, verbose) == OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615}
616#endif /* DYNAMIC_PERL */
617
618/*
619 * perl_init(): initialize perl interpreter
620 * We have to call perl_parse to initialize some structures,
621 * there's nothing to actually parse.
622 */
623 static void
624perl_init()
625{
Bram Moolenaarc236c162008-07-13 17:41:49 +0000626 char *bootargs[] = { "VI", NULL };
627 int argc = 3;
628 static char *argv[] = { "", "-e", "" };
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629
Bram Moolenaarc236c162008-07-13 17:41:49 +0000630#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000631 Perl_sys_init(&argc, (char***)&argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000632#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633 perl_interp = perl_alloc();
634 perl_construct(perl_interp);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000635 perl_parse(perl_interp, xs_init, argc, argv, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 perl_call_argv("VIM::bootstrap", (long)G_DISCARD, bootargs);
637 VIM_init();
638#ifdef USE_SFIO
639 sfdisc(PerlIO_stdout(), sfdcnewvim());
640 sfdisc(PerlIO_stderr(), sfdcnewvim());
641 sfsetbuf(PerlIO_stdout(), NULL, 0);
642 sfsetbuf(PerlIO_stderr(), NULL, 0);
643#endif
644}
645
646/*
647 * perl_end(): clean up after ourselves
648 */
649 void
650perl_end()
651{
652 if (perl_interp)
653 {
654 perl_run(perl_interp);
655 perl_destruct(perl_interp);
656 perl_free(perl_interp);
657 perl_interp = NULL;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000658#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
659 Perl_sys_term();
660#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661 }
662#ifdef DYNAMIC_PERL
663 if (hPerlLib)
664 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200665 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 hPerlLib = NULL;
667 }
668#endif
669}
670
671/*
672 * msg_split(): send a message to the message handling routines
673 * split at '\n' first though.
674 */
675 void
676msg_split(s, attr)
677 char_u *s;
678 int attr; /* highlighting attributes */
679{
680 char *next;
681 char *token = (char *)s;
682
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000683 while ((next = strchr(token, '\n')) && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 {
685 *next++ = '\0'; /* replace \n with \0 */
686 msg_attr((char_u *)token, attr);
687 token = next;
688 }
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000689 if (*token && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 msg_attr((char_u *)token, attr);
691}
692
693#ifndef FEAT_EVAL
694/*
695 * This stub is needed because an "#ifdef FEAT_EVAL" around Eval() doesn't
696 * work properly.
697 */
698 char_u *
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000699eval_to_string(arg, nextcmd, dolist)
Bram Moolenaarfeeaa682013-02-14 22:19:51 +0100700 char_u *arg UNUSED;
701 char_u **nextcmd UNUSED;
702 int dolist UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000703{
704 return NULL;
705}
706#endif
707
708/*
709 * Create a new reference to an SV pointing to the SCR structure
Bram Moolenaare344bea2005-09-01 20:46:49 +0000710 * The b_perl_private/w_perl_private part of the SCR structure points to the
711 * SV, so there can only be one such SV for a particular SCR structure. When
712 * the last reference has gone (DESTROY is called),
713 * b_perl_private/w_perl_private is reset; When the screen goes away before
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714 * all references are gone, the value of the SV is reset;
715 * any subsequent use of any of those reference will produce
716 * a warning. (see typemap)
717 */
Bram Moolenaare344bea2005-09-01 20:46:49 +0000718
719 static SV *
720newWINrv(rv, ptr)
721 SV *rv;
722 win_T *ptr;
723{
724 sv_upgrade(rv, SVt_RV);
725 if (ptr->w_perl_private == NULL)
726 {
727 ptr->w_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100728 sv_setiv(ptr->w_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000729 }
730 else
731 SvREFCNT_inc(ptr->w_perl_private);
732 SvRV(rv) = ptr->w_perl_private;
733 SvROK_on(rv);
734 return sv_bless(rv, gv_stashpv("VIWIN", TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735}
736
Bram Moolenaare344bea2005-09-01 20:46:49 +0000737 static SV *
738newBUFrv(rv, ptr)
739 SV *rv;
740 buf_T *ptr;
741{
742 sv_upgrade(rv, SVt_RV);
743 if (ptr->b_perl_private == NULL)
744 {
745 ptr->b_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100746 sv_setiv(ptr->b_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000747 }
748 else
749 SvREFCNT_inc(ptr->b_perl_private);
750 SvRV(rv) = ptr->b_perl_private;
751 SvROK_on(rv);
752 return sv_bless(rv, gv_stashpv("VIBUF", TRUE));
753}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754
755/*
756 * perl_win_free
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200757 * Remove all references to the window to be destroyed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 */
759 void
760perl_win_free(wp)
761 win_T *wp;
762{
Bram Moolenaare344bea2005-09-01 20:46:49 +0000763 if (wp->w_perl_private)
764 sv_setiv((SV *)wp->w_perl_private, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765 return;
766}
767
768 void
769perl_buf_free(bp)
770 buf_T *bp;
771{
Bram Moolenaare344bea2005-09-01 20:46:49 +0000772 if (bp->b_perl_private)
773 sv_setiv((SV *)bp->b_perl_private, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774 return;
775}
776
777#ifndef PROTO
778# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
779I32 cur_val(pTHX_ IV iv, SV *sv);
780# else
781I32 cur_val(IV iv, SV *sv);
782#endif
783
784/*
785 * Handler for the magic variables $main::curwin and $main::curbuf.
786 * The handler is put into the magic vtbl for these variables.
787 * (This is effectively a C-level equivalent of a tied variable).
788 * There is no "set" function as the variables are read-only.
789 */
790# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
791I32 cur_val(pTHX_ IV iv, SV *sv)
792# else
793I32 cur_val(IV iv, SV *sv)
794# endif
795{
796 SV *rv;
797 if (iv == 0)
798 rv = newWINrv(newSV(0), curwin);
799 else
800 rv = newBUFrv(newSV(0), curbuf);
801 sv_setsv(sv, rv);
802 return 0;
803}
804#endif /* !PROTO */
805
806struct ufuncs cw_funcs = { cur_val, 0, 0 };
807struct ufuncs cb_funcs = { cur_val, 0, 1 };
808
809/*
810 * VIM_init(): Vim-specific initialisation.
811 * Make the magical main::curwin and main::curbuf variables
812 */
813 static void
814VIM_init()
815{
816 static char cw[] = "main::curwin";
817 static char cb[] = "main::curbuf";
818 SV *sv;
819
820 sv = perl_get_sv(cw, TRUE);
821 sv_magic(sv, NULL, 'U', (char *)&cw_funcs, sizeof(cw_funcs));
822 SvREADONLY_on(sv);
823
824 sv = perl_get_sv(cb, TRUE);
825 sv_magic(sv, NULL, 'U', (char *)&cb_funcs, sizeof(cb_funcs));
826 SvREADONLY_on(sv);
827
828 /*
829 * Setup the Safe compartment.
830 * It shouldn't be a fatal error if the Safe module is missing.
831 * XXX: Only shares the 'Msg' routine (which has to be called
832 * like 'Msg(...)').
833 */
834 (void)perl_eval_pv( "if ( eval( 'require Safe' ) ) { $VIM::safe = Safe->new(); $VIM::safe->share_from( 'VIM', ['Msg'] ); }", G_DISCARD | G_VOID );
835
836}
837
838#ifdef DYNAMIC_PERL
839static char *e_noperl = N_("Sorry, this command is disabled: the Perl library could not be loaded.");
840#endif
841
842/*
843 * ":perl"
844 */
845 void
846ex_perl(eap)
847 exarg_T *eap;
848{
849 char *err;
850 char *script;
851 STRLEN length;
852 SV *sv;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200853#ifdef HAVE_SANDBOX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 SV *safe;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200855#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856
857 script = (char *)script_get(eap, eap->arg);
858 if (eap->skip)
859 {
860 vim_free(script);
861 return;
862 }
863
864 if (perl_interp == NULL)
865 {
866#ifdef DYNAMIC_PERL
867 if (!perl_enabled(TRUE))
868 {
869 EMSG(_(e_noperl));
870 vim_free(script);
871 return;
872 }
873#endif
874 perl_init();
875 }
876
877 {
878 dSP;
879 ENTER;
880 SAVETMPS;
881
882 if (script == NULL)
883 sv = newSVpv((char *)eap->arg, 0);
884 else
885 {
886 sv = newSVpv(script, 0);
887 vim_free(script);
888 }
889
890#ifdef HAVE_SANDBOX
891 if (sandbox)
892 {
Bram Moolenaara1711622011-07-27 14:15:46 +0200893 safe = perl_get_sv("VIM::safe", FALSE);
Bram Moolenaar3f947ea2009-07-14 14:04:54 +0000894# ifndef MAKE_TEST /* avoid a warning for unreachable code */
Bram Moolenaar954e8c52009-11-11 13:45:33 +0000895 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 EMSG(_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
897 else
Bram Moolenaar3f947ea2009-07-14 14:04:54 +0000898# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 {
900 PUSHMARK(SP);
901 XPUSHs(safe);
902 XPUSHs(sv);
903 PUTBACK;
904 perl_call_method("reval", G_DISCARD);
905 }
906 }
907 else
908#endif
909 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
910
911 SvREFCNT_dec(sv);
912
Bram Moolenaarc271c482012-08-08 13:17:31 +0200913#ifdef AVOID_PL_ERRGV
914 err = SvPV(perl_get_sv("@", GV_ADD), length);
915#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 err = SvPV(GvSV(PL_errgv), length);
Bram Moolenaarc271c482012-08-08 13:17:31 +0200917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918
919 FREETMPS;
920 LEAVE;
921
922 if (!length)
923 return;
924
925 msg_split((char_u *)err, highlight_attr[HLF_E]);
926 return;
927 }
928}
929
930 static int
931replace_line(line, end)
932 linenr_T *line, *end;
933{
934 char *str;
935
936 if (SvOK(GvSV(PL_defgv)))
937 {
938 str = SvPV(GvSV(PL_defgv), PL_na);
939 ml_replace(*line, (char_u *)str, 1);
940 changed_bytes(*line, 0);
941 }
942 else
943 {
944 ml_delete(*line, FALSE);
945 deleted_lines_mark(*line, 1L);
946 --(*end);
947 --(*line);
948 }
949 return OK;
950}
951
952/*
953 * ":perldo".
954 */
955 void
956ex_perldo(eap)
957 exarg_T *eap;
958{
959 STRLEN length;
960 SV *sv;
961 char *str;
962 linenr_T i;
963
964 if (bufempty())
965 return;
966
967 if (perl_interp == NULL)
968 {
969#ifdef DYNAMIC_PERL
970 if (!perl_enabled(TRUE))
971 {
972 EMSG(_(e_noperl));
973 return;
974 }
975#endif
976 perl_init();
977 }
978 {
979 dSP;
980 length = strlen((char *)eap->arg);
Bram Moolenaar9d75c832005-01-25 21:57:23 +0000981 sv = newSV(length + sizeof("sub VIM::perldo {") - 1 + 1);
982 sv_setpvn(sv, "sub VIM::perldo {", sizeof("sub VIM::perldo {") - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 sv_catpvn(sv, (char *)eap->arg, length);
984 sv_catpvn(sv, "}", 1);
985 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
986 SvREFCNT_dec(sv);
Bram Moolenaarc271c482012-08-08 13:17:31 +0200987#ifdef AVOID_PL_ERRGV
988 str = SvPV(perl_get_sv("@", GV_ADD), length);
989#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaarc271c482012-08-08 13:17:31 +0200991#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 if (length)
993 goto err;
994
995 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
996 return;
997
998 ENTER;
999 SAVETMPS;
1000 for (i = eap->line1; i <= eap->line2; i++)
1001 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001002 sv_setpv(GvSV(PL_defgv), (char *)ml_get(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003 PUSHMARK(sp);
1004 perl_call_pv("VIM::perldo", G_SCALAR | G_EVAL);
Bram Moolenaarc271c482012-08-08 13:17:31 +02001005#ifdef AVOID_PL_ERRGV
1006 str = SvPV(perl_get_sv("@", GV_ADD), length);
1007#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaarc271c482012-08-08 13:17:31 +02001009#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010 if (length)
1011 break;
1012 SPAGAIN;
1013 if (SvTRUEx(POPs))
1014 {
1015 if (replace_line(&i, &eap->line2) != OK)
1016 {
1017 PUTBACK;
1018 break;
1019 }
1020 }
1021 PUTBACK;
1022 }
1023 FREETMPS;
1024 LEAVE;
1025 check_cursor();
1026 update_screen(NOT_VALID);
1027 if (!length)
1028 return;
1029
1030err:
1031 msg_split((char_u *)str, highlight_attr[HLF_E]);
1032 return;
1033 }
1034}
1035
Bram Moolenaar01dd60c2008-07-24 14:24:48 +00001036#ifndef FEAT_WINDOWS
1037int win_valid(win_T *w) { return TRUE; }
1038int win_count() { return 1; }
1039win_T *win_find_nr(int n) { return curwin; }
1040#endif
1041
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042XS(boot_VIM);
1043
1044 static void
1045xs_init(pTHX)
1046{
1047 char *file = __FILE__;
1048
1049 /* DynaLoader is a special case */
1050 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
1051 newXS("VIM::bootstrap", boot_VIM, file);
1052}
1053
1054typedef win_T * VIWIN;
1055typedef buf_T * VIBUF;
1056
1057MODULE = VIM PACKAGE = VIM
1058
1059void
1060Msg(text, hl=NULL)
1061 char *text;
1062 char *hl;
1063
1064 PREINIT:
1065 int attr;
1066 int id;
1067
1068 PPCODE:
1069 if (text != NULL)
1070 {
1071 attr = 0;
1072 if (hl != NULL)
1073 {
1074 id = syn_name2id((char_u *)hl);
1075 if (id != 0)
1076 attr = syn_id2attr(id);
1077 }
1078 msg_split((char_u *)text, attr);
1079 }
1080
1081void
1082SetOption(line)
1083 char *line;
1084
1085 PPCODE:
1086 if (line != NULL)
1087 do_set((char_u *)line, 0);
1088 update_screen(NOT_VALID);
1089
1090void
1091DoCommand(line)
1092 char *line;
1093
1094 PPCODE:
1095 if (line != NULL)
1096 do_cmdline_cmd((char_u *)line);
1097
1098void
1099Eval(str)
1100 char *str;
1101
1102 PREINIT:
1103 char_u *value;
1104 PPCODE:
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001105 value = eval_to_string((char_u *)str, (char_u **)0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 if (value == NULL)
1107 {
1108 XPUSHs(sv_2mortal(newSViv(0)));
1109 XPUSHs(sv_2mortal(newSVpv("", 0)));
1110 }
1111 else
1112 {
1113 XPUSHs(sv_2mortal(newSViv(1)));
1114 XPUSHs(sv_2mortal(newSVpv((char *)value, 0)));
1115 vim_free(value);
1116 }
1117
1118void
1119Buffers(...)
1120
1121 PREINIT:
1122 buf_T *vimbuf;
1123 int i, b;
1124
1125 PPCODE:
1126 if (items == 0)
1127 {
1128 if (GIMME == G_SCALAR)
1129 {
1130 i = 0;
1131 for (vimbuf = firstbuf; vimbuf; vimbuf = vimbuf->b_next)
1132 ++i;
1133
1134 XPUSHs(sv_2mortal(newSViv(i)));
1135 }
1136 else
1137 {
1138 for (vimbuf = firstbuf; vimbuf; vimbuf = vimbuf->b_next)
1139 XPUSHs(newBUFrv(newSV(0), vimbuf));
1140 }
1141 }
1142 else
1143 {
1144 for (i = 0; i < items; i++)
1145 {
1146 SV *sv = ST(i);
1147 if (SvIOK(sv))
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001148 b = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 else
1150 {
1151 char_u *pat;
1152 STRLEN len;
1153
1154 pat = (char_u *)SvPV(sv, len);
1155 ++emsg_off;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001156 b = buflist_findpat(pat, pat+len, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 --emsg_off;
1158 }
1159
1160 if (b >= 0)
1161 {
1162 vimbuf = buflist_findnr(b);
1163 if (vimbuf)
1164 XPUSHs(newBUFrv(newSV(0), vimbuf));
1165 }
1166 }
1167 }
1168
1169void
1170Windows(...)
1171
1172 PREINIT:
1173 win_T *vimwin;
1174 int i, w;
1175
1176 PPCODE:
1177 if (items == 0)
1178 {
1179 if (GIMME == G_SCALAR)
1180 XPUSHs(sv_2mortal(newSViv(win_count())));
1181 else
1182 {
1183 for (vimwin = firstwin; vimwin != NULL; vimwin = W_NEXT(vimwin))
1184 XPUSHs(newWINrv(newSV(0), vimwin));
1185 }
1186 }
1187 else
1188 {
1189 for (i = 0; i < items; i++)
1190 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001191 w = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 vimwin = win_find_nr(w);
1193 if (vimwin)
1194 XPUSHs(newWINrv(newSV(0), vimwin));
1195 }
1196 }
1197
1198MODULE = VIM PACKAGE = VIWIN
1199
1200void
1201DESTROY(win)
1202 VIWIN win
1203
1204 CODE:
1205 if (win_valid(win))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001206 win->w_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207
1208SV *
1209Buffer(win)
1210 VIWIN win
1211
1212 CODE:
1213 if (!win_valid(win))
1214 win = curwin;
1215 RETVAL = newBUFrv(newSV(0), win->w_buffer);
1216 OUTPUT:
1217 RETVAL
1218
1219void
1220SetHeight(win, height)
1221 VIWIN win
1222 int height;
1223
1224 PREINIT:
1225 win_T *savewin;
1226
1227 PPCODE:
1228 if (!win_valid(win))
1229 win = curwin;
1230 savewin = curwin;
1231 curwin = win;
1232 win_setheight(height);
1233 curwin = savewin;
1234
1235void
1236Cursor(win, ...)
1237 VIWIN win
1238
1239 PPCODE:
Bram Moolenaara1711622011-07-27 14:15:46 +02001240 if (items == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 {
1242 EXTEND(sp, 2);
1243 if (!win_valid(win))
1244 win = curwin;
1245 PUSHs(sv_2mortal(newSViv(win->w_cursor.lnum)));
1246 PUSHs(sv_2mortal(newSViv(win->w_cursor.col)));
1247 }
Bram Moolenaara1711622011-07-27 14:15:46 +02001248 else if (items == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 {
1250 int lnum, col;
1251
1252 if (!win_valid(win))
1253 win = curwin;
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001254 lnum = (int) SvIV(ST(1));
1255 col = (int) SvIV(ST(2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 win->w_cursor.lnum = lnum;
1257 win->w_cursor.col = col;
1258 check_cursor(); /* put cursor on an existing line */
1259 update_screen(NOT_VALID);
1260 }
1261
1262MODULE = VIM PACKAGE = VIBUF
1263
1264void
1265DESTROY(vimbuf)
1266 VIBUF vimbuf;
1267
1268 CODE:
1269 if (buf_valid(vimbuf))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001270 vimbuf->b_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271
1272void
1273Name(vimbuf)
1274 VIBUF vimbuf;
1275
1276 PPCODE:
1277 if (!buf_valid(vimbuf))
1278 vimbuf = curbuf;
1279 /* No file name returns an empty string */
1280 if (vimbuf->b_fname == NULL)
1281 XPUSHs(sv_2mortal(newSVpv("", 0)));
1282 else
1283 XPUSHs(sv_2mortal(newSVpv((char *)vimbuf->b_fname, 0)));
1284
1285void
1286Number(vimbuf)
1287 VIBUF vimbuf;
1288
1289 PPCODE:
1290 if (!buf_valid(vimbuf))
1291 vimbuf = curbuf;
1292 XPUSHs(sv_2mortal(newSViv(vimbuf->b_fnum)));
1293
1294void
1295Count(vimbuf)
1296 VIBUF vimbuf;
1297
1298 PPCODE:
1299 if (!buf_valid(vimbuf))
1300 vimbuf = curbuf;
1301 XPUSHs(sv_2mortal(newSViv(vimbuf->b_ml.ml_line_count)));
1302
1303void
1304Get(vimbuf, ...)
1305 VIBUF vimbuf;
1306
1307 PREINIT:
1308 char_u *line;
1309 int i;
1310 long lnum;
1311 PPCODE:
1312 if (buf_valid(vimbuf))
1313 {
1314 for (i = 1; i < items; i++)
1315 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001316 lnum = (long) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1318 {
1319 line = ml_get_buf(vimbuf, lnum, FALSE);
1320 XPUSHs(sv_2mortal(newSVpv((char *)line, 0)));
1321 }
1322 }
1323 }
1324
1325void
1326Set(vimbuf, ...)
1327 VIBUF vimbuf;
1328
1329 PREINIT:
1330 int i;
1331 long lnum;
1332 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 PPCODE:
1334 if (buf_valid(vimbuf))
1335 {
1336 if (items < 3)
1337 croak("Usage: VIBUF::Set(vimbuf, lnum, @lines)");
1338
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001339 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 for(i = 2; i < items; i++, lnum++)
1341 {
1342 line = SvPV(ST(i),PL_na);
1343 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1344 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001345 aco_save_T aco;
1346
1347 /* set curwin/curbuf for "vimbuf" and save some things */
1348 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001349
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 if (u_savesub(lnum) == OK)
1351 {
1352 ml_replace(lnum, (char_u *)line, TRUE);
1353 changed_bytes(lnum, 0);
1354 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001355
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001356 /* restore curwin/curbuf and a few other things */
1357 aucmd_restbuf(&aco);
1358 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 }
1360 }
1361 }
1362
1363void
1364Delete(vimbuf, ...)
1365 VIBUF vimbuf;
1366
1367 PREINIT:
1368 long i, lnum = 0, count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 PPCODE:
1370 if (buf_valid(vimbuf))
1371 {
1372 if (items == 2)
1373 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001374 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 count = 1;
1376 }
1377 else if (items == 3)
1378 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001379 lnum = (long) SvIV(ST(1));
1380 count = (long) 1 + SvIV(ST(2)) - lnum;
Bram Moolenaara1711622011-07-27 14:15:46 +02001381 if (count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 count = 1;
Bram Moolenaara1711622011-07-27 14:15:46 +02001383 if (count < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 {
1385 lnum -= count;
1386 count = -count;
1387 }
1388 }
1389 if (items >= 2)
1390 {
1391 for (i = 0; i < count; i++)
1392 {
1393 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1394 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001395 aco_save_T aco;
1396
1397 /* set curwin/curbuf for "vimbuf" and save some things */
1398 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001399
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 if (u_savedel(lnum, 1) == OK)
1401 {
1402 ml_delete(lnum, 0);
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00001403 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 deleted_lines_mark(lnum, 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001406
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001407 /* restore curwin/curbuf and a few other things */
1408 aucmd_restbuf(&aco);
1409 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001410
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411 update_curbuf(VALID);
1412 }
1413 }
1414 }
1415 }
1416
1417void
1418Append(vimbuf, ...)
1419 VIBUF vimbuf;
1420
1421 PREINIT:
1422 int i;
1423 long lnum;
1424 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 PPCODE:
1426 if (buf_valid(vimbuf))
1427 {
1428 if (items < 3)
1429 croak("Usage: VIBUF::Append(vimbuf, lnum, @lines)");
1430
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001431 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 for (i = 2; i < items; i++, lnum++)
1433 {
1434 line = SvPV(ST(i),PL_na);
1435 if (lnum >= 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1436 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001437 aco_save_T aco;
1438
1439 /* set curwin/curbuf for "vimbuf" and save some things */
1440 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001441
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442 if (u_inssub(lnum + 1) == OK)
1443 {
1444 ml_append(lnum, (char_u *)line, (colnr_T)0, FALSE);
1445 appended_lines_mark(lnum, 1L);
1446 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001447
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001448 /* restore curwin/curbuf and a few other things */
1449 aucmd_restbuf(&aco);
1450 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001451
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452 update_curbuf(VALID);
1453 }
1454 }
1455 }
1456