Mercurial > vim
annotate src/if_perl.xs @ 9001:57b791947796 v7.4.1786
commit https://github.com/vim/vim/commit/d10abe52019d10403eb559ea0a424bbd310b738f
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Apr 24 15:41:33 2016 +0200
patch 7.4.1786
Problem: Compiled-in colors do not match rgb.txt.
Solution: Use the rgb.txt colors. (Kazunobu Kuriyama)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 24 Apr 2016 15:45:04 +0200 |
parents | 240ad5a78199 |
children | 95fd0de7a8f1 |
rev | line source |
---|---|
7 | 1 /* 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 | |
5261
b882d4b14e00
updated for version 7.4b.007
Bram Moolenaar <bram@vim.org>
parents:
4905
diff
changeset
|
16 /* |
5537 | 17 * Currently 32-bit version of ActivePerl is built with VC6 (or MinGW since |
18 * ActivePerl 5.18). | |
5261
b882d4b14e00
updated for version 7.4b.007
Bram Moolenaar <bram@vim.org>
parents:
4905
diff
changeset
|
19 * (http://community.activestate.com/faq/windows-compilers-perl-modules) |
b882d4b14e00
updated for version 7.4b.007
Bram Moolenaar <bram@vim.org>
parents:
4905
diff
changeset
|
20 * It means that time_t should be 32-bit. However the default size of |
b882d4b14e00
updated for version 7.4b.007
Bram Moolenaar <bram@vim.org>
parents:
4905
diff
changeset
|
21 * time_t is 64-bit since VC8. So we have to define _USE_32BIT_TIME_T. |
b882d4b14e00
updated for version 7.4b.007
Bram Moolenaar <bram@vim.org>
parents:
4905
diff
changeset
|
22 */ |
b882d4b14e00
updated for version 7.4b.007
Bram Moolenaar <bram@vim.org>
parents:
4905
diff
changeset
|
23 #if defined(WIN32) && !defined(_WIN64) |
b882d4b14e00
updated for version 7.4b.007
Bram Moolenaar <bram@vim.org>
parents:
4905
diff
changeset
|
24 # define _USE_32BIT_TIME_T |
b882d4b14e00
updated for version 7.4b.007
Bram Moolenaar <bram@vim.org>
parents:
4905
diff
changeset
|
25 #endif |
b882d4b14e00
updated for version 7.4b.007
Bram Moolenaar <bram@vim.org>
parents:
4905
diff
changeset
|
26 |
5537 | 27 /* |
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 | |
7 | 38 #include "vim.h" |
39 | |
5558 | 40 /* 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 | |
5560 | 47 /* Work around for using MSVC and ActivePerl 5.18. */ |
48 #ifdef _MSC_VER | |
49 # define __inline__ __inline | |
50 #endif | |
51 | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
52 #ifdef __GNUC__ |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
53 # pragma GCC diagnostic push |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
54 # pragma GCC diagnostic ignored "-Wunused-variable" |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
55 #endif |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
56 |
5261
b882d4b14e00
updated for version 7.4b.007
Bram Moolenaar <bram@vim.org>
parents:
4905
diff
changeset
|
57 #include <EXTERN.h> |
b882d4b14e00
updated for version 7.4b.007
Bram Moolenaar <bram@vim.org>
parents:
4905
diff
changeset
|
58 #include <perl.h> |
b882d4b14e00
updated for version 7.4b.007
Bram Moolenaar <bram@vim.org>
parents:
4905
diff
changeset
|
59 #include <XSUB.h> |
8885
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
60 #if defined(PERLIO_LAYERS) && !defined(USE_SFIO) |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
61 # include <perliol.h> |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
62 #endif |
7 | 63 |
64 /* | |
65 * Work around clashes between Perl and Vim namespace. proto.h doesn't | |
66 * include if_perl.pro and perlsfio.pro when IN_PERL_FILE is defined, because | |
67 * we need the CV typedef. proto.h can't be moved to after including | |
68 * if_perl.h, because we get all sorts of name clashes then. | |
69 */ | |
70 #ifndef PROTO | |
71 #ifndef __MINGW32__ | |
72 # include "proto/if_perl.pro" | |
73 # include "proto/if_perlsfio.pro" | |
74 #endif | |
75 #endif | |
76 | |
77 /* Perl compatibility stuff. This should ensure compatibility with older | |
78 * versions of Perl. | |
79 */ | |
80 | |
81 #ifndef PERL_VERSION | |
82 # include <patchlevel.h> | |
83 # define PERL_REVISION 5 | |
84 # define PERL_VERSION PATCHLEVEL | |
85 # define PERL_SUBVERSION SUBVERSION | |
86 #endif | |
87 | |
1387 | 88 /* |
89 * Quoting Jan Dubois of Active State: | |
90 * ActivePerl build 822 still identifies itself as 5.8.8 but already | |
91 * contains many of the changes from the upcoming Perl 5.8.9 release. | |
92 * | |
93 * The changes include addition of two symbols (Perl_sv_2iv_flags, | |
94 * Perl_newXS_flags) not present in earlier releases. | |
95 * | |
1395 | 96 * Jan Dubois suggested the following guarding scheme. |
97 * | |
98 * Active State defined ACTIVEPERL_VERSION as a string in versions before | |
99 * 5.8.8; and so the comparison to 822 below needs to be guarded. | |
1387 | 100 */ |
1395 | 101 #if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 8) |
102 # if (ACTIVEPERL_VERSION >= 822) || (PERL_SUBVERSION >= 9) | |
103 # define PERL589_OR_LATER | |
104 # endif | |
1387 | 105 #endif |
106 #if (PERL_REVISION == 5) && (PERL_VERSION >= 9) | |
107 # define PERL589_OR_LATER | |
108 #endif | |
109 | |
2096
6510d834609f
updated for version 7.2.380
Bram Moolenaar <bram@zimbu.org>
parents:
2079
diff
changeset
|
110 #if (PERL_REVISION == 5) && ((PERL_VERSION > 10) || \ |
6510d834609f
updated for version 7.2.380
Bram Moolenaar <bram@zimbu.org>
parents:
2079
diff
changeset
|
111 (PERL_VERSION == 10) && (PERL_SUBVERSION >= 1)) |
6510d834609f
updated for version 7.2.380
Bram Moolenaar <bram@zimbu.org>
parents:
2079
diff
changeset
|
112 # define PERL5101_OR_LATER |
6510d834609f
updated for version 7.2.380
Bram Moolenaar <bram@zimbu.org>
parents:
2079
diff
changeset
|
113 #endif |
6510d834609f
updated for version 7.2.380
Bram Moolenaar <bram@zimbu.org>
parents:
2079
diff
changeset
|
114 |
7 | 115 #ifndef pTHX |
116 # define pTHX void | |
117 # define pTHX_ | |
118 #endif | |
119 | |
120 #ifndef EXTERN_C | |
121 # define EXTERN_C | |
122 #endif | |
123 | |
3728 | 124 #if (PERL_REVISION == 5) && (PERL_VERSION >= 14) && defined(_MSC_VER) |
125 /* Using PL_errgv to get the error message after perl_eval_sv() causes a crash | |
126 * with MSVC and Perl version 5.14. */ | |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
127 # define CHECK_EVAL_ERR(len) SvPV(perl_get_sv("@", GV_ADD), (len)); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
128 #else |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
129 # define CHECK_EVAL_ERR(len) SvPV(GvSV(PL_errgv), (len)); |
3728 | 130 #endif |
131 | |
7 | 132 /* Compatibility hacks over */ |
133 | |
134 static PerlInterpreter *perl_interp = NULL; | |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7651
diff
changeset
|
135 static void xs_init(pTHX); |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7651
diff
changeset
|
136 static void VIM_init(void); |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7651
diff
changeset
|
137 EXTERN_C void boot_DynaLoader(pTHX_ CV*); |
7 | 138 |
139 /* | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
140 * For dynamic linked perl. |
7 | 141 */ |
142 #if defined(DYNAMIC_PERL) || defined(PROTO) | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
143 |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
144 #ifndef DYNAMIC_PERL /* just generating prototypes */ |
2372
a42d19b78c93
Fix building with Perl on Windows with MingW. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
145 #ifdef WIN3264 |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
146 typedef int HANDLE; |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
147 #endif |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
148 typedef int XSINIT_t; |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
149 typedef int XSUBADDR_t; |
5706 | 150 #endif |
151 #ifndef USE_ITHREADS | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
152 typedef int perl_key; |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
153 #endif |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
154 |
2372
a42d19b78c93
Fix building with Perl on Windows with MingW. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
155 #ifndef WIN3264 |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
156 #include <dlfcn.h> |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
157 #define HANDLE void* |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
158 #define PERL_PROC void* |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
159 #define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL) |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
160 #define symbol_from_dll dlsym |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
161 #define close_dll dlclose |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
162 #else |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
163 #define PERL_PROC FARPROC |
2612 | 164 #define load_dll vimLoadLib |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
165 #define symbol_from_dll GetProcAddress |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
166 #define close_dll FreeLibrary |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
167 #endif |
7 | 168 /* |
169 * Wrapper defines | |
170 */ | |
171 # define perl_alloc dll_perl_alloc | |
172 # define perl_construct dll_perl_construct | |
173 # define perl_parse dll_perl_parse | |
174 # define perl_run dll_perl_run | |
175 # define perl_destruct dll_perl_destruct | |
176 # define perl_free dll_perl_free | |
177 # define Perl_get_context dll_Perl_get_context | |
178 # define Perl_croak dll_Perl_croak | |
2096
6510d834609f
updated for version 7.2.380
Bram Moolenaar <bram@zimbu.org>
parents:
2079
diff
changeset
|
179 # ifdef PERL5101_OR_LATER |
2079
5abd3e3c0085
updated for version 7.2.363
Bram Moolenaar <bram@zimbu.org>
parents:
1990
diff
changeset
|
180 # define Perl_croak_xs_usage dll_Perl_croak_xs_usage |
5abd3e3c0085
updated for version 7.2.363
Bram Moolenaar <bram@zimbu.org>
parents:
1990
diff
changeset
|
181 # endif |
7 | 182 # ifndef PROTO |
183 # define Perl_croak_nocontext dll_Perl_croak_nocontext | |
184 # define Perl_call_argv dll_Perl_call_argv | |
185 # define Perl_call_pv dll_Perl_call_pv | |
186 # define Perl_eval_sv dll_Perl_eval_sv | |
187 # define Perl_get_sv dll_Perl_get_sv | |
188 # define Perl_eval_pv dll_Perl_eval_pv | |
189 # define Perl_call_method dll_Perl_call_method | |
190 # endif | |
191 # define Perl_dowantarray dll_Perl_dowantarray | |
192 # define Perl_free_tmps dll_Perl_free_tmps | |
193 # define Perl_gv_stashpv dll_Perl_gv_stashpv | |
194 # define Perl_markstack_grow dll_Perl_markstack_grow | |
195 # define Perl_mg_find dll_Perl_mg_find | |
196 # define Perl_newXS dll_Perl_newXS | |
197 # define Perl_newSV dll_Perl_newSV | |
198 # define Perl_newSViv dll_Perl_newSViv | |
199 # define Perl_newSVpv dll_Perl_newSVpv | |
200 # define Perl_pop_scope dll_Perl_pop_scope | |
201 # define Perl_push_scope dll_Perl_push_scope | |
202 # define Perl_save_int dll_Perl_save_int | |
5960 | 203 # if (PERL_REVISION == 5) && (PERL_VERSION >= 20) |
204 # define Perl_save_strlen dll_Perl_save_strlen | |
205 # endif | |
7 | 206 # define Perl_stack_grow dll_Perl_stack_grow |
207 # define Perl_set_context dll_Perl_set_context | |
3050 | 208 # if (PERL_REVISION == 5) && (PERL_VERSION >= 14) |
6872 | 209 # define Perl_sv_2bool_flags dll_Perl_sv_2bool_flags |
210 # if (PERL_REVISION == 5) && (PERL_VERSION < 22) | |
211 # define Perl_xs_apiversion_bootcheck dll_Perl_xs_apiversion_bootcheck | |
212 # endif | |
3050 | 213 # else |
6872 | 214 # define Perl_sv_2bool dll_Perl_sv_2bool |
3050 | 215 # endif |
7 | 216 # define Perl_sv_2iv dll_Perl_sv_2iv |
217 # define Perl_sv_2mortal dll_Perl_sv_2mortal | |
218 # if (PERL_REVISION == 5) && (PERL_VERSION >= 8) | |
219 # define Perl_sv_2pv_flags dll_Perl_sv_2pv_flags | |
220 # define Perl_sv_2pv_nolen dll_Perl_sv_2pv_nolen | |
221 # else | |
222 # define Perl_sv_2pv dll_Perl_sv_2pv | |
223 # endif | |
224 # define Perl_sv_bless dll_Perl_sv_bless | |
225 # if (PERL_REVISION == 5) && (PERL_VERSION >= 8) | |
226 # define Perl_sv_catpvn_flags dll_Perl_sv_catpvn_flags | |
227 # else | |
228 # define Perl_sv_catpvn dll_Perl_sv_catpvn | |
229 # endif | |
1387 | 230 #ifdef PERL589_OR_LATER |
231 # define Perl_sv_2iv_flags dll_Perl_sv_2iv_flags | |
232 # define Perl_newXS_flags dll_Perl_newXS_flags | |
233 #endif | |
7 | 234 # define Perl_sv_free dll_Perl_sv_free |
1711 | 235 # if (PERL_REVISION == 5) && (PERL_VERSION >= 10) |
236 # define Perl_sv_free2 dll_Perl_sv_free2 | |
237 # endif | |
7 | 238 # define Perl_sv_isa dll_Perl_sv_isa |
239 # define Perl_sv_magic dll_Perl_sv_magic | |
240 # define Perl_sv_setiv dll_Perl_sv_setiv | |
241 # define Perl_sv_setpv dll_Perl_sv_setpv | |
242 # define Perl_sv_setpvn dll_Perl_sv_setpvn | |
243 # if (PERL_REVISION == 5) && (PERL_VERSION >= 8) | |
244 # define Perl_sv_setsv_flags dll_Perl_sv_setsv_flags | |
245 # else | |
246 # define Perl_sv_setsv dll_Perl_sv_setsv | |
247 # endif | |
248 # define Perl_sv_upgrade dll_Perl_sv_upgrade | |
249 # define Perl_Tstack_sp_ptr dll_Perl_Tstack_sp_ptr | |
250 # define Perl_Top_ptr dll_Perl_Top_ptr | |
251 # define Perl_Tstack_base_ptr dll_Perl_Tstack_base_ptr | |
252 # define Perl_Tstack_max_ptr dll_Perl_Tstack_max_ptr | |
253 # define Perl_Ttmps_ix_ptr dll_Perl_Ttmps_ix_ptr | |
254 # define Perl_Ttmps_floor_ptr dll_Perl_Ttmps_floor_ptr | |
255 # define Perl_Tmarkstack_ptr_ptr dll_Perl_Tmarkstack_ptr_ptr | |
256 # define Perl_Tmarkstack_max_ptr dll_Perl_Tmarkstack_max_ptr | |
257 # define Perl_TSv_ptr dll_Perl_TSv_ptr | |
258 # define Perl_TXpv_ptr dll_Perl_TXpv_ptr | |
259 # define Perl_Tna_ptr dll_Perl_Tna_ptr | |
260 # define Perl_Idefgv_ptr dll_Perl_Idefgv_ptr | |
261 # define Perl_Ierrgv_ptr dll_Perl_Ierrgv_ptr | |
262 # define Perl_Isv_yes_ptr dll_Perl_Isv_yes_ptr | |
263 # define boot_DynaLoader dll_boot_DynaLoader | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
264 # define Perl_Gthr_key_ptr dll_Perl_Gthr_key_ptr |
7 | 265 |
1765 | 266 # define Perl_sys_init dll_Perl_sys_init |
1668 | 267 # define Perl_sys_term dll_Perl_sys_term |
268 # define Perl_ISv_ptr dll_Perl_ISv_ptr | |
269 # define Perl_Istack_max_ptr dll_Perl_Istack_max_ptr | |
270 # define Perl_Istack_base_ptr dll_Perl_Istack_base_ptr | |
271 # define Perl_Itmps_ix_ptr dll_Perl_Itmps_ix_ptr | |
272 # define Perl_Itmps_floor_ptr dll_Perl_Itmps_floor_ptr | |
273 # define Perl_IXpv_ptr dll_Perl_IXpv_ptr | |
274 # define Perl_Ina_ptr dll_Perl_Ina_ptr | |
275 # define Perl_Imarkstack_ptr_ptr dll_Perl_Imarkstack_ptr_ptr | |
276 # define Perl_Imarkstack_max_ptr dll_Perl_Imarkstack_max_ptr | |
277 # define Perl_Istack_sp_ptr dll_Perl_Istack_sp_ptr | |
278 # define Perl_Iop_ptr dll_Perl_Iop_ptr | |
279 # define Perl_call_list dll_Perl_call_list | |
280 # define Perl_Iscopestack_ix_ptr dll_Perl_Iscopestack_ix_ptr | |
281 # define Perl_Iunitcheckav_ptr dll_Perl_Iunitcheckav_ptr | |
6872 | 282 # if (PERL_REVISION == 5) && (PERL_VERSION >= 22) |
283 # define Perl_xs_handshake dll_Perl_xs_handshake | |
284 # define Perl_xs_boot_epilog dll_Perl_xs_boot_epilog | |
285 # endif | |
3820 | 286 # if (PERL_REVISION == 5) && (PERL_VERSION >= 14) |
5706 | 287 # ifdef USE_ITHREADS |
288 # define PL_thr_key *dll_PL_thr_key | |
289 # endif | |
3820 | 290 # endif |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
291 # define Perl_hv_iternext_flags dll_Perl_hv_iternext_flags |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
292 # define Perl_hv_iterinit dll_Perl_hv_iterinit |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
293 # define Perl_hv_iterkey dll_Perl_hv_iterkey |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
294 # define Perl_hv_iterval dll_Perl_hv_iterval |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
295 # define Perl_av_fetch dll_Perl_av_fetch |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
296 # define Perl_av_len dll_Perl_av_len |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
297 # define Perl_sv_2nv_flags dll_Perl_sv_2nv_flags |
8885
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
298 # if defined(PERLIO_LAYERS) && !defined(USE_SFIO) |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
299 # define PerlIOBase_pushed dll_PerlIOBase_pushed |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
300 # define PerlIO_define_layer dll_PerlIO_define_layer |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
301 # endif |
1668 | 302 |
7 | 303 /* |
304 * Declare HANDLE for perl.dll and function pointers. | |
305 */ | |
306 static HANDLE hPerlLib = NULL; | |
307 | |
308 static PerlInterpreter* (*perl_alloc)(); | |
309 static void (*perl_construct)(PerlInterpreter*); | |
310 static void (*perl_destruct)(PerlInterpreter*); | |
311 static void (*perl_free)(PerlInterpreter*); | |
312 static int (*perl_run)(PerlInterpreter*); | |
313 static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**); | |
314 static void* (*Perl_get_context)(void); | |
8810
83d0b976d9b3
commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
315 static void (*Perl_croak)(pTHX_ const char*, ...) __attribute__noreturn__; |
2096
6510d834609f
updated for version 7.2.380
Bram Moolenaar <bram@zimbu.org>
parents:
2079
diff
changeset
|
316 #ifdef PERL5101_OR_LATER |
5537 | 317 /* Perl-5.18 has a different Perl_croak_xs_usage signature. */ |
318 # if (PERL_REVISION == 5) && (PERL_VERSION >= 18) | |
8810
83d0b976d9b3
commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
319 static void (*Perl_croak_xs_usage)(const CV *const, const char *const params) |
83d0b976d9b3
commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
320 __attribute__noreturn__; |
5537 | 321 # else |
8810
83d0b976d9b3
commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
322 static void (*Perl_croak_xs_usage)(pTHX_ const CV *const, const char *const params) |
83d0b976d9b3
commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
323 __attribute__noreturn__; |
5537 | 324 # endif |
4905
517fa1a34c7c
updated for version 7.3.1198
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
325 #endif |
8810
83d0b976d9b3
commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
326 static void (*Perl_croak_nocontext)(const char*, ...) __attribute__noreturn__; |
7 | 327 static I32 (*Perl_dowantarray)(pTHX); |
328 static void (*Perl_free_tmps)(pTHX); | |
329 static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32); | |
6872 | 330 #if (PERL_REVISION == 5) && (PERL_VERSION >= 22) |
331 static I32* (*Perl_markstack_grow)(pTHX); | |
332 #else | |
7 | 333 static void (*Perl_markstack_grow)(pTHX); |
6872 | 334 #endif |
7 | 335 static MAGIC* (*Perl_mg_find)(pTHX_ SV*, int); |
336 static CV* (*Perl_newXS)(pTHX_ char*, XSUBADDR_t, char*); | |
337 static SV* (*Perl_newSV)(pTHX_ STRLEN); | |
338 static SV* (*Perl_newSViv)(pTHX_ IV); | |
339 static SV* (*Perl_newSVpv)(pTHX_ const char*, STRLEN); | |
340 static I32 (*Perl_call_argv)(pTHX_ const char*, I32, char**); | |
341 static I32 (*Perl_call_pv)(pTHX_ const char*, I32); | |
342 static I32 (*Perl_eval_sv)(pTHX_ SV*, I32); | |
343 static SV* (*Perl_get_sv)(pTHX_ const char*, I32); | |
344 static SV* (*Perl_eval_pv)(pTHX_ const char*, I32); | |
345 static SV* (*Perl_call_method)(pTHX_ const char*, I32); | |
346 static void (*Perl_pop_scope)(pTHX); | |
347 static void (*Perl_push_scope)(pTHX); | |
348 static void (*Perl_save_int)(pTHX_ int*); | |
5960 | 349 #if (PERL_REVISION == 5) && (PERL_VERSION >= 20) |
350 static void (*Perl_save_strlen)(pTHX_ STRLEN* ptr); | |
351 #endif | |
7 | 352 static SV** (*Perl_stack_grow)(pTHX_ SV**, SV**p, int); |
353 static SV** (*Perl_set_context)(void*); | |
3050 | 354 #if (PERL_REVISION == 5) && (PERL_VERSION >= 14) |
355 static bool (*Perl_sv_2bool_flags)(pTHX_ SV*, I32); | |
6872 | 356 # if (PERL_REVISION == 5) && (PERL_VERSION < 22) |
3050 | 357 static void (*Perl_xs_apiversion_bootcheck)(pTHX_ SV *module, const char *api_p, STRLEN api_len); |
6872 | 358 # endif |
3050 | 359 #else |
7 | 360 static bool (*Perl_sv_2bool)(pTHX_ SV*); |
3050 | 361 #endif |
7 | 362 static IV (*Perl_sv_2iv)(pTHX_ SV*); |
363 static SV* (*Perl_sv_2mortal)(pTHX_ SV*); | |
364 #if (PERL_REVISION == 5) && (PERL_VERSION >= 8) | |
365 static char* (*Perl_sv_2pv_flags)(pTHX_ SV*, STRLEN*, I32); | |
366 static char* (*Perl_sv_2pv_nolen)(pTHX_ SV*); | |
367 #else | |
368 static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*); | |
369 #endif | |
370 static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*); | |
371 #if (PERL_REVISION == 5) && (PERL_VERSION >= 8) | |
372 static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32); | |
373 #else | |
374 static void (*Perl_sv_catpvn)(pTHX_ SV*, const char*, STRLEN); | |
375 #endif | |
1387 | 376 #ifdef PERL589_OR_LATER |
377 static IV (*Perl_sv_2iv_flags)(pTHX_ SV* sv, I32 flags); | |
378 static CV * (*Perl_newXS_flags)(pTHX_ const char *name, XSUBADDR_t subaddr, const char *const filename, const char *const proto, U32 flags); | |
379 #endif | |
7 | 380 static void (*Perl_sv_free)(pTHX_ SV*); |
381 static int (*Perl_sv_isa)(pTHX_ SV*, const char*); | |
382 static void (*Perl_sv_magic)(pTHX_ SV*, SV*, int, const char*, I32); | |
383 static void (*Perl_sv_setiv)(pTHX_ SV*, IV); | |
384 static void (*Perl_sv_setpv)(pTHX_ SV*, const char*); | |
385 static void (*Perl_sv_setpvn)(pTHX_ SV*, const char*, STRLEN); | |
386 #if (PERL_REVISION == 5) && (PERL_VERSION >= 8) | |
387 static void (*Perl_sv_setsv_flags)(pTHX_ SV*, SV*, I32); | |
388 #else | |
389 static void (*Perl_sv_setsv)(pTHX_ SV*, SV*); | |
390 #endif | |
391 static bool (*Perl_sv_upgrade)(pTHX_ SV*, U32); | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
392 #if (PERL_REVISION == 5) && (PERL_VERSION < 10) |
7 | 393 static SV*** (*Perl_Tstack_sp_ptr)(register PerlInterpreter*); |
394 static OP** (*Perl_Top_ptr)(register PerlInterpreter*); | |
395 static SV*** (*Perl_Tstack_base_ptr)(register PerlInterpreter*); | |
396 static SV*** (*Perl_Tstack_max_ptr)(register PerlInterpreter*); | |
397 static I32* (*Perl_Ttmps_ix_ptr)(register PerlInterpreter*); | |
398 static I32* (*Perl_Ttmps_floor_ptr)(register PerlInterpreter*); | |
399 static I32** (*Perl_Tmarkstack_ptr_ptr)(register PerlInterpreter*); | |
400 static I32** (*Perl_Tmarkstack_max_ptr)(register PerlInterpreter*); | |
401 static SV** (*Perl_TSv_ptr)(register PerlInterpreter*); | |
402 static XPV** (*Perl_TXpv_ptr)(register PerlInterpreter*); | |
403 static STRLEN* (*Perl_Tna_ptr)(register PerlInterpreter*); | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
404 #else |
5537 | 405 /* Perl-5.18 has a different Perl_sv_free2 signature. */ |
406 # if (PERL_REVISION == 5) && (PERL_VERSION >= 18) | |
407 static void (*Perl_sv_free2)(pTHX_ SV*, const U32); | |
408 # else | |
1711 | 409 static void (*Perl_sv_free2)(pTHX_ SV*); |
5537 | 410 # endif |
1765 | 411 static void (*Perl_sys_init)(int* argc, char*** argv); |
1668 | 412 static void (*Perl_sys_term)(void); |
3818 | 413 static void (*Perl_call_list)(pTHX_ I32, AV*); |
414 # if (PERL_REVISION == 5) && (PERL_VERSION >= 14) | |
415 # else | |
1668 | 416 static SV** (*Perl_ISv_ptr)(register PerlInterpreter*); |
417 static SV*** (*Perl_Istack_max_ptr)(register PerlInterpreter*); | |
418 static SV*** (*Perl_Istack_base_ptr)(register PerlInterpreter*); | |
419 static XPV** (*Perl_IXpv_ptr)(register PerlInterpreter*); | |
420 static I32* (*Perl_Itmps_ix_ptr)(register PerlInterpreter*); | |
421 static I32* (*Perl_Itmps_floor_ptr)(register PerlInterpreter*); | |
422 static STRLEN* (*Perl_Ina_ptr)(register PerlInterpreter*); | |
423 static I32** (*Perl_Imarkstack_ptr_ptr)(register PerlInterpreter*); | |
424 static I32** (*Perl_Imarkstack_max_ptr)(register PerlInterpreter*); | |
425 static SV*** (*Perl_Istack_sp_ptr)(register PerlInterpreter*); | |
426 static OP** (*Perl_Iop_ptr)(register PerlInterpreter*); | |
427 static I32* (*Perl_Iscopestack_ix_ptr)(register PerlInterpreter*); | |
428 static AV** (*Perl_Iunitcheckav_ptr)(register PerlInterpreter*); | |
3818 | 429 # endif |
1668 | 430 #endif |
6872 | 431 #if (PERL_REVISION == 5) && (PERL_VERSION >= 22) |
432 static I32 (*Perl_xs_handshake)(const U32, void *, const char *, ...); | |
433 static void (*Perl_xs_boot_epilog)(pTHX_ const U32); | |
434 #endif | |
7 | 435 |
3818 | 436 #if (PERL_REVISION == 5) && (PERL_VERSION >= 14) |
5706 | 437 # ifdef USE_ITHREADS |
3820 | 438 static perl_key* dll_PL_thr_key; |
5706 | 439 # endif |
3818 | 440 #else |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
441 static GV** (*Perl_Idefgv_ptr)(register PerlInterpreter*); |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
442 static GV** (*Perl_Ierrgv_ptr)(register PerlInterpreter*); |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
443 static SV* (*Perl_Isv_yes_ptr)(register PerlInterpreter*); |
3818 | 444 static perl_key* (*Perl_Gthr_key_ptr)_((pTHX)); |
445 #endif | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
446 static void (*boot_DynaLoader)_((pTHX_ CV*)); |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
447 static HE * (*Perl_hv_iternext_flags)(pTHX_ HV *, I32); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
448 static I32 (*Perl_hv_iterinit)(pTHX_ HV *); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
449 static char * (*Perl_hv_iterkey)(pTHX_ HE *, I32 *); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
450 static SV * (*Perl_hv_iterval)(pTHX_ HV *, HE *); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
451 static SV** (*Perl_av_fetch)(pTHX_ AV *, SSize_t, I32); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
452 static SSize_t (*Perl_av_len)(pTHX_ AV *); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
453 static NV (*Perl_sv_2nv_flags)(pTHX_ SV *const, const I32); |
8885
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
454 #if defined(PERLIO_LAYERS) && !defined(USE_SFIO) |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
455 static IV (*PerlIOBase_pushed)(pTHX_ PerlIO *, const char *, SV *, PerlIO_funcs *); |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
456 static void (*PerlIO_define_layer)(pTHX_ PerlIO_funcs *); |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
457 #endif |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
458 |
7 | 459 /* |
460 * Table of name to function pointer of perl. | |
461 */ | |
462 static struct { | |
463 char* name; | |
464 PERL_PROC* ptr; | |
465 } perl_funcname_table[] = { | |
466 {"perl_alloc", (PERL_PROC*)&perl_alloc}, | |
467 {"perl_construct", (PERL_PROC*)&perl_construct}, | |
468 {"perl_destruct", (PERL_PROC*)&perl_destruct}, | |
469 {"perl_free", (PERL_PROC*)&perl_free}, | |
470 {"perl_run", (PERL_PROC*)&perl_run}, | |
471 {"perl_parse", (PERL_PROC*)&perl_parse}, | |
472 {"Perl_get_context", (PERL_PROC*)&Perl_get_context}, | |
473 {"Perl_croak", (PERL_PROC*)&Perl_croak}, | |
2096
6510d834609f
updated for version 7.2.380
Bram Moolenaar <bram@zimbu.org>
parents:
2079
diff
changeset
|
474 #ifdef PERL5101_OR_LATER |
2079
5abd3e3c0085
updated for version 7.2.363
Bram Moolenaar <bram@zimbu.org>
parents:
1990
diff
changeset
|
475 {"Perl_croak_xs_usage", (PERL_PROC*)&Perl_croak_xs_usage}, |
5abd3e3c0085
updated for version 7.2.363
Bram Moolenaar <bram@zimbu.org>
parents:
1990
diff
changeset
|
476 #endif |
5706 | 477 #ifdef PERL_IMPLICIT_CONTEXT |
7 | 478 {"Perl_croak_nocontext", (PERL_PROC*)&Perl_croak_nocontext}, |
5706 | 479 #endif |
7 | 480 {"Perl_dowantarray", (PERL_PROC*)&Perl_dowantarray}, |
481 {"Perl_free_tmps", (PERL_PROC*)&Perl_free_tmps}, | |
482 {"Perl_gv_stashpv", (PERL_PROC*)&Perl_gv_stashpv}, | |
483 {"Perl_markstack_grow", (PERL_PROC*)&Perl_markstack_grow}, | |
484 {"Perl_mg_find", (PERL_PROC*)&Perl_mg_find}, | |
485 {"Perl_newXS", (PERL_PROC*)&Perl_newXS}, | |
486 {"Perl_newSV", (PERL_PROC*)&Perl_newSV}, | |
487 {"Perl_newSViv", (PERL_PROC*)&Perl_newSViv}, | |
488 {"Perl_newSVpv", (PERL_PROC*)&Perl_newSVpv}, | |
489 {"Perl_call_argv", (PERL_PROC*)&Perl_call_argv}, | |
490 {"Perl_call_pv", (PERL_PROC*)&Perl_call_pv}, | |
491 {"Perl_eval_sv", (PERL_PROC*)&Perl_eval_sv}, | |
492 {"Perl_get_sv", (PERL_PROC*)&Perl_get_sv}, | |
493 {"Perl_eval_pv", (PERL_PROC*)&Perl_eval_pv}, | |
494 {"Perl_call_method", (PERL_PROC*)&Perl_call_method}, | |
495 {"Perl_pop_scope", (PERL_PROC*)&Perl_pop_scope}, | |
496 {"Perl_push_scope", (PERL_PROC*)&Perl_push_scope}, | |
497 {"Perl_save_int", (PERL_PROC*)&Perl_save_int}, | |
5960 | 498 #if (PERL_REVISION == 5) && (PERL_VERSION >= 20) |
499 {"Perl_save_strlen", (PERL_PROC*)&Perl_save_strlen}, | |
500 #endif | |
7 | 501 {"Perl_stack_grow", (PERL_PROC*)&Perl_stack_grow}, |
502 {"Perl_set_context", (PERL_PROC*)&Perl_set_context}, | |
3050 | 503 #if (PERL_REVISION == 5) && (PERL_VERSION >= 14) |
504 {"Perl_sv_2bool_flags", (PERL_PROC*)&Perl_sv_2bool_flags}, | |
6872 | 505 # if (PERL_REVISION == 5) && (PERL_VERSION < 22) |
3050 | 506 {"Perl_xs_apiversion_bootcheck",(PERL_PROC*)&Perl_xs_apiversion_bootcheck}, |
6872 | 507 # endif |
3050 | 508 #else |
7 | 509 {"Perl_sv_2bool", (PERL_PROC*)&Perl_sv_2bool}, |
3050 | 510 #endif |
7 | 511 {"Perl_sv_2iv", (PERL_PROC*)&Perl_sv_2iv}, |
512 {"Perl_sv_2mortal", (PERL_PROC*)&Perl_sv_2mortal}, | |
513 #if (PERL_REVISION == 5) && (PERL_VERSION >= 8) | |
514 {"Perl_sv_2pv_flags", (PERL_PROC*)&Perl_sv_2pv_flags}, | |
515 {"Perl_sv_2pv_nolen", (PERL_PROC*)&Perl_sv_2pv_nolen}, | |
516 #else | |
517 {"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv}, | |
518 #endif | |
1387 | 519 #ifdef PERL589_OR_LATER |
520 {"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags}, | |
521 {"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags}, | |
522 #endif | |
7 | 523 {"Perl_sv_bless", (PERL_PROC*)&Perl_sv_bless}, |
524 #if (PERL_REVISION == 5) && (PERL_VERSION >= 8) | |
525 {"Perl_sv_catpvn_flags", (PERL_PROC*)&Perl_sv_catpvn_flags}, | |
526 #else | |
527 {"Perl_sv_catpvn", (PERL_PROC*)&Perl_sv_catpvn}, | |
528 #endif | |
529 {"Perl_sv_free", (PERL_PROC*)&Perl_sv_free}, | |
530 {"Perl_sv_isa", (PERL_PROC*)&Perl_sv_isa}, | |
531 {"Perl_sv_magic", (PERL_PROC*)&Perl_sv_magic}, | |
532 {"Perl_sv_setiv", (PERL_PROC*)&Perl_sv_setiv}, | |
533 {"Perl_sv_setpv", (PERL_PROC*)&Perl_sv_setpv}, | |
534 {"Perl_sv_setpvn", (PERL_PROC*)&Perl_sv_setpvn}, | |
535 #if (PERL_REVISION == 5) && (PERL_VERSION >= 8) | |
536 {"Perl_sv_setsv_flags", (PERL_PROC*)&Perl_sv_setsv_flags}, | |
537 #else | |
538 {"Perl_sv_setsv", (PERL_PROC*)&Perl_sv_setsv}, | |
539 #endif | |
540 {"Perl_sv_upgrade", (PERL_PROC*)&Perl_sv_upgrade}, | |
1668 | 541 #if (PERL_REVISION == 5) && (PERL_VERSION < 10) |
7 | 542 {"Perl_Tstack_sp_ptr", (PERL_PROC*)&Perl_Tstack_sp_ptr}, |
543 {"Perl_Top_ptr", (PERL_PROC*)&Perl_Top_ptr}, | |
544 {"Perl_Tstack_base_ptr", (PERL_PROC*)&Perl_Tstack_base_ptr}, | |
545 {"Perl_Tstack_max_ptr", (PERL_PROC*)&Perl_Tstack_max_ptr}, | |
546 {"Perl_Ttmps_ix_ptr", (PERL_PROC*)&Perl_Ttmps_ix_ptr}, | |
547 {"Perl_Ttmps_floor_ptr", (PERL_PROC*)&Perl_Ttmps_floor_ptr}, | |
548 {"Perl_Tmarkstack_ptr_ptr", (PERL_PROC*)&Perl_Tmarkstack_ptr_ptr}, | |
549 {"Perl_Tmarkstack_max_ptr", (PERL_PROC*)&Perl_Tmarkstack_max_ptr}, | |
550 {"Perl_TSv_ptr", (PERL_PROC*)&Perl_TSv_ptr}, | |
551 {"Perl_TXpv_ptr", (PERL_PROC*)&Perl_TXpv_ptr}, | |
552 {"Perl_Tna_ptr", (PERL_PROC*)&Perl_Tna_ptr}, | |
1668 | 553 #else |
1711 | 554 {"Perl_sv_free2", (PERL_PROC*)&Perl_sv_free2}, |
1765 | 555 {"Perl_sys_init", (PERL_PROC*)&Perl_sys_init}, |
1668 | 556 {"Perl_sys_term", (PERL_PROC*)&Perl_sys_term}, |
3050 | 557 {"Perl_call_list", (PERL_PROC*)&Perl_call_list}, |
558 # if (PERL_REVISION == 5) && (PERL_VERSION >= 14) | |
559 # else | |
1668 | 560 {"Perl_ISv_ptr", (PERL_PROC*)&Perl_ISv_ptr}, |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
561 {"Perl_Istack_max_ptr", (PERL_PROC*)&Perl_Istack_max_ptr}, |
1668 | 562 {"Perl_Istack_base_ptr", (PERL_PROC*)&Perl_Istack_base_ptr}, |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
563 {"Perl_IXpv_ptr", (PERL_PROC*)&Perl_IXpv_ptr}, |
1668 | 564 {"Perl_Itmps_ix_ptr", (PERL_PROC*)&Perl_Itmps_ix_ptr}, |
565 {"Perl_Itmps_floor_ptr", (PERL_PROC*)&Perl_Itmps_floor_ptr}, | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
566 {"Perl_Ina_ptr", (PERL_PROC*)&Perl_Ina_ptr}, |
1668 | 567 {"Perl_Imarkstack_ptr_ptr", (PERL_PROC*)&Perl_Imarkstack_ptr_ptr}, |
568 {"Perl_Imarkstack_max_ptr", (PERL_PROC*)&Perl_Imarkstack_max_ptr}, | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
569 {"Perl_Istack_sp_ptr", (PERL_PROC*)&Perl_Istack_sp_ptr}, |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
570 {"Perl_Iop_ptr", (PERL_PROC*)&Perl_Iop_ptr}, |
1668 | 571 {"Perl_Iscopestack_ix_ptr", (PERL_PROC*)&Perl_Iscopestack_ix_ptr}, |
572 {"Perl_Iunitcheckav_ptr", (PERL_PROC*)&Perl_Iunitcheckav_ptr}, | |
3050 | 573 # endif |
1668 | 574 #endif |
6872 | 575 #if (PERL_REVISION == 5) && (PERL_VERSION >= 22) |
576 {"Perl_xs_handshake", (PERL_PROC*)&Perl_xs_handshake}, | |
577 {"Perl_xs_boot_epilog", (PERL_PROC*)&Perl_xs_boot_epilog}, | |
578 #endif | |
3050 | 579 #if (PERL_REVISION == 5) && (PERL_VERSION >= 14) |
5706 | 580 # ifdef USE_ITHREADS |
3820 | 581 {"PL_thr_key", (PERL_PROC*)&dll_PL_thr_key}, |
5706 | 582 # endif |
3050 | 583 #else |
7 | 584 {"Perl_Idefgv_ptr", (PERL_PROC*)&Perl_Idefgv_ptr}, |
585 {"Perl_Ierrgv_ptr", (PERL_PROC*)&Perl_Ierrgv_ptr}, | |
586 {"Perl_Isv_yes_ptr", (PERL_PROC*)&Perl_Isv_yes_ptr}, | |
3050 | 587 {"Perl_Gthr_key_ptr", (PERL_PROC*)&Perl_Gthr_key_ptr}, |
588 #endif | |
7 | 589 {"boot_DynaLoader", (PERL_PROC*)&boot_DynaLoader}, |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
590 {"Perl_hv_iternext_flags", (PERL_PROC*)&Perl_hv_iternext_flags}, |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
591 {"Perl_hv_iterinit", (PERL_PROC*)&Perl_hv_iterinit}, |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
592 {"Perl_hv_iterkey", (PERL_PROC*)&Perl_hv_iterkey}, |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
593 {"Perl_hv_iterval", (PERL_PROC*)&Perl_hv_iterval}, |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
594 {"Perl_av_fetch", (PERL_PROC*)&Perl_av_fetch}, |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
595 {"Perl_av_len", (PERL_PROC*)&Perl_av_len}, |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
596 {"Perl_sv_2nv_flags", (PERL_PROC*)&Perl_sv_2nv_flags}, |
8885
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
597 #if defined(PERLIO_LAYERS) && !defined(USE_SFIO) |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
598 {"PerlIOBase_pushed", (PERL_PROC*)&PerlIOBase_pushed}, |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
599 {"PerlIO_define_layer", (PERL_PROC*)&PerlIO_define_layer}, |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
600 #endif |
7 | 601 {"", NULL}, |
602 }; | |
603 | |
5537 | 604 /* Work around for perl-5.18. |
605 * The definitions of S_SvREFCNT_inc and S_SvREFCNT_dec are needed, so include | |
606 * "perl\lib\CORE\inline.h", after Perl_sv_free2 is defined. | |
607 * The linker won't complain about undefined __impl_Perl_sv_free2. */ | |
608 #if (PERL_REVISION == 5) && (PERL_VERSION >= 18) | |
8810
83d0b976d9b3
commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
609 # define PL_memory_wrap "panic: memory wrap" /* Dummy */ |
5537 | 610 # include <inline.h> |
8810
83d0b976d9b3
commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
611 # undef PL_memory_wrap |
5537 | 612 #endif |
613 | |
7 | 614 /* |
615 * Make all runtime-links of perl. | |
616 * | |
5267
585b623a1aa3
updated for version 7.4b.010
Bram Moolenaar <bram@vim.org>
parents:
5261
diff
changeset
|
617 * 1. Get module handle using dlopen() or vimLoadLib(). |
7 | 618 * 2. Get pointer to perl function by GetProcAddress. |
619 * 3. Repeat 2, until get all functions will be used. | |
620 * | |
621 * Parameter 'libname' provides name of DLL. | |
622 * Return OK or FAIL. | |
623 */ | |
624 static int | |
625 perl_runtime_link_init(char *libname, int verbose) | |
626 { | |
627 int i; | |
628 | |
629 if (hPerlLib != NULL) | |
630 return OK; | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
631 if ((hPerlLib = load_dll(libname)) == NULL) |
7 | 632 { |
633 if (verbose) | |
634 EMSG2(_("E370: Could not load library %s"), libname); | |
635 return FAIL; | |
636 } | |
637 for (i = 0; perl_funcname_table[i].ptr; ++i) | |
638 { | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
639 if (!(*perl_funcname_table[i].ptr = symbol_from_dll(hPerlLib, |
7 | 640 perl_funcname_table[i].name))) |
641 { | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
642 close_dll(hPerlLib); |
7 | 643 hPerlLib = NULL; |
644 if (verbose) | |
645 EMSG2(_(e_loadfunc), perl_funcname_table[i].name); | |
646 return FAIL; | |
647 } | |
648 } | |
649 return OK; | |
650 } | |
651 | |
652 /* | |
653 * If runtime-link-perl(DLL) was loaded successfully, return TRUE. | |
654 * There were no DLL loaded, return FALSE. | |
655 */ | |
656 int | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
657 perl_enabled(int verbose) |
7 | 658 { |
7528
53163e4d9e4f
commit https://github.com/vim/vim/commit/25e4fcde767084d1a79e0926bc301c92987c0cce
Christian Brabandt <cb@256bit.org>
parents:
7198
diff
changeset
|
659 return perl_runtime_link_init((char *)p_perldll, verbose) == OK; |
7 | 660 } |
661 #endif /* DYNAMIC_PERL */ | |
662 | |
8885
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
663 #if defined(PERLIO_LAYERS) && !defined(USE_SFIO) |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
664 static void vim_IOLayer_init(void); |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
665 #endif |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
666 |
7 | 667 /* |
668 * perl_init(): initialize perl interpreter | |
669 * We have to call perl_parse to initialize some structures, | |
670 * there's nothing to actually parse. | |
671 */ | |
672 static void | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
673 perl_init(void) |
7 | 674 { |
1668 | 675 char *bootargs[] = { "VI", NULL }; |
676 int argc = 3; | |
677 static char *argv[] = { "", "-e", "" }; | |
7 | 678 |
1668 | 679 #if (PERL_REVISION == 5) && (PERL_VERSION >= 10) |
1765 | 680 Perl_sys_init(&argc, (char***)&argv); |
1668 | 681 #endif |
7 | 682 perl_interp = perl_alloc(); |
683 perl_construct(perl_interp); | |
1668 | 684 perl_parse(perl_interp, xs_init, argc, argv, 0); |
7 | 685 perl_call_argv("VIM::bootstrap", (long)G_DISCARD, bootargs); |
686 VIM_init(); | |
687 #ifdef USE_SFIO | |
688 sfdisc(PerlIO_stdout(), sfdcnewvim()); | |
689 sfdisc(PerlIO_stderr(), sfdcnewvim()); | |
690 sfsetbuf(PerlIO_stdout(), NULL, 0); | |
691 sfsetbuf(PerlIO_stderr(), NULL, 0); | |
8885
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
692 #elif defined(PERLIO_LAYERS) |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
693 vim_IOLayer_init(); |
7 | 694 #endif |
695 } | |
696 | |
697 /* | |
698 * perl_end(): clean up after ourselves | |
699 */ | |
700 void | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
701 perl_end(void) |
7 | 702 { |
703 if (perl_interp) | |
704 { | |
705 perl_run(perl_interp); | |
706 perl_destruct(perl_interp); | |
707 perl_free(perl_interp); | |
708 perl_interp = NULL; | |
1668 | 709 #if (PERL_REVISION == 5) && (PERL_VERSION >= 10) |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
710 Perl_sys_term(); |
1668 | 711 #endif |
7 | 712 } |
713 #ifdef DYNAMIC_PERL | |
714 if (hPerlLib) | |
715 { | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2255
diff
changeset
|
716 close_dll(hPerlLib); |
7 | 717 hPerlLib = NULL; |
718 } | |
719 #endif | |
720 } | |
721 | |
722 /* | |
723 * msg_split(): send a message to the message handling routines | |
724 * split at '\n' first though. | |
725 */ | |
726 void | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
727 msg_split( |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
728 char_u *s, |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
729 int attr) /* highlighting attributes */ |
7 | 730 { |
731 char *next; | |
732 char *token = (char *)s; | |
733 | |
1423 | 734 while ((next = strchr(token, '\n')) && !got_int) |
7 | 735 { |
736 *next++ = '\0'; /* replace \n with \0 */ | |
737 msg_attr((char_u *)token, attr); | |
738 token = next; | |
739 } | |
1423 | 740 if (*token && !got_int) |
7 | 741 msg_attr((char_u *)token, attr); |
742 } | |
743 | |
744 #ifndef FEAT_EVAL | |
745 /* | |
746 * This stub is needed because an "#ifdef FEAT_EVAL" around Eval() doesn't | |
747 * work properly. | |
748 */ | |
749 char_u * | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
750 eval_to_string( |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
751 char_u *arg UNUSED, |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
752 char_u **nextcmd UNUSED, |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
753 int dolist UNUSED) |
7 | 754 { |
755 return NULL; | |
756 } | |
757 #endif | |
758 | |
759 /* | |
760 * Create a new reference to an SV pointing to the SCR structure | |
502 | 761 * The b_perl_private/w_perl_private part of the SCR structure points to the |
762 * SV, so there can only be one such SV for a particular SCR structure. When | |
763 * the last reference has gone (DESTROY is called), | |
764 * b_perl_private/w_perl_private is reset; When the screen goes away before | |
7 | 765 * all references are gone, the value of the SV is reset; |
766 * any subsequent use of any of those reference will produce | |
767 * a warning. (see typemap) | |
768 */ | |
502 | 769 |
770 static SV * | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
771 newWINrv(SV *rv, win_T *ptr) |
502 | 772 { |
773 sv_upgrade(rv, SVt_RV); | |
774 if (ptr->w_perl_private == NULL) | |
775 { | |
776 ptr->w_perl_private = newSV(0); | |
3344 | 777 sv_setiv(ptr->w_perl_private, PTR2IV(ptr)); |
502 | 778 } |
779 else | |
780 SvREFCNT_inc(ptr->w_perl_private); | |
781 SvRV(rv) = ptr->w_perl_private; | |
782 SvROK_on(rv); | |
783 return sv_bless(rv, gv_stashpv("VIWIN", TRUE)); | |
7 | 784 } |
785 | |
502 | 786 static SV * |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
787 newBUFrv(SV *rv, buf_T *ptr) |
502 | 788 { |
789 sv_upgrade(rv, SVt_RV); | |
790 if (ptr->b_perl_private == NULL) | |
791 { | |
792 ptr->b_perl_private = newSV(0); | |
3344 | 793 sv_setiv(ptr->b_perl_private, PTR2IV(ptr)); |
502 | 794 } |
795 else | |
796 SvREFCNT_inc(ptr->b_perl_private); | |
797 SvRV(rv) = ptr->b_perl_private; | |
798 SvROK_on(rv); | |
799 return sv_bless(rv, gv_stashpv("VIBUF", TRUE)); | |
800 } | |
7 | 801 |
802 /* | |
803 * perl_win_free | |
4352 | 804 * Remove all references to the window to be destroyed |
7 | 805 */ |
806 void | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
807 perl_win_free(win_T *wp) |
7 | 808 { |
502 | 809 if (wp->w_perl_private) |
810 sv_setiv((SV *)wp->w_perl_private, 0); | |
7 | 811 return; |
812 } | |
813 | |
814 void | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
815 perl_buf_free(buf_T *bp) |
7 | 816 { |
502 | 817 if (bp->b_perl_private) |
818 sv_setiv((SV *)bp->b_perl_private, 0); | |
7 | 819 return; |
820 } | |
821 | |
822 #ifndef PROTO | |
823 # if (PERL_REVISION == 5) && (PERL_VERSION >= 8) | |
824 I32 cur_val(pTHX_ IV iv, SV *sv); | |
825 # else | |
826 I32 cur_val(IV iv, SV *sv); | |
827 #endif | |
828 | |
829 /* | |
830 * Handler for the magic variables $main::curwin and $main::curbuf. | |
831 * The handler is put into the magic vtbl for these variables. | |
832 * (This is effectively a C-level equivalent of a tied variable). | |
833 * There is no "set" function as the variables are read-only. | |
834 */ | |
835 # if (PERL_REVISION == 5) && (PERL_VERSION >= 8) | |
836 I32 cur_val(pTHX_ IV iv, SV *sv) | |
837 # else | |
838 I32 cur_val(IV iv, SV *sv) | |
839 # endif | |
840 { | |
841 SV *rv; | |
842 if (iv == 0) | |
843 rv = newWINrv(newSV(0), curwin); | |
844 else | |
845 rv = newBUFrv(newSV(0), curbuf); | |
846 sv_setsv(sv, rv); | |
8919
240ad5a78199
commit https://github.com/vim/vim/commit/95509e18f8806046eeee27482c77666bbec515da
Christian Brabandt <cb@256bit.org>
parents:
8885
diff
changeset
|
847 SvREFCNT_dec(SvRV(rv)); |
7 | 848 return 0; |
849 } | |
850 #endif /* !PROTO */ | |
851 | |
852 struct ufuncs cw_funcs = { cur_val, 0, 0 }; | |
853 struct ufuncs cb_funcs = { cur_val, 0, 1 }; | |
854 | |
855 /* | |
856 * VIM_init(): Vim-specific initialisation. | |
857 * Make the magical main::curwin and main::curbuf variables | |
858 */ | |
859 static void | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
860 VIM_init(void) |
7 | 861 { |
862 static char cw[] = "main::curwin"; | |
863 static char cb[] = "main::curbuf"; | |
864 SV *sv; | |
865 | |
866 sv = perl_get_sv(cw, TRUE); | |
867 sv_magic(sv, NULL, 'U', (char *)&cw_funcs, sizeof(cw_funcs)); | |
868 SvREADONLY_on(sv); | |
869 | |
870 sv = perl_get_sv(cb, TRUE); | |
871 sv_magic(sv, NULL, 'U', (char *)&cb_funcs, sizeof(cb_funcs)); | |
872 SvREADONLY_on(sv); | |
873 | |
874 /* | |
875 * Setup the Safe compartment. | |
876 * It shouldn't be a fatal error if the Safe module is missing. | |
877 * XXX: Only shares the 'Msg' routine (which has to be called | |
878 * like 'Msg(...)'). | |
879 */ | |
880 (void)perl_eval_pv( "if ( eval( 'require Safe' ) ) { $VIM::safe = Safe->new(); $VIM::safe->share_from( 'VIM', ['Msg'] ); }", G_DISCARD | G_VOID ); | |
881 | |
882 } | |
883 | |
884 #ifdef DYNAMIC_PERL | |
885 static char *e_noperl = N_("Sorry, this command is disabled: the Perl library could not be loaded."); | |
886 #endif | |
887 | |
888 /* | |
889 * ":perl" | |
890 */ | |
891 void | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
892 ex_perl(exarg_T *eap) |
7 | 893 { |
894 char *err; | |
895 char *script; | |
896 STRLEN length; | |
897 SV *sv; | |
2255 | 898 #ifdef HAVE_SANDBOX |
7 | 899 SV *safe; |
2255 | 900 #endif |
7 | 901 |
902 script = (char *)script_get(eap, eap->arg); | |
903 if (eap->skip) | |
904 { | |
905 vim_free(script); | |
906 return; | |
907 } | |
908 | |
909 if (perl_interp == NULL) | |
910 { | |
911 #ifdef DYNAMIC_PERL | |
912 if (!perl_enabled(TRUE)) | |
913 { | |
914 EMSG(_(e_noperl)); | |
915 vim_free(script); | |
916 return; | |
917 } | |
918 #endif | |
919 perl_init(); | |
920 } | |
921 | |
922 { | |
923 dSP; | |
924 ENTER; | |
925 SAVETMPS; | |
926 | |
927 if (script == NULL) | |
928 sv = newSVpv((char *)eap->arg, 0); | |
929 else | |
930 { | |
931 sv = newSVpv(script, 0); | |
932 vim_free(script); | |
933 } | |
934 | |
935 #ifdef HAVE_SANDBOX | |
936 if (sandbox) | |
937 { | |
2982 | 938 safe = perl_get_sv("VIM::safe", FALSE); |
1934 | 939 # ifndef MAKE_TEST /* avoid a warning for unreachable code */ |
1990 | 940 if (safe == NULL || !SvTRUE(safe)) |
7 | 941 EMSG(_("E299: Perl evaluation forbidden in sandbox without the Safe module")); |
942 else | |
1934 | 943 # endif |
7 | 944 { |
945 PUSHMARK(SP); | |
946 XPUSHs(safe); | |
947 XPUSHs(sv); | |
948 PUTBACK; | |
949 perl_call_method("reval", G_DISCARD); | |
950 } | |
951 } | |
952 else | |
953 #endif | |
954 perl_eval_sv(sv, G_DISCARD | G_NOARGS); | |
955 | |
956 SvREFCNT_dec(sv); | |
957 | |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
958 err = CHECK_EVAL_ERR(length); |
7 | 959 |
960 FREETMPS; | |
961 LEAVE; | |
962 | |
963 if (!length) | |
964 return; | |
965 | |
966 msg_split((char_u *)err, highlight_attr[HLF_E]); | |
967 return; | |
968 } | |
969 } | |
970 | |
971 static int | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
972 replace_line(linenr_T *line, linenr_T *end) |
7 | 973 { |
974 char *str; | |
975 | |
976 if (SvOK(GvSV(PL_defgv))) | |
977 { | |
978 str = SvPV(GvSV(PL_defgv), PL_na); | |
979 ml_replace(*line, (char_u *)str, 1); | |
980 changed_bytes(*line, 0); | |
981 } | |
982 else | |
983 { | |
984 ml_delete(*line, FALSE); | |
985 deleted_lines_mark(*line, 1L); | |
986 --(*end); | |
987 --(*line); | |
988 } | |
989 return OK; | |
990 } | |
991 | |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
992 static struct ref_map_S { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
993 void *vim_ref; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
994 SV *perl_ref; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
995 struct ref_map_S *next; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
996 } *ref_map = NULL; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
997 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
998 static void |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
999 ref_map_free(void) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1000 { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1001 struct ref_map_S *tofree; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1002 struct ref_map_S *refs = ref_map; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1003 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1004 while (refs) { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1005 tofree = refs; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1006 refs = refs->next; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1007 vim_free(tofree); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1008 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1009 ref_map = NULL; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1010 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1011 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1012 static struct ref_map_S * |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1013 ref_map_find_SV(SV *const sv) |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1014 { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1015 struct ref_map_S *refs = ref_map; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1016 int count = 350; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1017 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1018 while (refs) { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1019 if (refs->perl_ref == sv) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1020 break; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1021 refs = refs->next; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1022 count--; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1023 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1024 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1025 if (!refs && count > 0) { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1026 refs = (struct ref_map_S *)alloc(sizeof(struct ref_map_S)); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1027 if (!refs) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1028 return NULL; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1029 refs->perl_ref = sv; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1030 refs->vim_ref = NULL; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1031 refs->next = ref_map; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1032 ref_map = refs; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1033 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1034 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1035 return refs; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1036 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1037 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1038 static int |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1039 perl_to_vim(SV *sv, typval_T *rettv) |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1040 { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1041 if (SvROK(sv)) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1042 sv = SvRV(sv); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1043 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1044 switch (SvTYPE(sv)) { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1045 case SVt_NULL: |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1046 break; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1047 case SVt_NV: /* float */ |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1048 #ifdef FEAT_FLOAT |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1049 rettv->v_type = VAR_FLOAT; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1050 rettv->vval.v_float = SvNV(sv); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1051 break; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1052 #endif |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1053 case SVt_IV: /* integer */ |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1054 if (!SvROK(sv)) { /* references should be string */ |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1055 rettv->vval.v_number = SvIV(sv); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1056 break; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1057 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1058 case SVt_PV: /* string */ |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1059 { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1060 size_t len = 0; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1061 char * str_from = SvPV(sv, len); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1062 char_u *str_to = (char_u*)alloc(sizeof(char_u) * (len + 1)); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1063 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1064 if (str_to) { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1065 str_to[len] = '\0'; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1066 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1067 while (len--) { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1068 if (str_from[len] == '\0') |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1069 str_to[len] = '\n'; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1070 else |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1071 str_to[len] = str_from[len]; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1072 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1073 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1074 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1075 rettv->v_type = VAR_STRING; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1076 rettv->vval.v_string = str_to; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1077 break; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1078 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1079 case SVt_PVAV: /* list */ |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1080 { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1081 SSize_t size; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1082 listitem_T * item; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1083 SV ** item2; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1084 list_T * list; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1085 struct ref_map_S * refs; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1086 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1087 if ((refs = ref_map_find_SV(sv)) == NULL) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1088 return FAIL; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1089 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1090 if (refs->vim_ref) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1091 list = (list_T *) refs->vim_ref; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1092 else |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1093 { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1094 if ((list = list_alloc()) == NULL) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1095 return FAIL; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1096 refs->vim_ref = list; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1097 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1098 for (size = av_len((AV*)sv); size >= 0; size--) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1099 { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1100 if ((item = listitem_alloc()) == NULL) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1101 break; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1102 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1103 item->li_tv.v_type = VAR_NUMBER; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1104 item->li_tv.v_lock = 0; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1105 item->li_tv.vval.v_number = 0; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1106 list_insert(list, item, list->lv_first); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1107 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1108 item2 = av_fetch((AV *)sv, size, 0); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1109 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1110 if (item2 == NULL || *item2 == NULL || |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7651
diff
changeset
|
1111 perl_to_vim(*item2, &item->li_tv) == FAIL) |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1112 break; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1113 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1114 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1115 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1116 list->lv_refcount++; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1117 rettv->v_type = VAR_LIST; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1118 rettv->vval.v_list = list; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1119 break; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1120 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1121 case SVt_PVHV: /* dictionary */ |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1122 { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1123 HE * entry; |
8214
51b4fba718bf
commit https://github.com/vim/vim/commit/254ebaf068919407de6bd83ac905bd2f36ad944e
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
1124 I32 key_len; |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1125 char * key; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1126 dictitem_T * item; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1127 SV * item2; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1128 dict_T * dict; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1129 struct ref_map_S * refs; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1130 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1131 if ((refs = ref_map_find_SV(sv)) == NULL) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1132 return FAIL; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1133 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1134 if (refs->vim_ref) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1135 dict = (dict_T *) refs->vim_ref; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1136 else |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1137 { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1138 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1139 if ((dict = dict_alloc()) == NULL) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1140 return FAIL; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1141 refs->vim_ref = dict; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1142 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1143 hv_iterinit((HV *)sv); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1144 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1145 for (entry = hv_iternext((HV *)sv); entry; entry = hv_iternext((HV *)sv)) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1146 { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1147 key_len = 0; |
8214
51b4fba718bf
commit https://github.com/vim/vim/commit/254ebaf068919407de6bd83ac905bd2f36ad944e
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
1148 key = hv_iterkey(entry, &key_len); |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1149 |
8214
51b4fba718bf
commit https://github.com/vim/vim/commit/254ebaf068919407de6bd83ac905bd2f36ad944e
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
1150 if (!key || !key_len || strlen(key) < (size_t)key_len) { |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1151 EMSG2("Malformed key Dictionary '%s'", key && *key ? key : "(empty)"); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1152 break; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1153 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1154 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1155 if ((item = dictitem_alloc((char_u *)key)) == NULL) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1156 break; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1157 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1158 item->di_tv.v_type = VAR_NUMBER; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1159 item->di_tv.v_lock = 0; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1160 item->di_tv.vval.v_number = 0; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1161 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1162 if (dict_add(dict, item) == FAIL) { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1163 dictitem_free(item); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1164 break; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1165 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1166 item2 = hv_iterval((HV *)sv, entry); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1167 if (item2 == NULL || perl_to_vim(item2, &item->di_tv) == FAIL) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1168 break; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1169 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1170 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1171 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1172 dict->dv_refcount++; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1173 rettv->v_type = VAR_DICT; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1174 rettv->vval.v_dict = dict; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1175 break; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1176 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1177 default: /* not convertible */ |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1178 { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1179 char *val = SvPV_nolen(sv); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1180 rettv->v_type = VAR_STRING; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1181 rettv->vval.v_string = val ? vim_strsave((char_u *)val) : NULL; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1182 break; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1183 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1184 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1185 return OK; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1186 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1187 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1188 /* |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1189 * "perleval()" |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1190 */ |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1191 void |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1192 do_perleval(char_u *str, typval_T *rettv) |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1193 { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1194 char *err = NULL; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1195 STRLEN err_len = 0; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1196 SV *sv = NULL; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1197 #ifdef HAVE_SANDBOX |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1198 SV *safe; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1199 #endif |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1200 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1201 if (perl_interp == NULL) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1202 { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1203 #ifdef DYNAMIC_PERL |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1204 if (!perl_enabled(TRUE)) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1205 { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1206 EMSG(_(e_noperl)); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1207 return; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1208 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1209 #endif |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1210 perl_init(); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1211 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1212 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1213 { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1214 dSP; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1215 ENTER; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1216 SAVETMPS; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1217 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1218 #ifdef HAVE_SANDBOX |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1219 if (sandbox) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1220 { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1221 safe = get_sv("VIM::safe", FALSE); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1222 # ifndef MAKE_TEST /* avoid a warning for unreachable code */ |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1223 if (safe == NULL || !SvTRUE(safe)) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1224 EMSG(_("E299: Perl evaluation forbidden in sandbox without the Safe module")); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1225 else |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1226 # endif |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1227 { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1228 sv = newSVpv((char *)str, 0); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1229 PUSHMARK(SP); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1230 XPUSHs(safe); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1231 XPUSHs(sv); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1232 PUTBACK; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1233 call_method("reval", G_SCALAR); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1234 SPAGAIN; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1235 SvREFCNT_dec(sv); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1236 sv = POPs; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1237 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1238 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1239 else |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1240 #endif /* HAVE_SANDBOX */ |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1241 sv = eval_pv((char *)str, 0); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1242 |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1243 if (sv) { |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1244 perl_to_vim(sv, rettv); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1245 ref_map_free(); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1246 err = CHECK_EVAL_ERR(err_len); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1247 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1248 PUTBACK; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1249 FREETMPS; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1250 LEAVE; |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1251 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1252 if (err_len) |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1253 msg_split((char_u *)err, highlight_attr[HLF_E]); |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1254 } |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1255 |
7 | 1256 /* |
1257 * ":perldo". | |
1258 */ | |
1259 void | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1260 ex_perldo(exarg_T *eap) |
7 | 1261 { |
1262 STRLEN length; | |
1263 SV *sv; | |
1264 char *str; | |
1265 linenr_T i; | |
1266 | |
1267 if (bufempty()) | |
1268 return; | |
1269 | |
1270 if (perl_interp == NULL) | |
1271 { | |
1272 #ifdef DYNAMIC_PERL | |
1273 if (!perl_enabled(TRUE)) | |
1274 { | |
1275 EMSG(_(e_noperl)); | |
1276 return; | |
1277 } | |
1278 #endif | |
1279 perl_init(); | |
1280 } | |
1281 { | |
1282 dSP; | |
1283 length = strlen((char *)eap->arg); | |
129 | 1284 sv = newSV(length + sizeof("sub VIM::perldo {") - 1 + 1); |
1285 sv_setpvn(sv, "sub VIM::perldo {", sizeof("sub VIM::perldo {") - 1); | |
7 | 1286 sv_catpvn(sv, (char *)eap->arg, length); |
1287 sv_catpvn(sv, "}", 1); | |
1288 perl_eval_sv(sv, G_DISCARD | G_NOARGS); | |
1289 SvREFCNT_dec(sv); | |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1290 str = CHECK_EVAL_ERR(length); |
7 | 1291 if (length) |
1292 goto err; | |
1293 | |
1294 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK) | |
1295 return; | |
1296 | |
1297 ENTER; | |
1298 SAVETMPS; | |
1299 for (i = eap->line1; i <= eap->line2; i++) | |
1300 { | |
129 | 1301 sv_setpv(GvSV(PL_defgv), (char *)ml_get(i)); |
7 | 1302 PUSHMARK(sp); |
1303 perl_call_pv("VIM::perldo", G_SCALAR | G_EVAL); | |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1304 str = CHECK_EVAL_ERR(length); |
7 | 1305 if (length) |
1306 break; | |
1307 SPAGAIN; | |
1308 if (SvTRUEx(POPs)) | |
1309 { | |
1310 if (replace_line(&i, &eap->line2) != OK) | |
1311 { | |
1312 PUTBACK; | |
1313 break; | |
1314 } | |
1315 } | |
1316 PUTBACK; | |
1317 } | |
1318 FREETMPS; | |
1319 LEAVE; | |
1320 check_cursor(); | |
1321 update_screen(NOT_VALID); | |
1322 if (!length) | |
1323 return; | |
1324 | |
1325 err: | |
1326 msg_split((char_u *)str, highlight_attr[HLF_E]); | |
1327 return; | |
1328 } | |
1329 } | |
1330 | |
8885
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1331 #if defined(PERLIO_LAYERS) && !defined(USE_SFIO) |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1332 typedef struct { |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1333 struct _PerlIO base; |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1334 int attr; |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1335 } PerlIOVim; |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1336 |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1337 static IV |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1338 PerlIOVim_pushed(pTHX_ PerlIO *f, const char *mode, |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1339 SV *arg, PerlIO_funcs *tab) |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1340 { |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1341 PerlIOVim *s = PerlIOSelf(f, PerlIOVim); |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1342 s->attr = 0; |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1343 if (arg && SvPOK(arg)) { |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1344 int id = syn_name2id((char_u *)SvPV_nolen(arg)); |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1345 if (id != 0) |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1346 s->attr = syn_id2attr(id); |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1347 } |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1348 return PerlIOBase_pushed(aTHX_ f, mode, (SV *)NULL, tab); |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1349 } |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1350 |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1351 static SSize_t |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1352 PerlIOVim_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count) |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1353 { |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1354 char_u *str; |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1355 PerlIOVim * s = PerlIOSelf(f, PerlIOVim); |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1356 |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1357 str = vim_strnsave((char_u *)vbuf, count); |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1358 if (str == NULL) |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1359 return 0; |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1360 msg_split((char_u *)str, s->attr); |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1361 vim_free(str); |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1362 |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1363 return count; |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1364 } |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1365 |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1366 static PERLIO_FUNCS_DECL(PerlIO_Vim) = { |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1367 sizeof(PerlIO_funcs), |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1368 "Vim", |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1369 sizeof(PerlIOVim), |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1370 PERLIO_K_DUMMY, /* flags */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1371 PerlIOVim_pushed, |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1372 NULL, /* popped */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1373 NULL, /* open */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1374 NULL, /* binmode */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1375 NULL, /* arg */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1376 NULL, /* fileno */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1377 NULL, /* dup */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1378 NULL, /* read */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1379 NULL, /* unread */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1380 PerlIOVim_write, |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1381 NULL, /* seek */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1382 NULL, /* tell */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1383 NULL, /* close */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1384 NULL, /* flush */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1385 NULL, /* fill */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1386 NULL, /* eof */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1387 NULL, /* error */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1388 NULL, /* clearerr */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1389 NULL, /* setlinebuf */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1390 NULL, /* get_base */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1391 NULL, /* get_bufsiz */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1392 NULL, /* get_ptr */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1393 NULL, /* get_cnt */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1394 NULL /* set_ptrcnt */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1395 }; |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1396 |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1397 /* Use Vim routine for print operator */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1398 static void |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1399 vim_IOLayer_init(void) |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1400 { |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1401 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_Vim)); |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1402 (void)eval_pv( "binmode(STDOUT, ':Vim')" |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1403 " && binmode(STDERR, ':Vim(ErrorMsg)');", 0); |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1404 } |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1405 #endif /* PERLIO_LAYERS && !USE_SFIO */ |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1406 |
1681 | 1407 #ifndef FEAT_WINDOWS |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1408 int |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1409 win_valid(win_T *w) |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1410 { |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1411 return TRUE; |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1412 } |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1413 int |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1414 win_count(void) |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1415 { |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1416 return 1; |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1417 } |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1418 win_T * |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1419 win_find_nr(int n) |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1420 { |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1421 return curwin; |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1422 } |
1681 | 1423 #endif |
1424 | |
7 | 1425 XS(boot_VIM); |
1426 | |
1427 static void | |
1428 xs_init(pTHX) | |
1429 { | |
1430 char *file = __FILE__; | |
1431 | |
1432 /* DynaLoader is a special case */ | |
1433 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file); | |
1434 newXS("VIM::bootstrap", boot_VIM, file); | |
1435 } | |
1436 | |
1437 typedef win_T * VIWIN; | |
1438 typedef buf_T * VIBUF; | |
1439 | |
1440 MODULE = VIM PACKAGE = VIM | |
1441 | |
1442 void | |
1443 Msg(text, hl=NULL) | |
1444 char *text; | |
1445 char *hl; | |
1446 | |
1447 PREINIT: | |
1448 int attr; | |
1449 int id; | |
1450 | |
1451 PPCODE: | |
1452 if (text != NULL) | |
1453 { | |
1454 attr = 0; | |
1455 if (hl != NULL) | |
1456 { | |
1457 id = syn_name2id((char_u *)hl); | |
1458 if (id != 0) | |
1459 attr = syn_id2attr(id); | |
1460 } | |
1461 msg_split((char_u *)text, attr); | |
1462 } | |
1463 | |
1464 void | |
1465 SetOption(line) | |
1466 char *line; | |
1467 | |
1468 PPCODE: | |
1469 if (line != NULL) | |
1470 do_set((char_u *)line, 0); | |
1471 update_screen(NOT_VALID); | |
1472 | |
1473 void | |
1474 DoCommand(line) | |
1475 char *line; | |
1476 | |
1477 PPCODE: | |
1478 if (line != NULL) | |
1479 do_cmdline_cmd((char_u *)line); | |
1480 | |
1481 void | |
1482 Eval(str) | |
1483 char *str; | |
1484 | |
1485 PREINIT: | |
1486 char_u *value; | |
1487 PPCODE: | |
714 | 1488 value = eval_to_string((char_u *)str, (char_u **)0, TRUE); |
7 | 1489 if (value == NULL) |
1490 { | |
1491 XPUSHs(sv_2mortal(newSViv(0))); | |
1492 XPUSHs(sv_2mortal(newSVpv("", 0))); | |
1493 } | |
1494 else | |
1495 { | |
1496 XPUSHs(sv_2mortal(newSViv(1))); | |
1497 XPUSHs(sv_2mortal(newSVpv((char *)value, 0))); | |
1498 vim_free(value); | |
1499 } | |
1500 | |
1501 void | |
1502 Buffers(...) | |
1503 | |
1504 PREINIT: | |
1505 buf_T *vimbuf; | |
1506 int i, b; | |
1507 | |
1508 PPCODE: | |
1509 if (items == 0) | |
1510 { | |
1511 if (GIMME == G_SCALAR) | |
1512 { | |
1513 i = 0; | |
1514 for (vimbuf = firstbuf; vimbuf; vimbuf = vimbuf->b_next) | |
1515 ++i; | |
1516 | |
1517 XPUSHs(sv_2mortal(newSViv(i))); | |
1518 } | |
1519 else | |
1520 { | |
1521 for (vimbuf = firstbuf; vimbuf; vimbuf = vimbuf->b_next) | |
1522 XPUSHs(newBUFrv(newSV(0), vimbuf)); | |
1523 } | |
1524 } | |
1525 else | |
1526 { | |
1527 for (i = 0; i < items; i++) | |
1528 { | |
1529 SV *sv = ST(i); | |
1530 if (SvIOK(sv)) | |
4105 | 1531 b = (int) SvIV(ST(i)); |
7 | 1532 else |
1533 { | |
1534 char_u *pat; | |
1535 STRLEN len; | |
1536 | |
1537 pat = (char_u *)SvPV(sv, len); | |
1538 ++emsg_off; | |
4236 | 1539 b = buflist_findpat(pat, pat+len, FALSE, FALSE, FALSE); |
7 | 1540 --emsg_off; |
1541 } | |
1542 | |
1543 if (b >= 0) | |
1544 { | |
1545 vimbuf = buflist_findnr(b); | |
1546 if (vimbuf) | |
1547 XPUSHs(newBUFrv(newSV(0), vimbuf)); | |
1548 } | |
1549 } | |
1550 } | |
1551 | |
1552 void | |
1553 Windows(...) | |
1554 | |
1555 PREINIT: | |
1556 win_T *vimwin; | |
1557 int i, w; | |
1558 | |
1559 PPCODE: | |
1560 if (items == 0) | |
1561 { | |
1562 if (GIMME == G_SCALAR) | |
1563 XPUSHs(sv_2mortal(newSViv(win_count()))); | |
1564 else | |
1565 { | |
1566 for (vimwin = firstwin; vimwin != NULL; vimwin = W_NEXT(vimwin)) | |
1567 XPUSHs(newWINrv(newSV(0), vimwin)); | |
1568 } | |
1569 } | |
1570 else | |
1571 { | |
1572 for (i = 0; i < items; i++) | |
1573 { | |
4105 | 1574 w = (int) SvIV(ST(i)); |
7 | 1575 vimwin = win_find_nr(w); |
1576 if (vimwin) | |
1577 XPUSHs(newWINrv(newSV(0), vimwin)); | |
1578 } | |
1579 } | |
1580 | |
1581 MODULE = VIM PACKAGE = VIWIN | |
1582 | |
1583 void | |
1584 DESTROY(win) | |
1585 VIWIN win | |
1586 | |
1587 CODE: | |
1588 if (win_valid(win)) | |
502 | 1589 win->w_perl_private = 0; |
7 | 1590 |
1591 SV * | |
1592 Buffer(win) | |
1593 VIWIN win | |
1594 | |
1595 CODE: | |
1596 if (!win_valid(win)) | |
1597 win = curwin; | |
1598 RETVAL = newBUFrv(newSV(0), win->w_buffer); | |
1599 OUTPUT: | |
1600 RETVAL | |
1601 | |
1602 void | |
1603 SetHeight(win, height) | |
1604 VIWIN win | |
1605 int height; | |
1606 | |
1607 PREINIT: | |
1608 win_T *savewin; | |
1609 | |
1610 PPCODE: | |
1611 if (!win_valid(win)) | |
1612 win = curwin; | |
1613 savewin = curwin; | |
1614 curwin = win; | |
1615 win_setheight(height); | |
1616 curwin = savewin; | |
1617 | |
1618 void | |
8810
83d0b976d9b3
commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
1619 Cursor(win, ...) |
83d0b976d9b3
commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
1620 VIWIN win |
7 | 1621 |
1622 PPCODE: | |
2982 | 1623 if (items == 1) |
7 | 1624 { |
1625 EXTEND(sp, 2); | |
1626 if (!win_valid(win)) | |
1627 win = curwin; | |
1628 PUSHs(sv_2mortal(newSViv(win->w_cursor.lnum))); | |
1629 PUSHs(sv_2mortal(newSViv(win->w_cursor.col))); | |
1630 } | |
2982 | 1631 else if (items == 3) |
7 | 1632 { |
1633 int lnum, col; | |
1634 | |
1635 if (!win_valid(win)) | |
1636 win = curwin; | |
4105 | 1637 lnum = (int) SvIV(ST(1)); |
1638 col = (int) SvIV(ST(2)); | |
7 | 1639 win->w_cursor.lnum = lnum; |
1640 win->w_cursor.col = col; | |
1641 check_cursor(); /* put cursor on an existing line */ | |
1642 update_screen(NOT_VALID); | |
1643 } | |
1644 | |
1645 MODULE = VIM PACKAGE = VIBUF | |
1646 | |
1647 void | |
1648 DESTROY(vimbuf) | |
1649 VIBUF vimbuf; | |
1650 | |
1651 CODE: | |
1652 if (buf_valid(vimbuf)) | |
502 | 1653 vimbuf->b_perl_private = 0; |
7 | 1654 |
1655 void | |
1656 Name(vimbuf) | |
1657 VIBUF vimbuf; | |
1658 | |
1659 PPCODE: | |
1660 if (!buf_valid(vimbuf)) | |
1661 vimbuf = curbuf; | |
1662 /* No file name returns an empty string */ | |
1663 if (vimbuf->b_fname == NULL) | |
1664 XPUSHs(sv_2mortal(newSVpv("", 0))); | |
1665 else | |
1666 XPUSHs(sv_2mortal(newSVpv((char *)vimbuf->b_fname, 0))); | |
1667 | |
1668 void | |
1669 Number(vimbuf) | |
1670 VIBUF vimbuf; | |
1671 | |
1672 PPCODE: | |
1673 if (!buf_valid(vimbuf)) | |
1674 vimbuf = curbuf; | |
1675 XPUSHs(sv_2mortal(newSViv(vimbuf->b_fnum))); | |
1676 | |
1677 void | |
1678 Count(vimbuf) | |
1679 VIBUF vimbuf; | |
1680 | |
1681 PPCODE: | |
1682 if (!buf_valid(vimbuf)) | |
1683 vimbuf = curbuf; | |
1684 XPUSHs(sv_2mortal(newSViv(vimbuf->b_ml.ml_line_count))); | |
1685 | |
1686 void | |
1687 Get(vimbuf, ...) | |
1688 VIBUF vimbuf; | |
1689 | |
1690 PREINIT: | |
1691 char_u *line; | |
1692 int i; | |
1693 long lnum; | |
1694 PPCODE: | |
1695 if (buf_valid(vimbuf)) | |
1696 { | |
1697 for (i = 1; i < items; i++) | |
1698 { | |
4105 | 1699 lnum = (long) SvIV(ST(i)); |
7 | 1700 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count) |
1701 { | |
1702 line = ml_get_buf(vimbuf, lnum, FALSE); | |
1703 XPUSHs(sv_2mortal(newSVpv((char *)line, 0))); | |
1704 } | |
1705 } | |
1706 } | |
1707 | |
1708 void | |
1709 Set(vimbuf, ...) | |
1710 VIBUF vimbuf; | |
1711 | |
1712 PREINIT: | |
1713 int i; | |
1714 long lnum; | |
1715 char *line; | |
1716 PPCODE: | |
1717 if (buf_valid(vimbuf)) | |
1718 { | |
1719 if (items < 3) | |
1720 croak("Usage: VIBUF::Set(vimbuf, lnum, @lines)"); | |
1721 | |
4105 | 1722 lnum = (long) SvIV(ST(1)); |
7 | 1723 for(i = 2; i < items; i++, lnum++) |
1724 { | |
1725 line = SvPV(ST(i),PL_na); | |
1726 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL) | |
1727 { | |
918 | 1728 aco_save_T aco; |
1729 | |
1730 /* set curwin/curbuf for "vimbuf" and save some things */ | |
1731 aucmd_prepbuf(&aco, vimbuf); | |
1732 | |
7 | 1733 if (u_savesub(lnum) == OK) |
1734 { | |
1735 ml_replace(lnum, (char_u *)line, TRUE); | |
1736 changed_bytes(lnum, 0); | |
1737 } | |
934 | 1738 |
918 | 1739 /* restore curwin/curbuf and a few other things */ |
1740 aucmd_restbuf(&aco); | |
1741 /* Careful: autocommands may have made "vimbuf" invalid! */ | |
7 | 1742 } |
1743 } | |
1744 } | |
1745 | |
1746 void | |
1747 Delete(vimbuf, ...) | |
1748 VIBUF vimbuf; | |
1749 | |
1750 PREINIT: | |
1751 long i, lnum = 0, count = 0; | |
1752 PPCODE: | |
1753 if (buf_valid(vimbuf)) | |
1754 { | |
1755 if (items == 2) | |
1756 { | |
4105 | 1757 lnum = (long) SvIV(ST(1)); |
7 | 1758 count = 1; |
1759 } | |
1760 else if (items == 3) | |
1761 { | |
4105 | 1762 lnum = (long) SvIV(ST(1)); |
1763 count = (long) 1 + SvIV(ST(2)) - lnum; | |
2982 | 1764 if (count == 0) |
7 | 1765 count = 1; |
2982 | 1766 if (count < 0) |
7 | 1767 { |
1768 lnum -= count; | |
1769 count = -count; | |
1770 } | |
1771 } | |
1772 if (items >= 2) | |
1773 { | |
1774 for (i = 0; i < count; i++) | |
1775 { | |
1776 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count) | |
1777 { | |
918 | 1778 aco_save_T aco; |
1779 | |
1780 /* set curwin/curbuf for "vimbuf" and save some things */ | |
1781 aucmd_prepbuf(&aco, vimbuf); | |
934 | 1782 |
7 | 1783 if (u_savedel(lnum, 1) == OK) |
1784 { | |
1785 ml_delete(lnum, 0); | |
1929 | 1786 check_cursor(); |
7 | 1787 deleted_lines_mark(lnum, 1L); |
1788 } | |
934 | 1789 |
918 | 1790 /* restore curwin/curbuf and a few other things */ |
1791 aucmd_restbuf(&aco); | |
1792 /* Careful: autocommands may have made "vimbuf" invalid! */ | |
934 | 1793 |
7 | 1794 update_curbuf(VALID); |
1795 } | |
1796 } | |
1797 } | |
1798 } | |
1799 | |
1800 void | |
1801 Append(vimbuf, ...) | |
1802 VIBUF vimbuf; | |
1803 | |
1804 PREINIT: | |
1805 int i; | |
1806 long lnum; | |
1807 char *line; | |
1808 PPCODE: | |
1809 if (buf_valid(vimbuf)) | |
1810 { | |
1811 if (items < 3) | |
1812 croak("Usage: VIBUF::Append(vimbuf, lnum, @lines)"); | |
1813 | |
4105 | 1814 lnum = (long) SvIV(ST(1)); |
7 | 1815 for (i = 2; i < items; i++, lnum++) |
1816 { | |
1817 line = SvPV(ST(i),PL_na); | |
1818 if (lnum >= 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL) | |
1819 { | |
918 | 1820 aco_save_T aco; |
1821 | |
1822 /* set curwin/curbuf for "vimbuf" and save some things */ | |
1823 aucmd_prepbuf(&aco, vimbuf); | |
1824 | |
7 | 1825 if (u_inssub(lnum + 1) == OK) |
1826 { | |
1827 ml_append(lnum, (char_u *)line, (colnr_T)0, FALSE); | |
1828 appended_lines_mark(lnum, 1L); | |
1829 } | |
934 | 1830 |
918 | 1831 /* restore curwin/curbuf and a few other things */ |
1832 aucmd_restbuf(&aco); | |
1833 /* Careful: autocommands may have made "vimbuf" invalid! */ | |
934 | 1834 |
7 | 1835 update_curbuf(VALID); |
1836 } | |
1837 } | |
1838 } | |
1839 | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
1840 #ifdef __GNUC__ |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
1841 # pragma GCC diagnostic pop |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
1842 #endif |