Mercurial > vim
annotate src/if_mzsch.c @ 30359:6391b3ca26b7 v9.0.0515
patch 9.0.0515: virtual text highlight starts too early when 'number' is set
Commit: https://github.com/vim/vim/commit/2fdc9b541918237168ca05ac09eb4bb245e5c6c5
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Sep 20 15:59:22 2022 +0100
patch 9.0.0515: virtual text highlight starts too early when 'number' is set
Problem: Virtual text highlight starts too early when 'number' is set.
Solution: Set column offset when wrapping. (issue https://github.com/vim/vim/issues/11138)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 20 Sep 2022 17:00:05 +0200 |
parents | 029c59bf78f1 |
children | 101f08b49ed3 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9961
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
14 | 2 * |
151 | 3 * MzScheme interface by Sergey Khorev <sergey.khorev@gmail.com> |
4074 | 4 * Based on work by Brent Fulgham <bfulgham@debian.org> |
14 | 5 * (Based on lots of help from Matthew Flatt) |
6 * | |
7 * This consists of six parts: | |
8 * 1. MzScheme interpreter main program | |
9 * 2. Routines that handle the external interface between MzScheme and | |
10 * Vim. | |
11 * 3. MzScheme input/output handlers: writes output via [e]msg(). | |
12 * 4. Implementation of the Vim Features for MzScheme | |
13 * 5. Vim Window-related Manipulation Functions. | |
14 * 6. Vim Buffer-related Manipulation Functions | |
15 * | |
16 * NOTES | |
17 * 1. Memory, allocated with scheme_malloc*, need not to be freed explicitly, | |
18 * garbage collector will do it self | |
19 * 2. Requires at least NORMAL features. I can't imagine why one may want | |
20 * to build with SMALL or TINY features but with MzScheme interface. | |
1894 | 21 * 3. I don't use K&R-style functions. Anyways, MzScheme headers are ANSI. |
14 | 22 */ |
23 | |
24 #include "vim.h" | |
1284 | 25 |
14 | 26 #include "if_mzsch.h" |
27 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
28 // Only do the following when the feature is enabled. Needed for "make |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
29 // depend". |
800 | 30 #if defined(FEAT_MZSCHEME) || defined(PROTO) |
31 | |
7813
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
32 #ifdef PROTO |
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
33 typedef int Scheme_Object; |
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
34 typedef int Scheme_Closed_Prim; |
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
35 typedef int Scheme_Env; |
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
36 typedef int Scheme_Hash_Table; |
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
37 typedef int Scheme_Type; |
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
38 typedef int Scheme_Thread; |
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
39 typedef int Scheme_Closed_Prim; |
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
40 typedef int mzshort; |
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
41 typedef int Scheme_Prim; |
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
42 typedef int HINSTANCE; |
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
43 #endif |
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
44 |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
45 /* |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
46 * scheme_register_tls_space is only available on 32-bit Windows until |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
47 * racket-6.3. See |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
48 * http://docs.racket-lang.org/inside/im_memoryalloc.html?q=scheme_register_tls_space |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
49 */ |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
50 #if MZSCHEME_VERSION_MAJOR >= 500 && defined(MSWIN) \ |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
51 && defined(USE_THREAD_LOCAL) \ |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
52 && (!defined(_WIN64) || MZSCHEME_VERSION_MAJOR >= 603) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
53 # define HAVE_TLS_SPACE 1 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
54 #endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
55 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
56 /* |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
57 * Since version 4.x precise GC requires trampolined startup. |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
58 * Futures and places in version 5.x need it too. |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
59 */ |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
60 #if defined(MZ_PRECISE_GC) && MZSCHEME_VERSION_MAJOR >= 400 \ |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
61 || MZSCHEME_VERSION_MAJOR >= 500 \ |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
62 && (defined(MZ_USE_FUTURES) || defined(MZ_USE_PLACES)) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
63 # define TRAMPOLINED_MZVIM_STARTUP |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
64 #endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
65 |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
66 // Base data structures |
14 | 67 #define SCHEME_VIMBUFFERP(obj) SAME_TYPE(SCHEME_TYPE(obj), mz_buffer_type) |
68 #define SCHEME_VIMWINDOWP(obj) SAME_TYPE(SCHEME_TYPE(obj), mz_window_type) | |
69 | |
70 typedef struct | |
71 { | |
1894 | 72 Scheme_Object so; |
14 | 73 buf_T *buf; |
74 } vim_mz_buffer; | |
75 | |
76 #define INVALID_BUFFER_VALUE ((buf_T *)(-1)) | |
77 | |
78 typedef struct | |
79 { | |
1894 | 80 Scheme_Object so; |
667 | 81 win_T *win; |
14 | 82 } vim_mz_window; |
83 | |
84 #define INVALID_WINDOW_VALUE ((win_T *)(-1)) | |
85 | |
86 /* | |
87 * Prims that form MzScheme Vim interface | |
88 */ | |
89 typedef struct | |
90 { | |
91 Scheme_Closed_Prim *prim; | |
92 char *name; | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
93 int mina; // arity information |
14 | 94 int maxa; |
95 } Vim_Prim; | |
96 | |
97 typedef struct | |
98 { | |
99 char *name; | |
100 Scheme_Object *port; | |
101 } Port_Info; | |
102 | |
103 /* | |
104 *======================================================================== | |
105 * Vim-Control Commands | |
106 *======================================================================== | |
107 */ | |
108 /* | |
109 *======================================================================== | |
110 * Utility functions for the vim/mzscheme interface | |
111 *======================================================================== | |
112 */ | |
274 | 113 #ifdef HAVE_SANDBOX |
114 static Scheme_Object *sandbox_file_guard(int, Scheme_Object **); | |
115 static Scheme_Object *sandbox_network_guard(int, Scheme_Object **); | |
1125 | 116 static void sandbox_check(void); |
274 | 117 #endif |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
118 // Buffer-related commands |
14 | 119 static Scheme_Object *buffer_new(buf_T *buf); |
120 static Scheme_Object *get_buffer_by_num(void *, int, Scheme_Object **); | |
121 static vim_mz_buffer *get_vim_curr_buffer(void); | |
122 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
123 // Window-related commands |
14 | 124 static Scheme_Object *window_new(win_T *win); |
125 static vim_mz_window *get_vim_curr_window(void); | |
126 | |
127 /* | |
128 *======================================================================== | |
129 * Internal Function Prototypes | |
130 *======================================================================== | |
131 */ | |
132 static int vim_error_check(void); | |
133 static int do_mzscheme_command(exarg_T *, void *, Scheme_Closed_Prim *what); | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
134 static int startup_mzscheme(void); |
14 | 135 static char *string_to_line(Scheme_Object *obj); |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
136 #if MZSCHEME_VERSION_MAJOR >= 501 |
4074 | 137 # define OUTPUT_LEN_TYPE intptr_t |
138 #else | |
139 # define OUTPUT_LEN_TYPE long | |
140 #endif | |
141 static void do_output(char *mesg, OUTPUT_LEN_TYPE len); | |
25475
038eb6d9003a
patch 8.2.3274: macro for printf format check can be simplified
Bram Moolenaar <Bram@vim.org>
parents:
25342
diff
changeset
|
142 static void do_printf(char *format, ...) ATTRIBUTE_FORMAT_PRINTF(1, 2); |
14 | 143 static void do_flush(void); |
144 static Scheme_Object *_apply_thunk_catch_exceptions( | |
145 Scheme_Object *, Scheme_Object **); | |
146 static Scheme_Object *extract_exn_message(Scheme_Object *v); | |
147 static Scheme_Object *do_eval(void *, int noargc, Scheme_Object **noargv); | |
148 static Scheme_Object *do_load(void *, int noargc, Scheme_Object **noargv); | |
1894 | 149 static void register_vim_exn(void); |
14 | 150 static vim_mz_buffer *get_buffer_arg(const char *fname, int argnum, |
151 int argc, Scheme_Object **argv); | |
152 static vim_mz_window *get_window_arg(const char *fname, int argnum, | |
153 int argc, Scheme_Object **argv); | |
154 static int line_in_range(linenr_T, buf_T *); | |
155 static void check_line_range(linenr_T, buf_T *); | |
156 static void mz_fix_cursor(int lo, int hi, int extra); | |
157 | |
1894 | 158 static int eval_with_exn_handling(void *, Scheme_Closed_Prim *, |
159 Scheme_Object **ret); | |
160 static void make_modules(void); | |
161 static void init_exn_catching_apply(void); | |
162 static int mzscheme_env_main(Scheme_Env *env, int argc, char **argv); | |
163 static int mzscheme_init(void); | |
164 #ifdef FEAT_EVAL | |
4074 | 165 static Scheme_Object *vim_to_mzscheme(typval_T *vim_value); |
166 static Scheme_Object *vim_to_mzscheme_impl(typval_T *vim_value, int depth, | |
1894 | 167 Scheme_Hash_Table *visited); |
4074 | 168 static int mzscheme_to_vim(Scheme_Object *obj, typval_T *tv); |
169 static int mzscheme_to_vim_impl(Scheme_Object *obj, typval_T *tv, int depth, | |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
170 Scheme_Hash_Table *visited); |
4074 | 171 static Scheme_Object *vim_funcref(void *data, int argc, Scheme_Object **argv); |
1894 | 172 #endif |
173 | |
174 #ifdef MZ_PRECISE_GC | |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
175 static int buffer_size_proc(void *obj UNUSED) |
1894 | 176 { |
177 return gcBYTES_TO_WORDS(sizeof(vim_mz_buffer)); | |
178 } | |
179 static int buffer_mark_proc(void *obj) | |
180 { | |
181 return buffer_size_proc(obj); | |
182 } | |
183 static int buffer_fixup_proc(void *obj) | |
184 { | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
185 // apparently not needed as the object will be uncollectable while |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
186 // the buffer is alive |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
187 // vim_mz_buffer* buf = (vim_mz_buffer*) obj; |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
188 // buf->buf->b_mzscheme_ref = GC_fixup_self(obj); |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
189 |
1894 | 190 return buffer_size_proc(obj); |
191 } | |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
192 static int window_size_proc(void *obj UNUSED) |
1894 | 193 { |
194 return gcBYTES_TO_WORDS(sizeof(vim_mz_window)); | |
195 } | |
196 static int window_mark_proc(void *obj) | |
197 { | |
198 return window_size_proc(obj); | |
199 } | |
200 static int window_fixup_proc(void *obj) | |
201 { | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
202 // apparently not needed as the object will be uncollectable while |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
203 // the window is alive |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
204 // vim_mz_window* win = (vim_mz_window*) obj; |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
205 // win->win->w_mzscheme_ref = GC_fixup_self(obj); |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
206 // |
1894 | 207 return window_size_proc(obj); |
208 } | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
209 // with precise GC, w_mzscheme_ref and b_mzscheme_ref are immobile boxes |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
210 // containing pointers to a window/buffer |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
211 // with conservative GC these are simply pointers |
4074 | 212 # define WINDOW_REF(win) *(vim_mz_window **)((win)->w_mzscheme_ref) |
213 # define BUFFER_REF(buf) *(vim_mz_buffer **)((buf)->b_mzscheme_ref) | |
214 #else | |
215 # define WINDOW_REF(win) (vim_mz_window *)((win)->w_mzscheme_ref) | |
216 # define BUFFER_REF(buf) (vim_mz_buffer *)((buf)->b_mzscheme_ref) | |
1894 | 217 #endif |
14 | 218 |
7813
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
219 #if defined(DYNAMIC_MZSCHEME) || defined(PROTO) |
137 | 220 static Scheme_Object *dll_scheme_eof; |
221 static Scheme_Object *dll_scheme_false; | |
222 static Scheme_Object *dll_scheme_void; | |
223 static Scheme_Object *dll_scheme_null; | |
224 static Scheme_Object *dll_scheme_true; | |
225 | |
226 static Scheme_Thread **dll_scheme_current_thread_ptr; | |
227 | |
228 static void (**dll_scheme_console_printf_ptr)(char *str, ...); | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
229 static void (**dll_scheme_console_output_ptr)(char *str, OUTPUT_LEN_TYPE len); |
137 | 230 static void (**dll_scheme_notify_multithread_ptr)(int on); |
231 | |
232 static void *(*dll_GC_malloc)(size_t size_in_bytes); | |
233 static void *(*dll_GC_malloc_atomic)(size_t size_in_bytes); | |
234 static Scheme_Env *(*dll_scheme_basic_env)(void); | |
235 static void (*dll_scheme_check_threads)(void); | |
236 static void (*dll_scheme_register_static)(void *ptr, long size); | |
237 static void (*dll_scheme_set_stack_base)(void *base, int no_auto_statics); | |
238 static void (*dll_scheme_add_global)(const char *name, Scheme_Object *val, | |
239 Scheme_Env *env); | |
240 static void (*dll_scheme_add_global_symbol)(Scheme_Object *name, | |
241 Scheme_Object *val, Scheme_Env *env); | |
242 static Scheme_Object *(*dll_scheme_apply)(Scheme_Object *rator, int num_rands, | |
243 Scheme_Object **rands); | |
244 static Scheme_Object *(*dll_scheme_builtin_value)(const char *name); | |
274 | 245 # if MZSCHEME_VERSION_MAJOR >= 299 |
246 static Scheme_Object *(*dll_scheme_byte_string_to_char_string)(Scheme_Object *s); | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
247 static Scheme_Object *(*dll_scheme_make_path)(const char *chars); |
274 | 248 # endif |
137 | 249 static void (*dll_scheme_close_input_port)(Scheme_Object *port); |
250 static void (*dll_scheme_count_lines)(Scheme_Object *port); | |
1284 | 251 #if MZSCHEME_VERSION_MAJOR < 360 |
137 | 252 static Scheme_Object *(*dll_scheme_current_continuation_marks)(void); |
1284 | 253 #else |
254 static Scheme_Object *(*dll_scheme_current_continuation_marks)(Scheme_Object *prompt_tag); | |
255 #endif | |
137 | 256 static void (*dll_scheme_display)(Scheme_Object *obj, Scheme_Object *port); |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
257 static char *(*dll_scheme_display_to_string)(Scheme_Object *obj, OUTPUT_LEN_TYPE *len); |
274 | 258 static int (*dll_scheme_eq)(Scheme_Object *obj1, Scheme_Object *obj2); |
137 | 259 static Scheme_Object *(*dll_scheme_do_eval)(Scheme_Object *obj, |
260 int _num_rands, Scheme_Object **rands, int val); | |
261 static void (*dll_scheme_dont_gc_ptr)(void *p); | |
262 static Scheme_Object *(*dll_scheme_eval)(Scheme_Object *obj, Scheme_Env *env); | |
263 static Scheme_Object *(*dll_scheme_eval_string)(const char *str, | |
264 Scheme_Env *env); | |
344 | 265 static Scheme_Object *(*dll_scheme_eval_string_all)(const char *str, |
137 | 266 Scheme_Env *env, int all); |
267 static void (*dll_scheme_finish_primitive_module)(Scheme_Env *env); | |
151 | 268 # if MZSCHEME_VERSION_MAJOR < 299 |
137 | 269 static char *(*dll_scheme_format)(char *format, int flen, int argc, |
270 Scheme_Object **argv, long *rlen); | |
151 | 271 # else |
272 static char *(*dll_scheme_format_utf8)(char *format, int flen, int argc, | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
273 Scheme_Object **argv, OUTPUT_LEN_TYPE *rlen); |
274 | 274 static Scheme_Object *(*dll_scheme_get_param)(Scheme_Config *c, int pos); |
151 | 275 # endif |
137 | 276 static void (*dll_scheme_gc_ptr_ok)(void *p); |
151 | 277 # if MZSCHEME_VERSION_MAJOR < 299 |
137 | 278 static char *(*dll_scheme_get_sized_string_output)(Scheme_Object *, |
279 long *len); | |
151 | 280 # else |
281 static char *(*dll_scheme_get_sized_byte_string_output)(Scheme_Object *, | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
282 OUTPUT_LEN_TYPE *len); |
151 | 283 # endif |
137 | 284 static Scheme_Object *(*dll_scheme_intern_symbol)(const char *name); |
285 static Scheme_Object *(*dll_scheme_lookup_global)(Scheme_Object *symbol, | |
286 Scheme_Env *env); | |
287 static Scheme_Object *(*dll_scheme_make_closed_prim_w_arity) | |
288 (Scheme_Closed_Prim *prim, void *data, const char *name, mzshort mina, | |
289 mzshort maxa); | |
290 static Scheme_Object *(*dll_scheme_make_integer_value)(long i); | |
344 | 291 static Scheme_Object *(*dll_scheme_make_pair)(Scheme_Object *car, |
137 | 292 Scheme_Object *cdr); |
274 | 293 static Scheme_Object *(*dll_scheme_make_prim_w_arity)(Scheme_Prim *prim, |
294 const char *name, mzshort mina, mzshort maxa); | |
151 | 295 # if MZSCHEME_VERSION_MAJOR < 299 |
137 | 296 static Scheme_Object *(*dll_scheme_make_string)(const char *chars); |
297 static Scheme_Object *(*dll_scheme_make_string_output_port)(); | |
151 | 298 # else |
299 static Scheme_Object *(*dll_scheme_make_byte_string)(const char *chars); | |
300 static Scheme_Object *(*dll_scheme_make_byte_string_output_port)(); | |
301 # endif | |
137 | 302 static Scheme_Object *(*dll_scheme_make_struct_instance)(Scheme_Object *stype, |
303 int argc, Scheme_Object **argv); | |
304 static Scheme_Object **(*dll_scheme_make_struct_names)(Scheme_Object *base, | |
305 Scheme_Object *field_names, int flags, int *count_out); | |
306 static Scheme_Object *(*dll_scheme_make_struct_type)(Scheme_Object *base, | |
307 Scheme_Object *parent, Scheme_Object *inspector, int num_fields, | |
308 int num_uninit_fields, Scheme_Object *uninit_val, | |
151 | 309 Scheme_Object *properties |
310 # if MZSCHEME_VERSION_MAJOR >= 299 | |
311 , Scheme_Object *guard | |
312 # endif | |
313 ); | |
137 | 314 static Scheme_Object **(*dll_scheme_make_struct_values)( |
315 Scheme_Object *struct_type, Scheme_Object **names, int count, | |
316 int flags); | |
317 static Scheme_Type (*dll_scheme_make_type)(const char *name); | |
318 static Scheme_Object *(*dll_scheme_make_vector)(int size, | |
319 Scheme_Object *fill); | |
320 static void *(*dll_scheme_malloc_fail_ok)(void *(*f)(size_t), size_t); | |
321 static Scheme_Object *(*dll_scheme_open_input_file)(const char *name, | |
322 const char *who); | |
323 static Scheme_Env *(*dll_scheme_primitive_module)(Scheme_Object *name, | |
324 Scheme_Env *for_env); | |
325 static int (*dll_scheme_proper_list_length)(Scheme_Object *list); | |
326 static void (*dll_scheme_raise)(Scheme_Object *exn); | |
327 static Scheme_Object *(*dll_scheme_read)(Scheme_Object *port); | |
328 static void (*dll_scheme_signal_error)(const char *msg, ...); | |
329 static void (*dll_scheme_wrong_type)(const char *name, const char *expected, | |
330 int which, int argc, Scheme_Object **argv); | |
151 | 331 # if MZSCHEME_VERSION_MAJOR >= 299 |
344 | 332 static void (*dll_scheme_set_param)(Scheme_Config *c, int pos, |
151 | 333 Scheme_Object *o); |
334 static Scheme_Config *(*dll_scheme_current_config)(void); | |
335 static Scheme_Object *(*dll_scheme_char_string_to_byte_string) | |
336 (Scheme_Object *s); | |
1307 | 337 static Scheme_Object *(*dll_scheme_char_string_to_path) |
338 (Scheme_Object *s); | |
4074 | 339 static void *(*dll_scheme_set_collects_path)(Scheme_Object *p); |
151 | 340 # endif |
1894 | 341 static Scheme_Hash_Table *(*dll_scheme_make_hash_table)(int type); |
342 static void (*dll_scheme_hash_set)(Scheme_Hash_Table *table, | |
343 Scheme_Object *key, Scheme_Object *value); | |
344 static Scheme_Object *(*dll_scheme_hash_get)(Scheme_Hash_Table *table, | |
345 Scheme_Object *key); | |
346 static Scheme_Object *(*dll_scheme_make_double)(double d); | |
347 static Scheme_Object *(*dll_scheme_make_sized_byte_string)(char *chars, | |
348 long len, int copy); | |
349 static Scheme_Object *(*dll_scheme_namespace_require)(Scheme_Object *req); | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
350 static Scheme_Object *(*dll_scheme_dynamic_wind)(void (*pre)(void *), Scheme_Object *(* volatile act)(void *), void (* volatile post)(void *), Scheme_Object *(*jmp_handler)(void *), void * volatile data); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
351 # ifdef MZ_PRECISE_GC |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
352 static void *(*dll_GC_malloc_one_tagged)(size_t size_in_bytes); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
353 static void (*dll_GC_register_traversers)(short tag, Size_Proc size, Mark_Proc mark, Fixup_Proc fixup, int is_constant_size, int is_atomic); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
354 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
355 # if MZSCHEME_VERSION_MAJOR >= 400 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
356 static void (*dll_scheme_init_collection_paths)(Scheme_Env *global_env, Scheme_Object *extra_dirs); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
357 static void **(*dll_scheme_malloc_immobile_box)(void *p); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
358 static void (*dll_scheme_free_immobile_box)(void **b); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
359 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
360 # if MZSCHEME_VERSION_MAJOR >= 500 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
361 # ifdef TRAMPOLINED_MZVIM_STARTUP |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
362 static int (*dll_scheme_main_setup)(int no_auto_statics, Scheme_Env_Main _main, int argc, char **argv); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
363 # if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || MZSCHEME_VERSION_MAJOR >= 603 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
364 static void (*dll_scheme_register_tls_space)(void *tls_space, int _tls_index); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
365 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
366 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
367 # if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || defined(IMPLEMENT_THREAD_LOCAL_EXTERNALLY_VIA_PROC) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
368 static Thread_Local_Variables *(*dll_scheme_external_get_thread_local_variables)(void); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
369 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
370 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
371 # if MZSCHEME_VERSION_MAJOR >= 600 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
372 static void (*dll_scheme_embedded_load)(intptr_t len, const char *s, int predefined); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
373 static void (*dll_scheme_register_embedded_load)(intptr_t len, const char *s); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
374 static void (*dll_scheme_set_config_path)(Scheme_Object *p); |
1894 | 375 # endif |
137 | 376 |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
377 #if defined(DYNAMIC_MZSCHEME) // not when defined(PROTO) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
378 |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
379 // arrays are imported directly |
137 | 380 # define scheme_eof dll_scheme_eof |
381 # define scheme_false dll_scheme_false | |
382 # define scheme_void dll_scheme_void | |
383 # define scheme_null dll_scheme_null | |
384 # define scheme_true dll_scheme_true | |
385 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
386 // pointers are GetProceAddress'ed as pointers to pointer |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
387 #if !defined(USE_THREAD_LOCAL) && !defined(LINK_EXTENSIONS_BY_TABLE) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
388 # define scheme_current_thread (*dll_scheme_current_thread_ptr) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
389 # endif |
137 | 390 # define scheme_console_printf (*dll_scheme_console_printf_ptr) |
391 # define scheme_console_output (*dll_scheme_console_output_ptr) | |
392 # define scheme_notify_multithread (*dll_scheme_notify_multithread_ptr) | |
393 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
394 // and functions in a usual way |
137 | 395 # define GC_malloc dll_GC_malloc |
396 # define GC_malloc_atomic dll_GC_malloc_atomic | |
397 | |
398 # define scheme_add_global dll_scheme_add_global | |
399 # define scheme_add_global_symbol dll_scheme_add_global_symbol | |
400 # define scheme_apply dll_scheme_apply | |
401 # define scheme_basic_env dll_scheme_basic_env | |
402 # define scheme_builtin_value dll_scheme_builtin_value | |
274 | 403 # if MZSCHEME_VERSION_MAJOR >= 299 |
404 # define scheme_byte_string_to_char_string dll_scheme_byte_string_to_char_string | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
405 # define scheme_make_path dll_scheme_make_path |
274 | 406 # endif |
137 | 407 # define scheme_check_threads dll_scheme_check_threads |
408 # define scheme_close_input_port dll_scheme_close_input_port | |
409 # define scheme_count_lines dll_scheme_count_lines | |
410 # define scheme_current_continuation_marks \ | |
411 dll_scheme_current_continuation_marks | |
412 # define scheme_display dll_scheme_display | |
413 # define scheme_display_to_string dll_scheme_display_to_string | |
414 # define scheme_do_eval dll_scheme_do_eval | |
415 # define scheme_dont_gc_ptr dll_scheme_dont_gc_ptr | |
274 | 416 # define scheme_eq dll_scheme_eq |
137 | 417 # define scheme_eval dll_scheme_eval |
418 # define scheme_eval_string dll_scheme_eval_string | |
419 # define scheme_eval_string_all dll_scheme_eval_string_all | |
420 # define scheme_finish_primitive_module dll_scheme_finish_primitive_module | |
151 | 421 # if MZSCHEME_VERSION_MAJOR < 299 |
422 # define scheme_format dll_scheme_format | |
423 # else | |
424 # define scheme_format_utf8 dll_scheme_format_utf8 | |
425 # endif | |
137 | 426 # define scheme_gc_ptr_ok dll_scheme_gc_ptr_ok |
151 | 427 # if MZSCHEME_VERSION_MAJOR < 299 |
4074 | 428 # define scheme_get_sized_byte_string_output dll_scheme_get_sized_string_output |
151 | 429 # else |
430 # define scheme_get_sized_byte_string_output \ | |
431 dll_scheme_get_sized_byte_string_output | |
4074 | 432 # define scheme_get_param dll_scheme_get_param |
151 | 433 # endif |
137 | 434 # define scheme_intern_symbol dll_scheme_intern_symbol |
435 # define scheme_lookup_global dll_scheme_lookup_global | |
436 # define scheme_make_closed_prim_w_arity dll_scheme_make_closed_prim_w_arity | |
437 # define scheme_make_integer_value dll_scheme_make_integer_value | |
438 # define scheme_make_pair dll_scheme_make_pair | |
274 | 439 # define scheme_make_prim_w_arity dll_scheme_make_prim_w_arity |
151 | 440 # if MZSCHEME_VERSION_MAJOR < 299 |
4074 | 441 # define scheme_make_byte_string dll_scheme_make_string |
442 # define scheme_make_byte_string_output_port dll_scheme_make_string_output_port | |
151 | 443 # else |
444 # define scheme_make_byte_string dll_scheme_make_byte_string | |
445 # define scheme_make_byte_string_output_port \ | |
446 dll_scheme_make_byte_string_output_port | |
447 # endif | |
137 | 448 # define scheme_make_struct_instance dll_scheme_make_struct_instance |
449 # define scheme_make_struct_names dll_scheme_make_struct_names | |
450 # define scheme_make_struct_type dll_scheme_make_struct_type | |
451 # define scheme_make_struct_values dll_scheme_make_struct_values | |
452 # define scheme_make_type dll_scheme_make_type | |
453 # define scheme_make_vector dll_scheme_make_vector | |
454 # define scheme_malloc_fail_ok dll_scheme_malloc_fail_ok | |
455 # define scheme_open_input_file dll_scheme_open_input_file | |
456 # define scheme_primitive_module dll_scheme_primitive_module | |
457 # define scheme_proper_list_length dll_scheme_proper_list_length | |
458 # define scheme_raise dll_scheme_raise | |
459 # define scheme_read dll_scheme_read | |
460 # define scheme_register_static dll_scheme_register_static | |
461 # define scheme_set_stack_base dll_scheme_set_stack_base | |
462 # define scheme_signal_error dll_scheme_signal_error | |
463 # define scheme_wrong_type dll_scheme_wrong_type | |
151 | 464 # if MZSCHEME_VERSION_MAJOR >= 299 |
465 # define scheme_set_param dll_scheme_set_param | |
466 # define scheme_current_config dll_scheme_current_config | |
467 # define scheme_char_string_to_byte_string \ | |
468 dll_scheme_char_string_to_byte_string | |
1307 | 469 # define scheme_char_string_to_path \ |
470 dll_scheme_char_string_to_path | |
4074 | 471 # define scheme_set_collects_path dll_scheme_set_collects_path |
151 | 472 # endif |
1894 | 473 # define scheme_make_hash_table dll_scheme_make_hash_table |
474 # define scheme_hash_set dll_scheme_hash_set | |
475 # define scheme_hash_get dll_scheme_hash_get | |
476 # define scheme_make_double dll_scheme_make_double | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
477 # define scheme_make_sized_byte_string dll_scheme_make_sized_byte_string |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
478 # define scheme_namespace_require dll_scheme_namespace_require |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
479 # define scheme_dynamic_wind dll_scheme_dynamic_wind |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
480 # ifdef MZ_PRECISE_GC |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
481 # define GC_malloc_one_tagged dll_GC_malloc_one_tagged |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
482 # define GC_register_traversers dll_GC_register_traversers |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
483 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
484 # if MZSCHEME_VERSION_MAJOR >= 400 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
485 # ifdef TRAMPOLINED_MZVIM_STARTUP |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
486 # define scheme_main_setup dll_scheme_main_setup |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
487 # if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || MZSCHEME_VERSION_MAJOR >= 603 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
488 # define scheme_register_tls_space dll_scheme_register_tls_space |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
489 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
490 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
491 # define scheme_init_collection_paths dll_scheme_init_collection_paths |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
492 # define scheme_malloc_immobile_box dll_scheme_malloc_immobile_box |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
493 # define scheme_free_immobile_box dll_scheme_free_immobile_box |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
494 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
495 # if MZSCHEME_VERSION_MAJOR >= 600 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
496 # define scheme_embedded_load dll_scheme_embedded_load |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
497 # define scheme_register_embedded_load dll_scheme_register_embedded_load |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
498 # define scheme_set_config_path dll_scheme_set_config_path |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
499 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
500 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
501 # if MZSCHEME_VERSION_MAJOR >= 500 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
502 # if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || defined(IMPLEMENT_THREAD_LOCAL_EXTERNALLY_VIA_PROC) |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
503 // define as function for macro in schthread.h |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
504 Thread_Local_Variables * |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
505 scheme_external_get_thread_local_variables(void) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
506 { |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
507 return dll_scheme_external_get_thread_local_variables(); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
508 } |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
509 # endif |
1894 | 510 # endif |
137 | 511 |
7813
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
512 #endif |
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
513 |
137 | 514 typedef struct |
515 { | |
516 char *name; | |
517 void **ptr; | |
518 } Thunk_Info; | |
519 | |
520 static Thunk_Info mzgc_imports[] = { | |
521 {"GC_malloc", (void **)&dll_GC_malloc}, | |
522 {"GC_malloc_atomic", (void **)&dll_GC_malloc_atomic}, | |
523 {NULL, NULL}}; | |
524 | |
525 static Thunk_Info mzsch_imports[] = { | |
526 {"scheme_eof", (void **)&dll_scheme_eof}, | |
527 {"scheme_false", (void **)&dll_scheme_false}, | |
528 {"scheme_void", (void **)&dll_scheme_void}, | |
529 {"scheme_null", (void **)&dll_scheme_null}, | |
530 {"scheme_true", (void **)&dll_scheme_true}, | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
531 #if !defined(USE_THREAD_LOCAL) && !defined(LINK_EXTENSIONS_BY_TABLE) |
137 | 532 {"scheme_current_thread", (void **)&dll_scheme_current_thread_ptr}, |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
533 #endif |
137 | 534 {"scheme_console_printf", (void **)&dll_scheme_console_printf_ptr}, |
535 {"scheme_console_output", (void **)&dll_scheme_console_output_ptr}, | |
344 | 536 {"scheme_notify_multithread", |
137 | 537 (void **)&dll_scheme_notify_multithread_ptr}, |
538 {"scheme_add_global", (void **)&dll_scheme_add_global}, | |
539 {"scheme_add_global_symbol", (void **)&dll_scheme_add_global_symbol}, | |
540 {"scheme_apply", (void **)&dll_scheme_apply}, | |
541 {"scheme_basic_env", (void **)&dll_scheme_basic_env}, | |
274 | 542 # if MZSCHEME_VERSION_MAJOR >= 299 |
543 {"scheme_byte_string_to_char_string", (void **)&dll_scheme_byte_string_to_char_string}, | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
544 {"scheme_make_path", (void **)&dll_scheme_make_path}, |
274 | 545 # endif |
137 | 546 {"scheme_builtin_value", (void **)&dll_scheme_builtin_value}, |
547 {"scheme_check_threads", (void **)&dll_scheme_check_threads}, | |
548 {"scheme_close_input_port", (void **)&dll_scheme_close_input_port}, | |
549 {"scheme_count_lines", (void **)&dll_scheme_count_lines}, | |
344 | 550 {"scheme_current_continuation_marks", |
137 | 551 (void **)&dll_scheme_current_continuation_marks}, |
552 {"scheme_display", (void **)&dll_scheme_display}, | |
553 {"scheme_display_to_string", (void **)&dll_scheme_display_to_string}, | |
554 {"scheme_do_eval", (void **)&dll_scheme_do_eval}, | |
555 {"scheme_dont_gc_ptr", (void **)&dll_scheme_dont_gc_ptr}, | |
274 | 556 {"scheme_eq", (void **)&dll_scheme_eq}, |
137 | 557 {"scheme_eval", (void **)&dll_scheme_eval}, |
558 {"scheme_eval_string", (void **)&dll_scheme_eval_string}, | |
559 {"scheme_eval_string_all", (void **)&dll_scheme_eval_string_all}, | |
344 | 560 {"scheme_finish_primitive_module", |
137 | 561 (void **)&dll_scheme_finish_primitive_module}, |
151 | 562 # if MZSCHEME_VERSION_MAJOR < 299 |
137 | 563 {"scheme_format", (void **)&dll_scheme_format}, |
151 | 564 # else |
565 {"scheme_format_utf8", (void **)&dll_scheme_format_utf8}, | |
274 | 566 {"scheme_get_param", (void **)&dll_scheme_get_param}, |
151 | 567 #endif |
137 | 568 {"scheme_gc_ptr_ok", (void **)&dll_scheme_gc_ptr_ok}, |
151 | 569 # if MZSCHEME_VERSION_MAJOR < 299 |
344 | 570 {"scheme_get_sized_string_output", |
137 | 571 (void **)&dll_scheme_get_sized_string_output}, |
151 | 572 # else |
344 | 573 {"scheme_get_sized_byte_string_output", |
151 | 574 (void **)&dll_scheme_get_sized_byte_string_output}, |
575 #endif | |
137 | 576 {"scheme_intern_symbol", (void **)&dll_scheme_intern_symbol}, |
577 {"scheme_lookup_global", (void **)&dll_scheme_lookup_global}, | |
344 | 578 {"scheme_make_closed_prim_w_arity", |
137 | 579 (void **)&dll_scheme_make_closed_prim_w_arity}, |
580 {"scheme_make_integer_value", (void **)&dll_scheme_make_integer_value}, | |
581 {"scheme_make_pair", (void **)&dll_scheme_make_pair}, | |
274 | 582 {"scheme_make_prim_w_arity", (void **)&dll_scheme_make_prim_w_arity}, |
151 | 583 # if MZSCHEME_VERSION_MAJOR < 299 |
137 | 584 {"scheme_make_string", (void **)&dll_scheme_make_string}, |
344 | 585 {"scheme_make_string_output_port", |
137 | 586 (void **)&dll_scheme_make_string_output_port}, |
151 | 587 # else |
588 {"scheme_make_byte_string", (void **)&dll_scheme_make_byte_string}, | |
344 | 589 {"scheme_make_byte_string_output_port", |
151 | 590 (void **)&dll_scheme_make_byte_string_output_port}, |
591 # endif | |
344 | 592 {"scheme_make_struct_instance", |
137 | 593 (void **)&dll_scheme_make_struct_instance}, |
594 {"scheme_make_struct_names", (void **)&dll_scheme_make_struct_names}, | |
595 {"scheme_make_struct_type", (void **)&dll_scheme_make_struct_type}, | |
596 {"scheme_make_struct_values", (void **)&dll_scheme_make_struct_values}, | |
597 {"scheme_make_type", (void **)&dll_scheme_make_type}, | |
598 {"scheme_make_vector", (void **)&dll_scheme_make_vector}, | |
599 {"scheme_malloc_fail_ok", (void **)&dll_scheme_malloc_fail_ok}, | |
600 {"scheme_open_input_file", (void **)&dll_scheme_open_input_file}, | |
601 {"scheme_primitive_module", (void **)&dll_scheme_primitive_module}, | |
602 {"scheme_proper_list_length", (void **)&dll_scheme_proper_list_length}, | |
603 {"scheme_raise", (void **)&dll_scheme_raise}, | |
604 {"scheme_read", (void **)&dll_scheme_read}, | |
605 {"scheme_register_static", (void **)&dll_scheme_register_static}, | |
606 {"scheme_set_stack_base", (void **)&dll_scheme_set_stack_base}, | |
607 {"scheme_signal_error", (void **)&dll_scheme_signal_error}, | |
608 {"scheme_wrong_type", (void **)&dll_scheme_wrong_type}, | |
151 | 609 # if MZSCHEME_VERSION_MAJOR >= 299 |
610 {"scheme_set_param", (void **)&dll_scheme_set_param}, | |
611 {"scheme_current_config", (void **)&dll_scheme_current_config}, | |
612 {"scheme_char_string_to_byte_string", | |
613 (void **)&dll_scheme_char_string_to_byte_string}, | |
1894 | 614 {"scheme_char_string_to_path", (void **)&dll_scheme_char_string_to_path}, |
4074 | 615 {"scheme_set_collects_path", (void **)&dll_scheme_set_collects_path}, |
151 | 616 # endif |
1894 | 617 {"scheme_make_hash_table", (void **)&dll_scheme_make_hash_table}, |
618 {"scheme_hash_set", (void **)&dll_scheme_hash_set}, | |
619 {"scheme_hash_get", (void **)&dll_scheme_hash_get}, | |
620 {"scheme_make_double", (void **)&dll_scheme_make_double}, | |
621 {"scheme_make_sized_byte_string", (void **)&dll_scheme_make_sized_byte_string}, | |
622 {"scheme_namespace_require", (void **)&dll_scheme_namespace_require}, | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
623 {"scheme_dynamic_wind", (void **)&dll_scheme_dynamic_wind}, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
624 # ifdef MZ_PRECISE_GC |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
625 {"GC_malloc_one_tagged", (void **)&dll_GC_malloc_one_tagged}, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
626 {"GC_register_traversers", (void **)&dll_GC_register_traversers}, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
627 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
628 # if MZSCHEME_VERSION_MAJOR >= 400 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
629 # ifdef TRAMPOLINED_MZVIM_STARTUP |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
630 {"scheme_main_setup", (void **)&dll_scheme_main_setup}, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
631 # if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || MZSCHEME_VERSION_MAJOR >= 603 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
632 {"scheme_register_tls_space", (void **)&dll_scheme_register_tls_space}, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
633 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
634 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
635 {"scheme_init_collection_paths", (void **)&dll_scheme_init_collection_paths}, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
636 {"scheme_malloc_immobile_box", (void **)&dll_scheme_malloc_immobile_box}, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
637 {"scheme_free_immobile_box", (void **)&dll_scheme_free_immobile_box}, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
638 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
639 # if MZSCHEME_VERSION_MAJOR >= 500 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
640 # if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || defined(IMPLEMENT_THREAD_LOCAL_EXTERNALLY_VIA_PROC) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
641 {"scheme_external_get_thread_local_variables", (void **)&dll_scheme_external_get_thread_local_variables}, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
642 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
643 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
644 # if MZSCHEME_VERSION_MAJOR >= 600 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
645 {"scheme_embedded_load", (void **)&dll_scheme_embedded_load}, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
646 {"scheme_register_embedded_load", (void **)&dll_scheme_register_embedded_load}, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
647 {"scheme_set_config_path", (void **)&dll_scheme_set_config_path}, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
648 # endif |
137 | 649 {NULL, NULL}}; |
650 | |
651 static HINSTANCE hMzGC = 0; | |
652 static HINSTANCE hMzSch = 0; | |
653 | |
654 static void dynamic_mzscheme_end(void); | |
655 static int mzscheme_runtime_link_init(char *sch_dll, char *gc_dll, | |
656 int verbose); | |
657 | |
658 static int | |
659 mzscheme_runtime_link_init(char *sch_dll, char *gc_dll, int verbose) | |
660 { | |
661 Thunk_Info *thunk = NULL; | |
662 | |
663 if (hMzGC && hMzSch) | |
664 return OK; | |
2612 | 665 hMzSch = vimLoadLib(sch_dll); |
666 hMzGC = vimLoadLib(gc_dll); | |
137 | 667 |
3348 | 668 if (!hMzGC) |
669 { | |
670 if (verbose) | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26441
diff
changeset
|
671 semsg(_(e_could_not_load_library_str_str), gc_dll, GetWin32Error()); |
3348 | 672 return FAIL; |
673 } | |
674 | |
137 | 675 if (!hMzSch) |
676 { | |
677 if (verbose) | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26441
diff
changeset
|
678 semsg(_(e_could_not_load_library_str_str), sch_dll, GetWin32Error()); |
137 | 679 return FAIL; |
680 } | |
681 | |
682 for (thunk = mzsch_imports; thunk->name; thunk++) | |
683 { | |
344 | 684 if ((*thunk->ptr = |
137 | 685 (void *)GetProcAddress(hMzSch, thunk->name)) == NULL) |
686 { | |
687 FreeLibrary(hMzSch); | |
688 hMzSch = 0; | |
689 FreeLibrary(hMzGC); | |
690 hMzGC = 0; | |
691 if (verbose) | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26441
diff
changeset
|
692 semsg(_(e_could_not_load_library_function_str), thunk->name); |
137 | 693 return FAIL; |
694 } | |
695 } | |
696 for (thunk = mzgc_imports; thunk->name; thunk++) | |
697 { | |
344 | 698 if ((*thunk->ptr = |
137 | 699 (void *)GetProcAddress(hMzGC, thunk->name)) == NULL) |
700 { | |
701 FreeLibrary(hMzSch); | |
702 hMzSch = 0; | |
703 FreeLibrary(hMzGC); | |
704 hMzGC = 0; | |
705 if (verbose) | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26441
diff
changeset
|
706 semsg(_(e_could_not_load_library_function_str), thunk->name); |
137 | 707 return FAIL; |
708 } | |
709 } | |
710 return OK; | |
711 } | |
712 | |
713 int | |
714 mzscheme_enabled(int verbose) | |
715 { | |
716 return mzscheme_runtime_link_init( | |
12608
b390f5003e2f
patch 8.0.1182: cannot see or change mzscheme dll name
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
717 (char *)p_mzschemedll, (char *)p_mzschemegcdll, verbose) == OK; |
137 | 718 } |
719 | |
720 static void | |
721 dynamic_mzscheme_end(void) | |
722 { | |
723 if (hMzSch) | |
724 { | |
725 FreeLibrary(hMzSch); | |
726 hMzSch = 0; | |
727 } | |
728 if (hMzGC) | |
729 { | |
730 FreeLibrary(hMzGC); | |
731 hMzGC = 0; | |
732 } | |
733 } | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
734 #endif // DYNAMIC_MZSCHEME |
137 | 735 |
4074 | 736 #if MZSCHEME_VERSION_MAJOR < 299 |
737 # define GUARANTEED_STRING_ARG(proc, num) GUARANTEE_STRING(proc, num) | |
738 #else | |
739 static Scheme_Object * | |
740 guaranteed_byte_string_arg(char *proc, int num, int argc, Scheme_Object **argv) | |
741 { | |
742 if (SCHEME_BYTE_STRINGP(argv[num])) | |
743 { | |
744 return argv[num]; | |
745 } | |
746 else if (SCHEME_CHAR_STRINGP(argv[num])) | |
747 { | |
748 Scheme_Object *tmp = NULL; | |
749 MZ_GC_DECL_REG(2); | |
750 MZ_GC_VAR_IN_REG(0, argv[num]); | |
751 MZ_GC_VAR_IN_REG(1, tmp); | |
752 MZ_GC_REG(); | |
753 tmp = scheme_char_string_to_byte_string(argv[num]); | |
754 MZ_GC_UNREG(); | |
755 return tmp; | |
756 } | |
757 else | |
758 scheme_wrong_type(proc, "string", num, argc, argv); | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
759 // unreachable |
4074 | 760 return scheme_void; |
761 } | |
762 # define GUARANTEED_STRING_ARG(proc, num) guaranteed_byte_string_arg(proc, num, argc, argv) | |
763 #endif | |
764 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
765 // need to put it here for dynamic stuff to work |
1950 | 766 #if defined(INCLUDE_MZSCHEME_BASE) |
1894 | 767 # include "mzscheme_base.c" |
768 #endif | |
769 | |
14 | 770 /* |
771 *======================================================================== | |
772 * 1. MzScheme interpreter startup | |
773 *======================================================================== | |
774 */ | |
775 | |
776 static Scheme_Type mz_buffer_type; | |
777 static Scheme_Type mz_window_type; | |
778 | |
1894 | 779 static int initialized = FALSE; |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
780 #ifdef DYNAMIC_MZSCHEME |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
781 static int disabled = FALSE; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
782 #endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
783 static int load_base_module_failed = FALSE; |
14 | 784 |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
785 // global environment |
14 | 786 static Scheme_Env *environment = NULL; |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
787 // output/error handlers |
14 | 788 static Scheme_Object *curout = NULL; |
789 static Scheme_Object *curerr = NULL; | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
790 // exn:vim exception |
14 | 791 static Scheme_Object *exn_catching_apply = NULL; |
792 static Scheme_Object *exn_p = NULL; | |
793 static Scheme_Object *exn_message = NULL; | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
794 static Scheme_Object *vim_exn = NULL; // Vim Error exception |
1894 | 795 |
796 #if !defined(MZ_PRECISE_GC) || MZSCHEME_VERSION_MAJOR < 400 | |
797 static void *stack_base = NULL; | |
798 #endif | |
14 | 799 |
800 static long range_start; | |
801 static long range_end; | |
802 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
803 // MzScheme threads scheduling stuff |
14 | 804 static int mz_threads_allow = 0; |
805 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
806 #if defined(FEAT_GUI_MSWIN) |
9173
b64c314a4990
commit https://github.com/vim/vim/commit/dec6c7beda5491b28f67f430fc9d01467050c1ca
Christian Brabandt <cb@256bit.org>
parents:
9159
diff
changeset
|
807 static void CALLBACK timer_proc(HWND, UINT, UINT_PTR, DWORD); |
14 | 808 static UINT timer_id = 0; |
809 #elif defined(FEAT_GUI_GTK) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8110
diff
changeset
|
810 static gboolean timer_proc(gpointer); |
14 | 811 static guint timer_id = 0; |
28303
9849df834f1d
patch 8.2.4677: the Athena GUI support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
26966
diff
changeset
|
812 #elif defined(FEAT_GUI_MOTIF) |
14 | 813 static void timer_proc(XtPointer, XtIntervalId *); |
814 static XtIntervalId timer_id = (XtIntervalId)0; | |
815 #endif | |
816 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
817 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) // Win32 console and Unix |
14 | 818 void |
819 mzvim_check_threads(void) | |
820 { | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
821 // Last time MzScheme threads were scheduled |
14 | 822 static time_t mz_last_time = 0; |
823 | |
824 if (mz_threads_allow && p_mzq > 0) | |
825 { | |
826 time_t now = time(NULL); | |
827 | |
828 if ((now - mz_last_time) * 1000 > p_mzq) | |
829 { | |
830 mz_last_time = now; | |
831 scheme_check_threads(); | |
832 } | |
833 } | |
834 } | |
835 #endif | |
836 | |
7813
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
837 #if defined(MZSCHEME_GUI_THREADS) || defined(PROTO) |
16 | 838 static void setup_timer(void); |
839 static void remove_timer(void); | |
840 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
841 // timers are presented in GUI only |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
842 # if defined(FEAT_GUI_MSWIN) |
14 | 843 static void CALLBACK |
9159
6b003ff07234
commit https://github.com/vim/vim/commit/9b0ac229bcfc91acabd35fc576055a94c1687c32
Christian Brabandt <cb@256bit.org>
parents:
8800
diff
changeset
|
844 timer_proc(HWND hwnd UNUSED, UINT uMsg UNUSED, UINT_PTR idEvent UNUSED, DWORD dwTime UNUSED) |
14 | 845 # elif defined(FEAT_GUI_GTK) |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8110
diff
changeset
|
846 static gboolean |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
847 timer_proc(gpointer data UNUSED) |
28303
9849df834f1d
patch 8.2.4677: the Athena GUI support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
26966
diff
changeset
|
848 # elif defined(FEAT_GUI_MOTIF) |
14 | 849 static void |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
850 timer_proc(XtPointer timed_out UNUSED, XtIntervalId *interval_id UNUSED) |
14 | 851 # endif |
852 { | |
853 scheme_check_threads(); | |
854 # if defined(FEAT_GUI_GTK) | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
855 return TRUE; // continue receiving notifications |
28303
9849df834f1d
patch 8.2.4677: the Athena GUI support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
26966
diff
changeset
|
856 # elif defined(FEAT_GUI_MOTIF) |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
857 // renew timeout |
14 | 858 if (mz_threads_allow && p_mzq > 0) |
859 timer_id = XtAppAddTimeOut(app_context, p_mzq, | |
860 timer_proc, NULL); | |
861 # endif | |
862 } | |
863 | |
864 static void | |
865 setup_timer(void) | |
866 { | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
867 # if defined(FEAT_GUI_MSWIN) |
14 | 868 timer_id = SetTimer(NULL, 0, p_mzq, timer_proc); |
869 # elif defined(FEAT_GUI_GTK) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8110
diff
changeset
|
870 timer_id = g_timeout_add((guint)p_mzq, (GSourceFunc)timer_proc, NULL); |
28303
9849df834f1d
patch 8.2.4677: the Athena GUI support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
26966
diff
changeset
|
871 # elif defined(FEAT_GUI_MOTIF) |
14 | 872 timer_id = XtAppAddTimeOut(app_context, p_mzq, timer_proc, NULL); |
873 # endif | |
874 } | |
875 | |
876 static void | |
877 remove_timer(void) | |
878 { | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
879 # if defined(FEAT_GUI_MSWIN) |
14 | 880 KillTimer(NULL, timer_id); |
881 # elif defined(FEAT_GUI_GTK) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8110
diff
changeset
|
882 g_source_remove(timer_id); |
28303
9849df834f1d
patch 8.2.4677: the Athena GUI support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
26966
diff
changeset
|
883 # elif defined(FEAT_GUI_MOTIF) |
14 | 884 XtRemoveTimeOut(timer_id); |
885 # endif | |
886 timer_id = 0; | |
887 } | |
888 | |
889 void | |
890 mzvim_reset_timer(void) | |
891 { | |
892 if (timer_id != 0) | |
893 remove_timer(); | |
894 if (mz_threads_allow && p_mzq > 0 && gui.in_use) | |
895 setup_timer(); | |
896 } | |
897 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
898 #endif // MZSCHEME_GUI_THREADS |
14 | 899 |
900 static void | |
901 notify_multithread(int on) | |
902 { | |
903 mz_threads_allow = on; | |
16 | 904 #ifdef MZSCHEME_GUI_THREADS |
14 | 905 if (on && timer_id == 0 && p_mzq > 0 && gui.in_use) |
906 setup_timer(); | |
907 if (!on && timer_id != 0) | |
908 remove_timer(); | |
909 #endif | |
910 } | |
911 | |
912 void | |
913 mzscheme_end(void) | |
914 { | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
915 // We can not unload the DLL. Racket's thread might be still alive. |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
916 #if 0 |
137 | 917 #ifdef DYNAMIC_MZSCHEME |
918 dynamic_mzscheme_end(); | |
919 #endif | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
920 #endif |
14 | 921 } |
922 | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
923 #if HAVE_TLS_SPACE |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
924 # if defined(_MSC_VER) |
2628 | 925 static __declspec(thread) void *tls_space; |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
926 extern intptr_t _tls_index; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
927 # elif defined(__MINGW32__) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
928 static __thread void *tls_space; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
929 extern intptr_t _tls_index; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
930 # else |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
931 static THREAD_LOCAL void *tls_space; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
932 static intptr_t _tls_index = 0; |
3348 | 933 # endif |
934 #endif | |
935 | |
9961
f4e903ba38d8
commit https://github.com/vim/vim/commit/54b6352c6f0617ff9c963588ccc7d31815348029
Christian Brabandt <cb@256bit.org>
parents:
9802
diff
changeset
|
936 /* |
f4e903ba38d8
commit https://github.com/vim/vim/commit/54b6352c6f0617ff9c963588ccc7d31815348029
Christian Brabandt <cb@256bit.org>
parents:
9802
diff
changeset
|
937 * mzscheme_main() is called early in main(). |
f4e903ba38d8
commit https://github.com/vim/vim/commit/54b6352c6f0617ff9c963588ccc7d31815348029
Christian Brabandt <cb@256bit.org>
parents:
9802
diff
changeset
|
938 * We may call scheme_main_setup() which calls mzscheme_env_main() which then |
f4e903ba38d8
commit https://github.com/vim/vim/commit/54b6352c6f0617ff9c963588ccc7d31815348029
Christian Brabandt <cb@256bit.org>
parents:
9802
diff
changeset
|
939 * trampolines into vim_main2(), which never returns. |
f4e903ba38d8
commit https://github.com/vim/vim/commit/54b6352c6f0617ff9c963588ccc7d31815348029
Christian Brabandt <cb@256bit.org>
parents:
9802
diff
changeset
|
940 */ |
3348 | 941 int |
9961
f4e903ba38d8
commit https://github.com/vim/vim/commit/54b6352c6f0617ff9c963588ccc7d31815348029
Christian Brabandt <cb@256bit.org>
parents:
9802
diff
changeset
|
942 mzscheme_main(void) |
1894 | 943 { |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
944 int argc = 0; |
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
945 char *argv = NULL; |
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
946 |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
947 #ifdef DYNAMIC_MZSCHEME |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
948 /* |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
949 * Racket requires trampolined startup. We can not load it later. |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
950 * If dynamic dll loading is failed, disable it. |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
951 */ |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
952 if (!mzscheme_enabled(FALSE)) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
953 { |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
954 disabled = TRUE; |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
955 return vim_main2(); |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
956 } |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
957 #endif |
6905 | 958 #ifdef HAVE_TLS_SPACE |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
959 scheme_register_tls_space(&tls_space, _tls_index); |
2628 | 960 #endif |
3348 | 961 #ifdef TRAMPOLINED_MZVIM_STARTUP |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
962 return scheme_main_setup(TRUE, mzscheme_env_main, argc, &argv); |
1894 | 963 #else |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
964 return mzscheme_env_main(NULL, argc, &argv); |
1894 | 965 #endif |
966 } | |
967 | |
968 static int | |
9961
f4e903ba38d8
commit https://github.com/vim/vim/commit/54b6352c6f0617ff9c963588ccc7d31815348029
Christian Brabandt <cb@256bit.org>
parents:
9802
diff
changeset
|
969 mzscheme_env_main(Scheme_Env *env, int argc UNUSED, char **argv UNUSED) |
1894 | 970 { |
3348 | 971 #ifdef TRAMPOLINED_MZVIM_STARTUP |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
972 // Scheme has created the environment for us |
3348 | 973 environment = env; |
974 #else | |
975 # ifdef MZ_PRECISE_GC | |
1894 | 976 Scheme_Object *dummy = NULL; |
977 MZ_GC_DECL_REG(1); | |
978 MZ_GC_VAR_IN_REG(0, dummy); | |
979 | |
980 stack_base = &__gc_var_stack__; | |
981 # else | |
982 int dummy = 0; | |
983 stack_base = (void *)&dummy; | |
3348 | 984 # endif |
1894 | 985 #endif |
3348 | 986 |
9961
f4e903ba38d8
commit https://github.com/vim/vim/commit/54b6352c6f0617ff9c963588ccc7d31815348029
Christian Brabandt <cb@256bit.org>
parents:
9802
diff
changeset
|
987 vim_main2(); |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
988 // not reached, vim_main2() will loop until exit() |
9961
f4e903ba38d8
commit https://github.com/vim/vim/commit/54b6352c6f0617ff9c963588ccc7d31815348029
Christian Brabandt <cb@256bit.org>
parents:
9802
diff
changeset
|
989 |
f4e903ba38d8
commit https://github.com/vim/vim/commit/54b6352c6f0617ff9c963588ccc7d31815348029
Christian Brabandt <cb@256bit.org>
parents:
9802
diff
changeset
|
990 return 0; |
1894 | 991 } |
992 | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
993 static Scheme_Object* |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
994 load_base_module(void *data) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
995 { |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
996 scheme_namespace_require(scheme_intern_symbol((char *)data)); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
997 return scheme_null; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
998 } |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
999 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1000 static Scheme_Object * |
8779
26495bd795d2
commit https://github.com/vim/vim/commit/8b29aba0192cc56294ef49bb3c01adff4b8f3a28
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1001 load_base_module_on_error(void *data UNUSED) |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1002 { |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1003 load_base_module_failed = TRUE; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1004 return scheme_null; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1005 } |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1006 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1007 static int |
14 | 1008 startup_mzscheme(void) |
1009 { | |
3348 | 1010 #ifndef TRAMPOLINED_MZVIM_STARTUP |
1894 | 1011 scheme_set_stack_base(stack_base, 1); |
1012 #endif | |
14 | 1013 |
4074 | 1014 #ifndef TRAMPOLINED_MZVIM_STARTUP |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1015 // in newer versions of precise GC the initial env has been created |
4074 | 1016 environment = scheme_basic_env(); |
1017 #endif | |
1018 | |
14 | 1019 MZ_REGISTER_STATIC(environment); |
1020 MZ_REGISTER_STATIC(curout); | |
1021 MZ_REGISTER_STATIC(curerr); | |
1022 MZ_REGISTER_STATIC(exn_catching_apply); | |
1023 MZ_REGISTER_STATIC(exn_p); | |
1024 MZ_REGISTER_STATIC(exn_message); | |
1025 MZ_REGISTER_STATIC(vim_exn); | |
1894 | 1026 |
1027 MZ_GC_CHECK(); | |
1028 | |
1029 #ifdef INCLUDE_MZSCHEME_BASE | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1030 // invoke function from generated and included mzscheme_base.c |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1031 declare_modules(environment); |
1894 | 1032 #endif |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1033 |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1034 // setup 'current-library-collection-paths' parameter |
1307 | 1035 # if MZSCHEME_VERSION_MAJOR >= 299 |
1894 | 1036 { |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1037 Scheme_Object *coll_path = NULL; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1038 int mustfree = FALSE; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1039 char_u *s; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1040 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1041 MZ_GC_DECL_REG(1); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1042 MZ_GC_VAR_IN_REG(0, coll_path); |
1894 | 1043 MZ_GC_REG(); |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1044 // workaround for dynamic loading on windows |
8110
d1974721ddc5
commit https://github.com/vim/vim/commit/74a97b1ea0fe2c729e26718d0eec4164c8bed151
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
1045 s = vim_getenv((char_u *)"PLTCOLLECTS", &mustfree); |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1046 if (s != NULL) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1047 { |
8110
d1974721ddc5
commit https://github.com/vim/vim/commit/74a97b1ea0fe2c729e26718d0eec4164c8bed151
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
1048 coll_path = scheme_make_path((char *)s); |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1049 MZ_GC_CHECK(); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1050 if (mustfree) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1051 vim_free(s); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1052 } |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1053 # ifdef MZSCHEME_COLLECTS |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1054 if (coll_path == NULL) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1055 { |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1056 coll_path = scheme_make_path(MZSCHEME_COLLECTS); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1057 MZ_GC_CHECK(); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1058 } |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1059 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1060 if (coll_path != NULL) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1061 { |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1062 scheme_set_collects_path(coll_path); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1063 MZ_GC_CHECK(); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1064 } |
1894 | 1065 MZ_GC_UNREG(); |
1066 } | |
1307 | 1067 # else |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1068 # ifdef MZSCHEME_COLLECTS |
1894 | 1069 { |
1070 Scheme_Object *coll_string = NULL; | |
1071 Scheme_Object *coll_pair = NULL; | |
1072 Scheme_Config *config = NULL; | |
1073 | |
1074 MZ_GC_DECL_REG(3); | |
1075 MZ_GC_VAR_IN_REG(0, coll_string); | |
1076 MZ_GC_VAR_IN_REG(1, coll_pair); | |
1077 MZ_GC_VAR_IN_REG(2, config); | |
1078 MZ_GC_REG(); | |
4074 | 1079 coll_string = scheme_make_byte_string(MZSCHEME_COLLECTS); |
1894 | 1080 MZ_GC_CHECK(); |
1081 coll_pair = scheme_make_pair(coll_string, scheme_null); | |
1082 MZ_GC_CHECK(); | |
4074 | 1083 config = scheme_current_config(); |
1894 | 1084 MZ_GC_CHECK(); |
1085 scheme_set_param(config, MZCONFIG_COLLECTION_PATHS, coll_pair); | |
1086 MZ_GC_CHECK(); | |
1087 MZ_GC_UNREG(); | |
1088 } | |
1307 | 1089 # endif |
14 | 1090 #endif |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1091 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1092 # if MZSCHEME_VERSION_MAJOR >= 600 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1093 { |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1094 Scheme_Object *config_path = NULL; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1095 int mustfree = FALSE; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1096 char_u *s; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1097 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1098 MZ_GC_DECL_REG(1); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1099 MZ_GC_VAR_IN_REG(0, config_path); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1100 MZ_GC_REG(); |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1101 // workaround for dynamic loading on windows |
9289
29de7dda7a6a
commit https://github.com/vim/vim/commit/5b7d177e8994c003ae77ddab5bd54f8cd1ee181b
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
1102 s = vim_getenv((char_u *)"PLTCONFIGDIR", &mustfree); |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1103 if (s != NULL) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1104 { |
9289
29de7dda7a6a
commit https://github.com/vim/vim/commit/5b7d177e8994c003ae77ddab5bd54f8cd1ee181b
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
1105 config_path = scheme_make_path((char *)s); |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1106 MZ_GC_CHECK(); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1107 if (mustfree) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1108 vim_free(s); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1109 } |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1110 #ifdef MZSCHEME_CONFIGDIR |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1111 if (config_path == NULL) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1112 { |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1113 config_path = scheme_make_path(MZSCHEME_CONFIGDIR); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1114 MZ_GC_CHECK(); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1115 } |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1116 #endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1117 if (config_path != NULL) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1118 { |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1119 scheme_set_config_path(config_path); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1120 MZ_GC_CHECK(); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1121 } |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1122 MZ_GC_UNREG(); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1123 } |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1124 # endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1125 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1126 #if MZSCHEME_VERSION_MAJOR >= 400 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1127 scheme_init_collection_paths(environment, scheme_null); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1128 #endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1129 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1130 /* |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1131 * versions 4.x do not provide Scheme bindings by default |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1132 * we need to add them explicitly |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1133 */ |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1134 { |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1135 // use error handler to avoid abort |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1136 scheme_dynamic_wind(NULL, load_base_module, NULL, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1137 load_base_module_on_error, "racket/base"); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1138 if (load_base_module_failed) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1139 { |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1140 load_base_module_failed = FALSE; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1141 scheme_dynamic_wind(NULL, load_base_module, NULL, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1142 load_base_module_on_error, "scheme/base"); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1143 if (load_base_module_failed) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1144 return -1; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1145 } |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1146 } |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1147 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1148 register_vim_exn(); |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1149 // use new environment to initialise exception handling |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1150 init_exn_catching_apply(); |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1151 |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1152 // redirect output |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1153 scheme_console_output = do_output; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1154 scheme_console_printf = do_printf; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1155 |
274 | 1156 #ifdef HAVE_SANDBOX |
1157 { | |
1894 | 1158 Scheme_Object *make_security_guard = NULL; |
1159 MZ_GC_DECL_REG(1); | |
1160 MZ_GC_VAR_IN_REG(0, make_security_guard); | |
1161 MZ_GC_REG(); | |
1162 | |
1163 #if MZSCHEME_VERSION_MAJOR < 400 | |
1164 { | |
1165 Scheme_Object *make_security_guard_symbol = NULL; | |
1166 MZ_GC_DECL_REG(1); | |
1167 MZ_GC_VAR_IN_REG(0, make_security_guard_symbol); | |
1168 MZ_GC_REG(); | |
1169 make_security_guard_symbol = scheme_intern_symbol("make-security-guard"); | |
1170 MZ_GC_CHECK(); | |
1171 make_security_guard = scheme_lookup_global( | |
1172 make_security_guard_symbol, environment); | |
1173 MZ_GC_UNREG(); | |
1174 } | |
1175 #else | |
1176 make_security_guard = scheme_builtin_value("make-security-guard"); | |
1177 MZ_GC_CHECK(); | |
1178 #endif | |
1179 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1180 // setup sandbox guards |
1894 | 1181 if (make_security_guard != NULL) |
1182 { | |
1183 Scheme_Object *args[3] = {NULL, NULL, NULL}; | |
1184 Scheme_Object *guard = NULL; | |
1185 Scheme_Config *config = NULL; | |
1186 MZ_GC_DECL_REG(5); | |
1187 MZ_GC_ARRAY_VAR_IN_REG(0, args, 3); | |
1188 MZ_GC_VAR_IN_REG(3, guard); | |
1189 MZ_GC_VAR_IN_REG(4, config); | |
1190 MZ_GC_REG(); | |
4074 | 1191 config = scheme_current_config(); |
1894 | 1192 MZ_GC_CHECK(); |
1193 args[0] = scheme_get_param(config, MZCONFIG_SECURITY_GUARD); | |
1194 MZ_GC_CHECK(); | |
1195 args[1] = scheme_make_prim_w_arity(sandbox_file_guard, | |
1196 "sandbox-file-guard", 3, 3); | |
1197 args[2] = scheme_make_prim_w_arity(sandbox_network_guard, | |
1198 "sandbox-network-guard", 4, 4); | |
1199 guard = scheme_apply(make_security_guard, 3, args); | |
1200 MZ_GC_CHECK(); | |
1201 scheme_set_param(config, MZCONFIG_SECURITY_GUARD, guard); | |
1202 MZ_GC_CHECK(); | |
1203 MZ_GC_UNREG(); | |
1204 } | |
1205 MZ_GC_UNREG(); | |
274 | 1206 } |
1207 #endif | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1208 // Create buffer and window types for use in Scheme code |
14 | 1209 mz_buffer_type = scheme_make_type("<vim-buffer>"); |
1894 | 1210 MZ_GC_CHECK(); |
14 | 1211 mz_window_type = scheme_make_type("<vim-window>"); |
1894 | 1212 MZ_GC_CHECK(); |
1213 #ifdef MZ_PRECISE_GC | |
1214 GC_register_traversers(mz_buffer_type, | |
1215 buffer_size_proc, buffer_mark_proc, buffer_fixup_proc, | |
1216 TRUE, TRUE); | |
1217 GC_register_traversers(mz_window_type, | |
1218 window_size_proc, window_mark_proc, window_fixup_proc, | |
1219 TRUE, TRUE); | |
1220 #endif | |
1221 | |
1222 make_modules(); | |
14 | 1223 |
1224 /* | |
1225 * setup callback to receive notifications | |
1226 * whether thread scheduling is (or not) required | |
1227 */ | |
1228 scheme_notify_multithread = notify_multithread; | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1229 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1230 return 0; |
14 | 1231 } |
1232 | |
1233 /* | |
1234 * This routine is called for each new invocation of MzScheme | |
1235 * to make sure things are properly initialized. | |
1236 */ | |
1237 static int | |
1238 mzscheme_init(void) | |
1239 { | |
1240 if (!initialized) | |
1241 { | |
137 | 1242 #ifdef DYNAMIC_MZSCHEME |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1243 if (disabled || !mzscheme_enabled(TRUE)) |
137 | 1244 { |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1245 emsg(_(e_sorry_this_command_is_disabled_the_mzscheme_libraries_could_not_be_loaded)); |
137 | 1246 return -1; |
1247 } | |
1248 #endif | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1249 if (load_base_module_failed || startup_mzscheme()) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1250 { |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26962
diff
changeset
|
1251 emsg(_(e_sorry_this_command_is_disabled_the_mzscheme_racket_base_module_could_not_be_loaded)); |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1252 return -1; |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
1253 } |
1894 | 1254 initialized = TRUE; |
14 | 1255 } |
1256 { | |
1894 | 1257 Scheme_Config *config = NULL; |
1258 MZ_GC_DECL_REG(1); | |
1259 MZ_GC_VAR_IN_REG(0, config); | |
1260 MZ_GC_REG(); | |
4074 | 1261 config = scheme_current_config(); |
1894 | 1262 MZ_GC_CHECK(); |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1263 // recreate ports each call effectively clearing these ones |
4074 | 1264 curout = scheme_make_byte_string_output_port(); |
1894 | 1265 MZ_GC_CHECK(); |
4074 | 1266 curerr = scheme_make_byte_string_output_port(); |
1894 | 1267 MZ_GC_CHECK(); |
1268 scheme_set_param(config, MZCONFIG_OUTPUT_PORT, curout); | |
1269 MZ_GC_CHECK(); | |
1270 scheme_set_param(config, MZCONFIG_ERROR_PORT, curerr); | |
1271 MZ_GC_CHECK(); | |
1272 MZ_GC_UNREG(); | |
14 | 1273 } |
1274 | |
1275 return 0; | |
1276 } | |
1277 | |
1278 /* | |
1279 *======================================================================== | |
1280 * 2. External Interface | |
1281 *======================================================================== | |
1282 */ | |
1283 | |
1284 /* | |
1894 | 1285 * Evaluate command with exception handling |
14 | 1286 */ |
1287 static int | |
1894 | 1288 eval_with_exn_handling(void *data, Scheme_Closed_Prim *what, Scheme_Object **ret) |
14 | 1289 { |
1894 | 1290 Scheme_Object *value = NULL; |
1291 Scheme_Object *exn = NULL; | |
1292 Scheme_Object *prim = NULL; | |
1293 | |
1294 MZ_GC_DECL_REG(3); | |
1295 MZ_GC_VAR_IN_REG(0, value); | |
1296 MZ_GC_VAR_IN_REG(1, exn); | |
1297 MZ_GC_VAR_IN_REG(2, prim); | |
1298 MZ_GC_REG(); | |
1299 | |
1300 prim = scheme_make_closed_prim_w_arity(what, data, "mzvim", 0, 0); | |
1301 MZ_GC_CHECK(); | |
1302 value = _apply_thunk_catch_exceptions(prim, &exn); | |
1303 MZ_GC_CHECK(); | |
14 | 1304 |
1305 if (!value) | |
1306 { | |
1307 value = extract_exn_message(exn); | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1308 // Got an exn? |
14 | 1309 if (value) |
1310 { | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1311 scheme_display(value, curerr); // Send to stderr-vim |
1894 | 1312 MZ_GC_CHECK(); |
14 | 1313 do_flush(); |
1314 } | |
1894 | 1315 MZ_GC_UNREG(); |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1316 // `raise' was called on some arbitrary value |
14 | 1317 return FAIL; |
1318 } | |
1319 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1320 if (ret != NULL) // if pointer to retval supported give it up |
14 | 1321 *ret = value; |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1322 // Print any result, as long as it's not a void |
14 | 1323 else if (!SCHEME_VOIDP(value)) |
1894 | 1324 { |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1325 scheme_display(value, curout); // Send to stdout-vim |
1894 | 1326 MZ_GC_CHECK(); |
1327 } | |
14 | 1328 |
1329 do_flush(); | |
1894 | 1330 MZ_GC_UNREG(); |
14 | 1331 return OK; |
1332 } | |
1333 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1334 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1335 * :mzscheme |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1336 */ |
14 | 1337 static int |
1338 do_mzscheme_command(exarg_T *eap, void *data, Scheme_Closed_Prim *what) | |
1339 { | |
1340 if (mzscheme_init()) | |
1341 return FAIL; | |
1342 | |
1343 range_start = eap->line1; | |
1344 range_end = eap->line2; | |
1345 | |
1894 | 1346 return eval_with_exn_handling(data, what, NULL); |
14 | 1347 } |
1348 | |
1349 /* | |
1350 * Routine called by VIM when deleting a buffer | |
1351 */ | |
1352 void | |
1353 mzscheme_buffer_free(buf_T *buf) | |
1354 { | |
502 | 1355 if (buf->b_mzscheme_ref) |
14 | 1356 { |
4074 | 1357 vim_mz_buffer *bp = NULL; |
1358 MZ_GC_DECL_REG(1); | |
1359 MZ_GC_VAR_IN_REG(0, bp); | |
1360 MZ_GC_REG(); | |
1361 | |
1362 bp = BUFFER_REF(buf); | |
14 | 1363 bp->buf = INVALID_BUFFER_VALUE; |
4074 | 1364 #ifndef MZ_PRECISE_GC |
14 | 1365 scheme_gc_ptr_ok(bp); |
4074 | 1366 #else |
1367 scheme_free_immobile_box(buf->b_mzscheme_ref); | |
1368 #endif | |
1369 buf->b_mzscheme_ref = NULL; | |
1894 | 1370 MZ_GC_CHECK(); |
4074 | 1371 MZ_GC_UNREG(); |
14 | 1372 } |
1373 } | |
1374 | |
1375 /* | |
1376 * Routine called by VIM when deleting a Window | |
1377 */ | |
1378 void | |
1379 mzscheme_window_free(win_T *win) | |
1380 { | |
502 | 1381 if (win->w_mzscheme_ref) |
14 | 1382 { |
4074 | 1383 vim_mz_window *wp = NULL; |
1384 MZ_GC_DECL_REG(1); | |
1385 MZ_GC_VAR_IN_REG(0, wp); | |
1386 MZ_GC_REG(); | |
1387 wp = WINDOW_REF(win); | |
14 | 1388 wp->win = INVALID_WINDOW_VALUE; |
4074 | 1389 #ifndef MZ_PRECISE_GC |
14 | 1390 scheme_gc_ptr_ok(wp); |
4074 | 1391 #else |
1392 scheme_free_immobile_box(win->w_mzscheme_ref); | |
1393 #endif | |
1394 win->w_mzscheme_ref = NULL; | |
1894 | 1395 MZ_GC_CHECK(); |
4074 | 1396 MZ_GC_UNREG(); |
14 | 1397 } |
1398 } | |
1399 | |
1400 /* | |
1401 * ":mzscheme" (or ":mz") | |
1402 */ | |
1403 void | |
1404 ex_mzscheme(exarg_T *eap) | |
1405 { | |
1406 char_u *script; | |
1407 | |
1408 script = script_get(eap, eap->arg); | |
1409 if (!eap->skip) | |
1410 { | |
1411 if (script == NULL) | |
1412 do_mzscheme_command(eap, eap->arg, do_eval); | |
1413 else | |
1414 { | |
1415 do_mzscheme_command(eap, script, do_eval); | |
1416 vim_free(script); | |
1417 } | |
1418 } | |
1419 } | |
1420 | |
1421 static Scheme_Object * | |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
1422 do_load(void *data, int noargc UNUSED, Scheme_Object **noargv UNUSED) |
14 | 1423 { |
1894 | 1424 Scheme_Object *expr = NULL; |
1425 Scheme_Object *result = NULL; | |
1426 char *file = NULL; | |
1427 Port_Info *pinfo = (Port_Info *)data; | |
1428 | |
1429 MZ_GC_DECL_REG(3); | |
1430 MZ_GC_VAR_IN_REG(0, expr); | |
1431 MZ_GC_VAR_IN_REG(1, result); | |
1432 MZ_GC_VAR_IN_REG(2, file); | |
1433 MZ_GC_REG(); | |
1434 | |
1435 file = (char *)scheme_malloc_fail_ok(scheme_malloc_atomic, MAXPATHL + 1); | |
1436 MZ_GC_CHECK(); | |
14 | 1437 |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1438 // make Vim expansion |
1894 | 1439 expand_env((char_u *)pinfo->name, (char_u *)file, MAXPATHL); |
14 | 1440 pinfo->port = scheme_open_input_file(file, "mzfile"); |
1894 | 1441 MZ_GC_CHECK(); |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1442 scheme_count_lines(pinfo->port); // to get accurate read error location |
1894 | 1443 MZ_GC_CHECK(); |
14 | 1444 |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1445 // Like REPL but print only last result |
14 | 1446 while (!SCHEME_EOFP(expr = scheme_read(pinfo->port))) |
1894 | 1447 { |
1448 result = scheme_eval(expr, environment); | |
1449 MZ_GC_CHECK(); | |
1450 } | |
14 | 1451 |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1452 // errors will be caught in do_mzscheme_command and ex_mzfile |
14 | 1453 scheme_close_input_port(pinfo->port); |
1894 | 1454 MZ_GC_CHECK(); |
14 | 1455 pinfo->port = NULL; |
1894 | 1456 MZ_GC_UNREG(); |
14 | 1457 return result; |
1458 } | |
1459 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1460 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1461 * :mzfile |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1462 */ |
14 | 1463 void |
1464 ex_mzfile(exarg_T *eap) | |
1465 { | |
1894 | 1466 Port_Info pinfo = {NULL, NULL}; |
1467 | |
1468 MZ_GC_DECL_REG(1); | |
1469 MZ_GC_VAR_IN_REG(0, pinfo.port); | |
1470 MZ_GC_REG(); | |
14 | 1471 |
1472 pinfo.name = (char *)eap->arg; | |
1473 if (do_mzscheme_command(eap, &pinfo, do_load) != OK | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1474 && pinfo.port != NULL) // looks like port was not closed |
1894 | 1475 { |
14 | 1476 scheme_close_input_port(pinfo.port); |
1894 | 1477 MZ_GC_CHECK(); |
1478 } | |
1479 MZ_GC_UNREG(); | |
14 | 1480 } |
1481 | |
1482 | |
1483 /* | |
1484 *======================================================================== | |
1485 * Exception handling code -- cribbed form the MzScheme sources and | |
1486 * Matthew Flatt's "Inside PLT MzScheme" document. | |
1487 *======================================================================== | |
1488 */ | |
1489 static void | |
1490 init_exn_catching_apply(void) | |
1491 { | |
1492 if (!exn_catching_apply) | |
1493 { | |
1494 char *e = | |
1495 "(lambda (thunk) " | |
856 | 1496 "(with-handlers ([void (lambda (exn) (cons #f exn))]) " |
14 | 1497 "(cons #t (thunk))))"; |
1498 | |
1894 | 1499 exn_catching_apply = scheme_eval_string(e, environment); |
1500 MZ_GC_CHECK(); | |
1501 exn_p = scheme_builtin_value("exn?"); | |
1502 MZ_GC_CHECK(); | |
1503 exn_message = scheme_builtin_value("exn-message"); | |
1504 MZ_GC_CHECK(); | |
14 | 1505 } |
1506 } | |
1507 | |
1508 /* | |
1509 * This function applies a thunk, returning the Scheme value if there's | |
1510 * no exception, otherwise returning NULL and setting *exn to the raised | |
1511 * value (usually an exn structure). | |
1512 */ | |
1513 static Scheme_Object * | |
1514 _apply_thunk_catch_exceptions(Scheme_Object *f, Scheme_Object **exn) | |
1515 { | |
1516 Scheme_Object *v; | |
1517 | |
1518 v = _scheme_apply(exn_catching_apply, 1, &f); | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1519 // v is a pair: (cons #t value) or (cons #f exn) |
14 | 1520 |
1521 if (SCHEME_TRUEP(SCHEME_CAR(v))) | |
1522 return SCHEME_CDR(v); | |
1523 else | |
1524 { | |
1525 *exn = SCHEME_CDR(v); | |
1526 return NULL; | |
1527 } | |
1528 } | |
1529 | |
1530 static Scheme_Object * | |
1531 extract_exn_message(Scheme_Object *v) | |
1532 { | |
1533 if (SCHEME_TRUEP(_scheme_apply(exn_p, 1, &v))) | |
1534 return _scheme_apply(exn_message, 1, &v); | |
1535 else | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1536 return NULL; // Not an exn structure |
14 | 1537 } |
1538 | |
1539 static Scheme_Object * | |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
1540 do_eval(void *s, int noargc UNUSED, Scheme_Object **noargv UNUSED) |
14 | 1541 { |
1894 | 1542 return scheme_eval_string_all((char *)s, environment, TRUE); |
14 | 1543 } |
1544 | |
1545 /* | |
1546 *======================================================================== | |
1547 * 3. MzScheme I/O Handlers | |
1548 *======================================================================== | |
1549 */ | |
1550 static void | |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
1551 do_intrnl_output(char *mesg, int error) |
14 | 1552 { |
1553 char *p, *prev; | |
1554 | |
1555 prev = mesg; | |
1556 p = strchr(prev, '\n'); | |
1557 while (p) | |
1558 { | |
1559 *p = '\0'; | |
1560 if (error) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15412
diff
changeset
|
1561 emsg(prev); |
14 | 1562 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1563 msg(prev); |
14 | 1564 prev = p + 1; |
1565 p = strchr(prev, '\n'); | |
1566 } | |
1567 | |
1568 if (error) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15412
diff
changeset
|
1569 emsg(prev); |
14 | 1570 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1571 msg(prev); |
14 | 1572 } |
1573 | |
1574 static void | |
4074 | 1575 do_output(char *mesg, OUTPUT_LEN_TYPE len UNUSED) |
14 | 1576 { |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1577 // TODO: use len, the string may not be NUL terminated |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
1578 do_intrnl_output(mesg, 0); |
14 | 1579 } |
1580 | |
1581 static void | |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
1582 do_err_output(char *mesg) |
14 | 1583 { |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
1584 do_intrnl_output(mesg, 1); |
14 | 1585 } |
1586 | |
1587 static void | |
1588 do_printf(char *format, ...) | |
1589 { | |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
1590 do_intrnl_output(format, 1); |
14 | 1591 } |
1592 | |
1593 static void | |
1594 do_flush(void) | |
1595 { | |
1596 char *buff; | |
4074 | 1597 OUTPUT_LEN_TYPE length; |
1598 | |
1599 buff = scheme_get_sized_byte_string_output(curerr, &length); | |
1894 | 1600 MZ_GC_CHECK(); |
14 | 1601 if (length) |
1602 { | |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
1603 do_err_output(buff); |
14 | 1604 return; |
1605 } | |
1606 | |
4074 | 1607 buff = scheme_get_sized_byte_string_output(curout, &length); |
1894 | 1608 MZ_GC_CHECK(); |
14 | 1609 if (length) |
1610 do_output(buff, length); | |
1611 } | |
1612 | |
1613 /* | |
1614 *======================================================================== | |
1615 * 4. Implementation of the Vim Features for MzScheme | |
1616 *======================================================================== | |
1617 */ | |
1618 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1619 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1620 * (command {command-string}) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1621 */ |
14 | 1622 static Scheme_Object * |
1623 vim_command(void *data, int argc, Scheme_Object **argv) | |
1624 { | |
1625 Vim_Prim *prim = (Vim_Prim *)data; | |
4074 | 1626 Scheme_Object *cmd = NULL; |
1627 MZ_GC_DECL_REG(1); | |
1628 MZ_GC_VAR_IN_REG(0, cmd); | |
1629 MZ_GC_REG(); | |
1630 cmd = GUARANTEED_STRING_ARG(prim->name, 0); | |
14 | 1631 |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1632 // may be use do_cmdline_cmd? |
4074 | 1633 do_cmdline(BYTE_STRING_VALUE(cmd), NULL, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE); |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
28303
diff
changeset
|
1634 update_screen(UPD_VALID); |
14 | 1635 |
4074 | 1636 MZ_GC_UNREG(); |
14 | 1637 raise_if_error(); |
1638 return scheme_void; | |
1639 } | |
1640 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1641 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1642 * (eval {expr-string}) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1643 */ |
14 | 1644 static Scheme_Object * |
4082 | 1645 vim_eval(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED) |
14 | 1646 { |
1647 #ifdef FEAT_EVAL | |
1894 | 1648 Vim_Prim *prim = (Vim_Prim *)data; |
4074 | 1649 Scheme_Object *result = NULL; |
1894 | 1650 typval_T *vim_result; |
4074 | 1651 Scheme_Object *expr = NULL; |
1652 MZ_GC_DECL_REG(2); | |
1653 MZ_GC_VAR_IN_REG(0, result); | |
1654 MZ_GC_VAR_IN_REG(1, expr); | |
1894 | 1655 MZ_GC_REG(); |
4074 | 1656 expr = GUARANTEED_STRING_ARG(prim->name, 0); |
1657 | |
1658 vim_result = eval_expr(BYTE_STRING_VALUE(expr), NULL); | |
1894 | 1659 |
1660 if (vim_result == NULL) | |
14 | 1661 raise_vim_exn(_("invalid expression")); |
1662 | |
4074 | 1663 result = vim_to_mzscheme(vim_result); |
1664 MZ_GC_CHECK(); | |
1894 | 1665 free_tv(vim_result); |
1666 | |
1667 MZ_GC_UNREG(); | |
14 | 1668 return result; |
1669 #else | |
1670 raise_vim_exn(_("expressions disabled at compile time")); | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1671 // unreachable |
14 | 1672 return scheme_false; |
1673 #endif | |
1674 } | |
1675 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1676 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1677 * (range-start) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1678 */ |
14 | 1679 static Scheme_Object * |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
1680 get_range_start(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED) |
14 | 1681 { |
1682 return scheme_make_integer(range_start); | |
1683 } | |
1684 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1685 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1686 * (range-end) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1687 */ |
14 | 1688 static Scheme_Object * |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
1689 get_range_end(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED) |
14 | 1690 { |
1691 return scheme_make_integer(range_end); | |
1692 } | |
1693 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1694 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1695 * (beep) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1696 */ |
14 | 1697 static Scheme_Object * |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
1698 mzscheme_beep(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED) |
14 | 1699 { |
6949 | 1700 vim_beep(BO_LANG); |
14 | 1701 return scheme_void; |
1702 } | |
1703 | |
1704 static Scheme_Object *M_global = NULL; | |
1705 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1706 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1707 * (get-option {option-name}) [buffer/window] |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1708 */ |
14 | 1709 static Scheme_Object * |
1710 get_option(void *data, int argc, Scheme_Object **argv) | |
1711 { | |
1712 Vim_Prim *prim = (Vim_Prim *)data; | |
1713 long value; | |
1894 | 1714 char *strval; |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
21745
diff
changeset
|
1715 getoption_T rc; |
4074 | 1716 Scheme_Object *rval = NULL; |
1717 Scheme_Object *name = NULL; | |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
25475
diff
changeset
|
1718 int scope = 0; |
14 | 1719 buf_T *save_curb = curbuf; |
1720 win_T *save_curw = curwin; | |
1721 | |
4074 | 1722 MZ_GC_DECL_REG(2); |
1723 MZ_GC_VAR_IN_REG(0, rval); | |
1724 MZ_GC_VAR_IN_REG(1, name); | |
1725 MZ_GC_REG(); | |
1726 | |
1727 name = GUARANTEED_STRING_ARG(prim->name, 0); | |
14 | 1728 |
1729 if (argc > 1) | |
1730 { | |
1731 if (M_global == NULL) | |
1732 { | |
1733 MZ_REGISTER_STATIC(M_global); | |
1734 M_global = scheme_intern_symbol("global"); | |
1894 | 1735 MZ_GC_CHECK(); |
14 | 1736 } |
1737 | |
1738 if (argv[1] == M_global) | |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
25475
diff
changeset
|
1739 scope = OPT_GLOBAL; |
14 | 1740 else if (SCHEME_VIMBUFFERP(argv[1])) |
1741 { | |
1742 curbuf = get_valid_buffer(argv[1]); | |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
25475
diff
changeset
|
1743 scope = OPT_LOCAL; |
14 | 1744 } |
1745 else if (SCHEME_VIMWINDOWP(argv[1])) | |
1746 { | |
1747 win_T *win = get_valid_window(argv[1]); | |
1748 | |
1749 curwin = win; | |
1750 curbuf = win->w_buffer; | |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
25475
diff
changeset
|
1751 scope = OPT_LOCAL; |
14 | 1752 } |
1753 else | |
1754 scheme_wrong_type(prim->name, "vim-buffer/window", 1, argc, argv); | |
1755 } | |
1756 | |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
21745
diff
changeset
|
1757 rc = get_option_value(BYTE_STRING_VALUE(name), &value, (char_u **)&strval, |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
25475
diff
changeset
|
1758 NULL, scope); |
14 | 1759 curbuf = save_curb; |
1760 curwin = save_curw; | |
1761 | |
1762 switch (rc) | |
1763 { | |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
21745
diff
changeset
|
1764 case gov_bool: |
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
21745
diff
changeset
|
1765 case gov_number: |
4074 | 1766 MZ_GC_UNREG(); |
14 | 1767 return scheme_make_integer_value(value); |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
21745
diff
changeset
|
1768 case gov_string: |
4074 | 1769 rval = scheme_make_byte_string(strval); |
1894 | 1770 MZ_GC_CHECK(); |
14 | 1771 vim_free(strval); |
4074 | 1772 MZ_GC_UNREG(); |
14 | 1773 return rval; |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
21745
diff
changeset
|
1774 case gov_hidden_bool: |
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
21745
diff
changeset
|
1775 case gov_hidden_number: |
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
21745
diff
changeset
|
1776 case gov_hidden_string: |
4074 | 1777 MZ_GC_UNREG(); |
856 | 1778 raise_vim_exn(_("hidden option")); |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1779 //NOTREACHED |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
21745
diff
changeset
|
1780 case gov_unknown: |
4074 | 1781 MZ_GC_UNREG(); |
856 | 1782 raise_vim_exn(_("unknown option")); |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1783 //NOTREACHED |
14 | 1784 } |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1785 // unreachable |
14 | 1786 return scheme_void; |
1787 } | |
1788 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1789 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1790 * (set-option {option-changing-string} [buffer/window]) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1791 */ |
14 | 1792 static Scheme_Object * |
1793 set_option(void *data, int argc, Scheme_Object **argv) | |
1794 { | |
4074 | 1795 char_u *command = NULL; |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
25475
diff
changeset
|
1796 int scope = 0; |
14 | 1797 buf_T *save_curb = curbuf; |
1798 win_T *save_curw = curwin; | |
1799 Vim_Prim *prim = (Vim_Prim *)data; | |
4074 | 1800 Scheme_Object *cmd = NULL; |
1801 | |
1802 MZ_GC_DECL_REG(1); | |
1803 MZ_GC_VAR_IN_REG(0, cmd); | |
1804 MZ_GC_REG(); | |
1805 cmd = GUARANTEED_STRING_ARG(prim->name, 0); | |
1806 | |
14 | 1807 if (argc > 1) |
1808 { | |
1809 if (M_global == NULL) | |
1810 { | |
1811 MZ_REGISTER_STATIC(M_global); | |
1812 M_global = scheme_intern_symbol("global"); | |
1894 | 1813 MZ_GC_CHECK(); |
14 | 1814 } |
1815 | |
1816 if (argv[1] == M_global) | |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
25475
diff
changeset
|
1817 scope = OPT_GLOBAL; |
14 | 1818 else if (SCHEME_VIMBUFFERP(argv[1])) |
1819 { | |
1820 curbuf = get_valid_buffer(argv[1]); | |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
25475
diff
changeset
|
1821 scope = OPT_LOCAL; |
14 | 1822 } |
1823 else if (SCHEME_VIMWINDOWP(argv[1])) | |
1824 { | |
1825 win_T *win = get_valid_window(argv[1]); | |
1826 curwin = win; | |
1827 curbuf = win->w_buffer; | |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
25475
diff
changeset
|
1828 scope = OPT_LOCAL; |
14 | 1829 } |
1830 else | |
1831 scheme_wrong_type(prim->name, "vim-buffer/window", 1, argc, argv); | |
1832 } | |
1833 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1834 // do_set can modify cmd, make copy |
4074 | 1835 command = vim_strsave(BYTE_STRING_VALUE(cmd)); |
1836 MZ_GC_UNREG(); | |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
25475
diff
changeset
|
1837 do_set(command, scope); |
4074 | 1838 vim_free(command); |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
28303
diff
changeset
|
1839 update_screen(UPD_NOT_VALID); |
14 | 1840 curbuf = save_curb; |
1841 curwin = save_curw; | |
1842 raise_if_error(); | |
1843 return scheme_void; | |
1844 } | |
1845 | |
1846 /* | |
1847 *=========================================================================== | |
1848 * 5. Vim Window-related Manipulation Functions | |
1849 *=========================================================================== | |
1850 */ | |
1851 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1852 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1853 * (curr-win) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1854 */ |
14 | 1855 static Scheme_Object * |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
1856 get_curr_win(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED) |
14 | 1857 { |
1858 return (Scheme_Object *)get_vim_curr_window(); | |
1859 } | |
1860 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1861 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1862 * (win-count) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1863 */ |
14 | 1864 static Scheme_Object * |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
1865 get_window_count(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED) |
14 | 1866 { |
4082 | 1867 int n = 0; |
14 | 1868 win_T *w; |
1869 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9289
diff
changeset
|
1870 FOR_ALL_WINDOWS(w) |
671 | 1871 ++n; |
14 | 1872 return scheme_make_integer(n); |
1873 } | |
1874 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1875 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1876 * (get-win-list [buffer]) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1877 */ |
14 | 1878 static Scheme_Object * |
1879 get_window_list(void *data, int argc, Scheme_Object **argv) | |
1880 { | |
1881 Vim_Prim *prim = (Vim_Prim *)data; | |
1882 vim_mz_buffer *buf; | |
1883 Scheme_Object *list; | |
4082 | 1884 win_T *w = firstwin; |
14 | 1885 |
1886 buf = get_buffer_arg(prim->name, 0, argc, argv); | |
1887 list = scheme_null; | |
1888 | |
4082 | 1889 for ( ; w != NULL; w = w->w_next) |
856 | 1890 if (w->w_buffer == buf->buf) |
1894 | 1891 { |
14 | 1892 list = scheme_make_pair(window_new(w), list); |
1894 | 1893 MZ_GC_CHECK(); |
1894 } | |
14 | 1895 |
1896 return list; | |
1897 } | |
1898 | |
1899 static Scheme_Object * | |
1900 window_new(win_T *win) | |
1901 { | |
1894 | 1902 vim_mz_window *self = NULL; |
1903 | |
1904 MZ_GC_DECL_REG(1); | |
1905 MZ_GC_VAR_IN_REG(0, self); | |
14 | 1906 |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1907 // We need to handle deletion of windows underneath us. |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1908 // If we add a "w_mzscheme_ref" field to the win_T structure, |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1909 // then we can get at it in win_free() in vim. |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1910 // |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1911 // On a win_free() we set the Scheme object's win_T *field |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1912 // to an invalid value. We trap all uses of a window |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1913 // object, and reject them if the win_T *field is invalid. |
502 | 1914 if (win->w_mzscheme_ref != NULL) |
4074 | 1915 return (Scheme_Object *)WINDOW_REF(win); |
1916 | |
1917 MZ_GC_REG(); | |
1918 self = scheme_malloc_fail_ok(scheme_malloc_tagged, sizeof(vim_mz_window)); | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19229
diff
changeset
|
1919 CLEAR_POINTER(self); |
4074 | 1920 #ifndef MZ_PRECISE_GC |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1921 scheme_dont_gc_ptr(self); // because win isn't visible to GC |
4074 | 1922 #else |
1923 win->w_mzscheme_ref = scheme_malloc_immobile_box(NULL); | |
1924 #endif | |
1894 | 1925 MZ_GC_CHECK(); |
4074 | 1926 WINDOW_REF(win) = self; |
1927 MZ_GC_CHECK(); | |
14 | 1928 self->win = win; |
1894 | 1929 self->so.type = mz_window_type; |
1930 | |
1931 MZ_GC_UNREG(); | |
4074 | 1932 return (Scheme_Object *)self; |
14 | 1933 } |
1934 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1935 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1936 * (get-win-num [window]) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1937 */ |
14 | 1938 static Scheme_Object * |
4082 | 1939 get_window_num(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED) |
14 | 1940 { |
4082 | 1941 int nr = 1; |
14 | 1942 Vim_Prim *prim = (Vim_Prim *)data; |
1943 win_T *win = get_window_arg(prim->name, 0, argc, argv)->win; | |
1944 win_T *wp; | |
1945 | |
1946 for (wp = firstwin; wp != win; wp = wp->w_next) | |
1947 ++nr; | |
1948 | |
1949 return scheme_make_integer(nr); | |
1950 } | |
1951 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1952 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1953 * (get-win-by-num {windownum}) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1954 */ |
14 | 1955 static Scheme_Object * |
1956 get_window_by_num(void *data, int argc, Scheme_Object **argv) | |
1957 { | |
1958 Vim_Prim *prim = (Vim_Prim *)data; | |
4082 | 1959 win_T *win = firstwin; |
14 | 1960 int fnum; |
1961 | |
1962 fnum = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0)); | |
1963 if (fnum < 1) | |
1964 scheme_signal_error(_("window index is out of range")); | |
1965 | |
4082 | 1966 for ( ; win != NULL; win = win->w_next, --fnum) |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1967 if (fnum == 1) // to be 1-based |
14 | 1968 return window_new(win); |
1969 | |
1970 return scheme_false; | |
1971 } | |
1972 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1973 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1974 * (get-win-buffer [window]) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1975 */ |
14 | 1976 static Scheme_Object * |
1977 get_window_buffer(void *data, int argc, Scheme_Object **argv) | |
1978 { | |
1979 Vim_Prim *prim = (Vim_Prim *)data; | |
1980 vim_mz_window *win = get_window_arg(prim->name, 0, argc, argv); | |
1981 | |
1982 return buffer_new(win->win->w_buffer); | |
1983 } | |
1984 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1985 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1986 * (get-win-height [window]) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1987 */ |
14 | 1988 static Scheme_Object * |
1989 get_window_height(void *data, int argc, Scheme_Object **argv) | |
1990 { | |
1991 Vim_Prim *prim = (Vim_Prim *)data; | |
1992 vim_mz_window *win = get_window_arg(prim->name, 0, argc, argv); | |
1993 | |
1994 return scheme_make_integer(win->win->w_height); | |
1995 } | |
1996 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1997 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1998 * (set-win-height {height} [window]) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1999 */ |
14 | 2000 static Scheme_Object * |
2001 set_window_height(void *data, int argc, Scheme_Object **argv) | |
2002 { | |
2003 Vim_Prim *prim = (Vim_Prim *)data; | |
2004 vim_mz_window *win; | |
2005 win_T *savewin; | |
2006 int height; | |
2007 | |
2008 win = get_window_arg(prim->name, 1, argc, argv); | |
2009 height = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0)); | |
2010 | |
2011 #ifdef FEAT_GUI | |
2012 need_mouse_correct = TRUE; | |
2013 #endif | |
2014 | |
2015 savewin = curwin; | |
2016 curwin = win->win; | |
2017 win_setheight(height); | |
2018 curwin = savewin; | |
2019 | |
2020 raise_if_error(); | |
2021 return scheme_void; | |
2022 } | |
2023 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2024 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2025 * (get-win-width [window]) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2026 */ |
14 | 2027 static Scheme_Object * |
2028 get_window_width(void *data, int argc, Scheme_Object **argv) | |
2029 { | |
2030 Vim_Prim *prim = (Vim_Prim *)data; | |
2031 vim_mz_window *win = get_window_arg(prim->name, 0, argc, argv); | |
2032 | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2033 return scheme_make_integer(win->win->w_width); |
14 | 2034 } |
2035 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2036 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2037 * (set-win-width {width} [window]) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2038 */ |
14 | 2039 static Scheme_Object * |
2040 set_window_width(void *data, int argc, Scheme_Object **argv) | |
2041 { | |
2042 Vim_Prim *prim = (Vim_Prim *)data; | |
2043 vim_mz_window *win; | |
2044 win_T *savewin; | |
2045 int width = 0; | |
2046 | |
2047 win = get_window_arg(prim->name, 1, argc, argv); | |
2048 width = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0)); | |
2049 | |
2050 # ifdef FEAT_GUI | |
2051 need_mouse_correct = TRUE; | |
2052 # endif | |
2053 | |
2054 savewin = curwin; | |
2055 curwin = win->win; | |
2056 win_setwidth(width); | |
2057 curwin = savewin; | |
2058 | |
2059 raise_if_error(); | |
2060 return scheme_void; | |
2061 } | |
2062 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2063 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2064 * (get-cursor [window]) -> (line . col) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2065 */ |
14 | 2066 static Scheme_Object * |
2067 get_cursor(void *data, int argc, Scheme_Object **argv) | |
2068 { | |
2069 Vim_Prim *prim = (Vim_Prim *)data; | |
2070 vim_mz_window *win; | |
2071 pos_T pos; | |
2072 | |
2073 win = get_window_arg(prim->name, 0, argc, argv); | |
2074 pos = win->win->w_cursor; | |
2075 return scheme_make_pair(scheme_make_integer_value((long)pos.lnum), | |
2076 scheme_make_integer_value((long)pos.col + 1)); | |
2077 } | |
2078 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2079 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2080 * (set-cursor (line . col) [window]) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2081 */ |
14 | 2082 static Scheme_Object * |
2083 set_cursor(void *data, int argc, Scheme_Object **argv) | |
2084 { | |
2085 Vim_Prim *prim = (Vim_Prim *)data; | |
2086 vim_mz_window *win; | |
2087 long lnum = 0; | |
2088 long col = 0; | |
2089 | |
274 | 2090 #ifdef HAVE_SANDBOX |
2091 sandbox_check(); | |
2092 #endif | |
14 | 2093 win = get_window_arg(prim->name, 1, argc, argv); |
2094 GUARANTEE_PAIR(prim->name, 0); | |
2095 | |
2096 if (!SCHEME_INTP(SCHEME_CAR(argv[0])) | |
2097 || !SCHEME_INTP(SCHEME_CDR(argv[0]))) | |
2098 scheme_wrong_type(prim->name, "integer pair", 0, argc, argv); | |
2099 | |
2100 lnum = SCHEME_INT_VAL(SCHEME_CAR(argv[0])); | |
2101 col = SCHEME_INT_VAL(SCHEME_CDR(argv[0])) - 1; | |
2102 | |
2103 check_line_range(lnum, win->win->w_buffer); | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2104 // don't know how to catch invalid column value |
14 | 2105 |
2106 win->win->w_cursor.lnum = lnum; | |
2107 win->win->w_cursor.col = col; | |
14395
c15bef307de6
patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents:
12608
diff
changeset
|
2108 win->win->w_set_curswant = TRUE; |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
28303
diff
changeset
|
2109 update_screen(UPD_VALID); |
14 | 2110 |
2111 raise_if_error(); | |
2112 return scheme_void; | |
2113 } | |
2114 /* | |
2115 *=========================================================================== | |
2116 * 6. Vim Buffer-related Manipulation Functions | |
2117 *=========================================================================== | |
2118 */ | |
2119 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2120 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2121 * (open-buff {filename}) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2122 */ |
14 | 2123 static Scheme_Object * |
2124 mzscheme_open_buffer(void *data, int argc, Scheme_Object **argv) | |
2125 { | |
2126 Vim_Prim *prim = (Vim_Prim *)data; | |
2127 int num = 0; | |
4074 | 2128 Scheme_Object *onum = NULL; |
2129 Scheme_Object *buf = NULL; | |
2130 Scheme_Object *fname; | |
2131 | |
2132 MZ_GC_DECL_REG(3); | |
2133 MZ_GC_VAR_IN_REG(0, onum); | |
2134 MZ_GC_VAR_IN_REG(1, buf); | |
2135 MZ_GC_VAR_IN_REG(2, fname); | |
2136 MZ_GC_REG(); | |
2137 fname = GUARANTEED_STRING_ARG(prim->name, 0); | |
14 | 2138 |
274 | 2139 #ifdef HAVE_SANDBOX |
2140 sandbox_check(); | |
2141 #endif | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2142 // TODO make open existing file |
4074 | 2143 num = buflist_add(BYTE_STRING_VALUE(fname), BLN_LISTED | BLN_CURBUF); |
14 | 2144 |
2145 if (num == 0) | |
2146 raise_vim_exn(_("couldn't open buffer")); | |
2147 | |
2148 onum = scheme_make_integer(num); | |
4074 | 2149 buf = get_buffer_by_num(data, 1, &onum); |
2150 MZ_GC_UNREG(); | |
2151 return buf; | |
14 | 2152 } |
2153 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2154 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2155 * (get-buff-by-num {buffernum}) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2156 */ |
14 | 2157 static Scheme_Object * |
2158 get_buffer_by_num(void *data, int argc, Scheme_Object **argv) | |
2159 { | |
2160 Vim_Prim *prim = (Vim_Prim *)data; | |
2161 buf_T *buf; | |
2162 int fnum; | |
2163 | |
2164 fnum = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0)); | |
2165 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9289
diff
changeset
|
2166 FOR_ALL_BUFFERS(buf) |
856 | 2167 if (buf->b_fnum == fnum) |
14 | 2168 return buffer_new(buf); |
2169 | |
2170 return scheme_false; | |
2171 } | |
2172 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2173 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2174 * (get-buff-by-name {buffername}) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2175 */ |
14 | 2176 static Scheme_Object * |
2177 get_buffer_by_name(void *data, int argc, Scheme_Object **argv) | |
2178 { | |
2179 Vim_Prim *prim = (Vim_Prim *)data; | |
2180 buf_T *buf; | |
4074 | 2181 Scheme_Object *buffer = NULL; |
2182 Scheme_Object *fname = NULL; | |
2183 | |
2184 MZ_GC_DECL_REG(2); | |
2185 MZ_GC_VAR_IN_REG(0, buffer); | |
2186 MZ_GC_VAR_IN_REG(1, fname); | |
2187 MZ_GC_REG(); | |
2188 fname = GUARANTEED_STRING_ARG(prim->name, 0); | |
2189 buffer = scheme_false; | |
14 | 2190 |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9289
diff
changeset
|
2191 FOR_ALL_BUFFERS(buf) |
4074 | 2192 { |
14 | 2193 if (buf->b_ffname == NULL || buf->b_sfname == NULL) |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2194 // empty string |
14 | 2195 { |
4074 | 2196 if (BYTE_STRING_VALUE(fname)[0] == NUL) |
2197 buffer = buffer_new(buf); | |
14 | 2198 } |
4074 | 2199 else if (!fnamecmp(buf->b_ffname, BYTE_STRING_VALUE(fname)) |
2200 || !fnamecmp(buf->b_sfname, BYTE_STRING_VALUE(fname))) | |
2201 { | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2202 // either short or long filename matches |
4074 | 2203 buffer = buffer_new(buf); |
2204 } | |
2205 } | |
2206 | |
2207 MZ_GC_UNREG(); | |
2208 return buffer; | |
14 | 2209 } |
2210 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2211 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2212 * (get-next-buff [buffer]) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2213 */ |
14 | 2214 static Scheme_Object * |
2215 get_next_buffer(void *data, int argc, Scheme_Object **argv) | |
2216 { | |
2217 Vim_Prim *prim = (Vim_Prim *)data; | |
2218 buf_T *buf = get_buffer_arg(prim->name, 0, argc, argv)->buf; | |
2219 | |
2220 if (buf->b_next == NULL) | |
2221 return scheme_false; | |
2222 else | |
2223 return buffer_new(buf->b_next); | |
2224 } | |
2225 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2226 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2227 * (get-prev-buff [buffer]) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2228 */ |
14 | 2229 static Scheme_Object * |
2230 get_prev_buffer(void *data, int argc, Scheme_Object **argv) | |
2231 { | |
2232 Vim_Prim *prim = (Vim_Prim *)data; | |
2233 buf_T *buf = get_buffer_arg(prim->name, 0, argc, argv)->buf; | |
2234 | |
2235 if (buf->b_prev == NULL) | |
2236 return scheme_false; | |
2237 else | |
2238 return buffer_new(buf->b_prev); | |
2239 } | |
2240 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2241 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2242 * (get-buff-num [buffer]) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2243 */ |
14 | 2244 static Scheme_Object * |
2245 get_buffer_num(void *data, int argc, Scheme_Object **argv) | |
2246 { | |
2247 Vim_Prim *prim = (Vim_Prim *)data; | |
2248 vim_mz_buffer *buf = get_buffer_arg(prim->name, 0, argc, argv); | |
2249 | |
2250 return scheme_make_integer(buf->buf->b_fnum); | |
2251 } | |
2252 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2253 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2254 * (buff-count) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2255 */ |
14 | 2256 static Scheme_Object * |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
2257 get_buffer_count(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED) |
14 | 2258 { |
2259 buf_T *b; | |
2260 int n = 0; | |
2261 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9289
diff
changeset
|
2262 FOR_ALL_BUFFERS(b) ++n; |
14 | 2263 return scheme_make_integer(n); |
2264 } | |
2265 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2266 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2267 * (get-buff-name [buffer]) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2268 */ |
14 | 2269 static Scheme_Object * |
2270 get_buffer_name(void *data, int argc, Scheme_Object **argv) | |
2271 { | |
2272 Vim_Prim *prim = (Vim_Prim *)data; | |
2273 vim_mz_buffer *buf = get_buffer_arg(prim->name, 0, argc, argv); | |
2274 | |
4074 | 2275 return scheme_make_byte_string((char *)buf->buf->b_ffname); |
14 | 2276 } |
2277 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2278 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2279 * (curr-buff) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2280 */ |
14 | 2281 static Scheme_Object * |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
2282 get_curr_buffer(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED) |
14 | 2283 { |
2284 return (Scheme_Object *)get_vim_curr_buffer(); | |
2285 } | |
2286 | |
2287 static Scheme_Object * | |
2288 buffer_new(buf_T *buf) | |
2289 { | |
1894 | 2290 vim_mz_buffer *self = NULL; |
2291 | |
2292 MZ_GC_DECL_REG(1); | |
2293 MZ_GC_VAR_IN_REG(0, self); | |
14 | 2294 |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2295 // We need to handle deletion of buffers underneath us. |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2296 // If we add a "b_mzscheme_ref" field to the buf_T structure, |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2297 // then we can get at it in buf_freeall() in vim. |
502 | 2298 if (buf->b_mzscheme_ref) |
4074 | 2299 return (Scheme_Object *)BUFFER_REF(buf); |
2300 | |
2301 MZ_GC_REG(); | |
2302 self = scheme_malloc_fail_ok(scheme_malloc_tagged, sizeof(vim_mz_buffer)); | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19229
diff
changeset
|
2303 CLEAR_POINTER(self); |
4074 | 2304 #ifndef MZ_PRECISE_GC |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2305 scheme_dont_gc_ptr(self); // because buf isn't visible to GC |
4074 | 2306 #else |
2307 buf->b_mzscheme_ref = scheme_malloc_immobile_box(NULL); | |
2308 #endif | |
1894 | 2309 MZ_GC_CHECK(); |
4074 | 2310 BUFFER_REF(buf) = self; |
2311 MZ_GC_CHECK(); | |
14 | 2312 self->buf = buf; |
1894 | 2313 self->so.type = mz_buffer_type; |
2314 | |
2315 MZ_GC_UNREG(); | |
4074 | 2316 return (Scheme_Object *)self; |
14 | 2317 } |
2318 | |
2319 /* | |
2320 * (get-buff-size [buffer]) | |
2321 * | |
2322 * Get the size (number of lines) in the current buffer. | |
2323 */ | |
2324 static Scheme_Object * | |
2325 get_buffer_size(void *data, int argc, Scheme_Object **argv) | |
2326 { | |
2327 Vim_Prim *prim = (Vim_Prim *)data; | |
2328 vim_mz_buffer *buf = get_buffer_arg(prim->name, 0, argc, argv); | |
2329 | |
2330 return scheme_make_integer(buf->buf->b_ml.ml_line_count); | |
2331 } | |
2332 | |
2333 /* | |
2334 * (get-buff-line {linenr} [buffer]) | |
2335 * | |
2336 * Get a line from the specified buffer. The line number is | |
2337 * in Vim format (1-based). The line is returned as a MzScheme | |
2338 * string object. | |
2339 */ | |
2340 static Scheme_Object * | |
2341 get_buffer_line(void *data, int argc, Scheme_Object **argv) | |
2342 { | |
2343 Vim_Prim *prim = (Vim_Prim *)data; | |
2344 vim_mz_buffer *buf; | |
2345 int linenr; | |
1894 | 2346 char_u *line; |
14 | 2347 |
2348 buf = get_buffer_arg(prim->name, 1, argc, argv); | |
2349 linenr = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0)); | |
2350 line = ml_get_buf(buf->buf, (linenr_T)linenr, FALSE); | |
2351 | |
2352 raise_if_error(); | |
4074 | 2353 return scheme_make_byte_string((char *)line); |
14 | 2354 } |
2355 | |
2356 | |
2357 /* | |
2358 * (get-buff-line-list {start} {end} [buffer]) | |
2359 * | |
2360 * Get a list of lines from the specified buffer. The line numbers | |
2361 * are in Vim format (1-based). The range is from lo up to, but not | |
2362 * including, hi. The list is returned as a list of string objects. | |
2363 */ | |
2364 static Scheme_Object * | |
2365 get_buffer_line_list(void *data, int argc, Scheme_Object **argv) | |
2366 { | |
2367 Vim_Prim *prim = (Vim_Prim *)data; | |
2368 vim_mz_buffer *buf; | |
2369 int i, hi, lo, n; | |
1894 | 2370 Scheme_Object *list = NULL; |
2371 | |
2372 MZ_GC_DECL_REG(1); | |
2373 MZ_GC_VAR_IN_REG(0, list); | |
2374 MZ_GC_REG(); | |
14 | 2375 |
2376 buf = get_buffer_arg(prim->name, 2, argc, argv); | |
2377 list = scheme_null; | |
2378 hi = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 1)); | |
2379 lo = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0)); | |
2380 | |
2381 /* | |
2382 * Handle some error conditions | |
2383 */ | |
2384 if (lo < 0) | |
856 | 2385 lo = 0; |
14 | 2386 |
2387 if (hi < 0) | |
2388 hi = 0; | |
2389 if (hi < lo) | |
856 | 2390 hi = lo; |
14 | 2391 |
2392 n = hi - lo; | |
2393 | |
2394 for (i = n; i >= 0; --i) | |
2395 { | |
4074 | 2396 Scheme_Object *str = scheme_make_byte_string( |
14 | 2397 (char *)ml_get_buf(buf->buf, (linenr_T)(lo+i), FALSE)); |
2398 raise_if_error(); | |
2399 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2400 // Set the list item |
14 | 2401 list = scheme_make_pair(str, list); |
1894 | 2402 MZ_GC_CHECK(); |
14 | 2403 } |
1894 | 2404 MZ_GC_UNREG(); |
14 | 2405 return list; |
2406 } | |
2407 | |
2408 /* | |
2409 * (set-buff-line {linenr} {string/#f} [buffer]) | |
2410 * | |
2411 * Replace a line in the specified buffer. The line number is | |
2412 * in Vim format (1-based). The replacement line is given as | |
2413 * an MzScheme string object. The object is checked for validity | |
2414 * and correct format. An exception is thrown if the values are not | |
2415 * the correct format. | |
2416 * | |
2417 * It returns a Scheme Object that indicates the length of the | |
2418 * string changed. | |
2419 */ | |
2420 static Scheme_Object * | |
2421 set_buffer_line(void *data, int argc, Scheme_Object **argv) | |
2422 { | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2423 // First of all, we check the value of the supplied MzScheme object. |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2424 // There are three cases: |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2425 // 1. #f - this is a deletion. |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2426 // 2. A string - this is a replacement. |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2427 // 3. Anything else - this is an error. |
14 | 2428 Vim_Prim *prim = (Vim_Prim *)data; |
2429 vim_mz_buffer *buf; | |
1894 | 2430 Scheme_Object *line = NULL; |
14 | 2431 char *save; |
2432 int n; | |
2433 | |
1894 | 2434 MZ_GC_DECL_REG(1); |
2435 MZ_GC_VAR_IN_REG(0, line); | |
2436 MZ_GC_REG(); | |
2437 | |
274 | 2438 #ifdef HAVE_SANDBOX |
2439 sandbox_check(); | |
2440 #endif | |
14 | 2441 n = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0)); |
2442 if (!SCHEME_STRINGP(argv[1]) && !SCHEME_FALSEP(argv[1])) | |
856 | 2443 scheme_wrong_type(prim->name, "string or #f", 1, argc, argv); |
14 | 2444 line = argv[1]; |
2445 buf = get_buffer_arg(prim->name, 2, argc, argv); | |
2446 | |
2447 check_line_range(n, buf->buf); | |
2448 | |
2449 if (SCHEME_FALSEP(line)) | |
2450 { | |
1894 | 2451 buf_T *savebuf = curbuf; |
2452 | |
14 | 2453 curbuf = buf->buf; |
2454 | |
2455 if (u_savedel((linenr_T)n, 1L) == FAIL) | |
2456 { | |
2457 curbuf = savebuf; | |
2458 raise_vim_exn(_("cannot save undo information")); | |
2459 } | |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
2460 else if (ml_delete((linenr_T)n) == FAIL) |
14 | 2461 { |
2462 curbuf = savebuf; | |
2463 raise_vim_exn(_("cannot delete line")); | |
2464 } | |
2465 if (buf->buf == curwin->w_buffer) | |
2466 mz_fix_cursor(n, n + 1, -1); | |
1929 | 2467 deleted_lines_mark((linenr_T)n, 1L); |
14 | 2468 |
2469 curbuf = savebuf; | |
2470 | |
1894 | 2471 MZ_GC_UNREG(); |
14 | 2472 raise_if_error(); |
2473 return scheme_void; | |
2474 } | |
1894 | 2475 else |
14 | 2476 { |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2477 // Otherwise it's a line |
1894 | 2478 buf_T *savebuf = curbuf; |
2479 | |
2480 save = string_to_line(line); | |
2481 | |
2482 curbuf = buf->buf; | |
2483 | |
2484 if (u_savesub((linenr_T)n) == FAIL) | |
2485 { | |
2486 curbuf = savebuf; | |
2487 vim_free(save); | |
2488 raise_vim_exn(_("cannot save undo information")); | |
2489 } | |
2490 else if (ml_replace((linenr_T)n, (char_u *)save, TRUE) == FAIL) | |
2491 { | |
2492 curbuf = savebuf; | |
2493 vim_free(save); | |
2494 raise_vim_exn(_("cannot replace line")); | |
2495 } | |
2496 else | |
2497 { | |
2498 vim_free(save); | |
2499 changed_bytes((linenr_T)n, 0); | |
2500 } | |
2501 | |
14 | 2502 curbuf = savebuf; |
1894 | 2503 |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2504 // Check that the cursor is not beyond the end of the line now. |
1894 | 2505 if (buf->buf == curwin->w_buffer) |
2506 check_cursor_col(); | |
2507 | |
2508 MZ_GC_UNREG(); | |
2509 raise_if_error(); | |
2510 return scheme_void; | |
14 | 2511 } |
1894 | 2512 } |
2513 | |
2514 static void | |
2515 free_array(char **array) | |
2516 { | |
2517 char **curr = array; | |
2518 while (*curr != NULL) | |
2519 vim_free(*curr++); | |
2520 vim_free(array); | |
14 | 2521 } |
2522 | |
2523 /* | |
2524 * (set-buff-line-list {start} {end} {string-list/#f/null} [buffer]) | |
2525 * | |
2526 * Replace a range of lines in the specified buffer. The line numbers are in | |
2527 * Vim format (1-based). The range is from lo up to, but not including, hi. | |
2528 * The replacement lines are given as a Scheme list of string objects. The | |
2529 * list is checked for validity and correct format. | |
2530 * | |
2531 * Errors are returned as a value of FAIL. The return value is OK on success. | |
2532 * If OK is returned and len_change is not NULL, *len_change is set to the | |
2533 * change in the buffer length. | |
2534 */ | |
2535 static Scheme_Object * | |
2536 set_buffer_line_list(void *data, int argc, Scheme_Object **argv) | |
2537 { | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2538 // First of all, we check the type of the supplied MzScheme object. |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2539 // There are three cases: |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2540 // 1. #f - this is a deletion. |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2541 // 2. A list - this is a replacement. |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2542 // 3. Anything else - this is an error. |
14 | 2543 Vim_Prim *prim = (Vim_Prim *)data; |
1894 | 2544 vim_mz_buffer *buf = NULL; |
2545 Scheme_Object *line_list = NULL; | |
14 | 2546 int i, old_len, new_len, hi, lo; |
2547 long extra; | |
2548 | |
1894 | 2549 MZ_GC_DECL_REG(1); |
2550 MZ_GC_VAR_IN_REG(0, line_list); | |
2551 MZ_GC_REG(); | |
2552 | |
274 | 2553 #ifdef HAVE_SANDBOX |
2554 sandbox_check(); | |
2555 #endif | |
14 | 2556 lo = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0)); |
2557 hi = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 1)); | |
2558 if (!SCHEME_PAIRP(argv[2]) | |
2559 && !SCHEME_FALSEP(argv[2]) && !SCHEME_NULLP(argv[2])) | |
2560 scheme_wrong_type(prim->name, "list or #f", 2, argc, argv); | |
2561 line_list = argv[2]; | |
2562 buf = get_buffer_arg(prim->name, 3, argc, argv); | |
2563 old_len = hi - lo; | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2564 if (old_len < 0) // process inverse values wisely |
14 | 2565 { |
2566 i = lo; | |
2567 lo = hi; | |
2568 hi = i; | |
2569 old_len = -old_len; | |
2570 } | |
2571 extra = 0; | |
2572 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2573 check_line_range(lo, buf->buf); // inclusive |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2574 check_line_range(hi - 1, buf->buf); // exclusive |
14 | 2575 |
2576 if (SCHEME_FALSEP(line_list) || SCHEME_NULLP(line_list)) | |
2577 { | |
1894 | 2578 buf_T *savebuf = curbuf; |
14 | 2579 curbuf = buf->buf; |
2580 | |
2581 if (u_savedel((linenr_T)lo, (long)old_len) == FAIL) | |
2582 { | |
2583 curbuf = savebuf; | |
2584 raise_vim_exn(_("cannot save undo information")); | |
2585 } | |
2586 else | |
2587 { | |
2588 for (i = 0; i < old_len; i++) | |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
2589 if (ml_delete((linenr_T)lo) == FAIL) |
14 | 2590 { |
2591 curbuf = savebuf; | |
2592 raise_vim_exn(_("cannot delete line")); | |
2593 } | |
2594 if (buf->buf == curwin->w_buffer) | |
2595 mz_fix_cursor(lo, hi, -old_len); | |
1929 | 2596 deleted_lines_mark((linenr_T)lo, (long)old_len); |
14 | 2597 } |
2598 | |
2599 curbuf = savebuf; | |
2600 | |
1894 | 2601 MZ_GC_UNREG(); |
14 | 2602 raise_if_error(); |
2603 return scheme_void; | |
2604 } | |
1894 | 2605 else |
14 | 2606 { |
1894 | 2607 buf_T *savebuf = curbuf; |
2608 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2609 // List |
1894 | 2610 new_len = scheme_proper_list_length(line_list); |
2611 MZ_GC_CHECK(); | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2612 if (new_len < 0) // improper or cyclic list |
1894 | 2613 scheme_wrong_type(prim->name, "proper list", |
2614 2, argc, argv); | |
2615 else | |
14 | 2616 { |
1894 | 2617 char **array = NULL; |
2618 Scheme_Object *line = NULL; | |
2619 Scheme_Object *rest = NULL; | |
2620 | |
2621 MZ_GC_DECL_REG(2); | |
2622 MZ_GC_VAR_IN_REG(0, line); | |
2623 MZ_GC_VAR_IN_REG(1, rest); | |
2624 MZ_GC_REG(); | |
2625 | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19229
diff
changeset
|
2626 array = ALLOC_CLEAR_MULT(char *, new_len + 1); |
1894 | 2627 |
2628 rest = line_list; | |
2629 for (i = 0; i < new_len; ++i) | |
2630 { | |
2631 line = SCHEME_CAR(rest); | |
2632 rest = SCHEME_CDR(rest); | |
2633 if (!SCHEME_STRINGP(line)) | |
2634 { | |
2635 free_array(array); | |
2636 scheme_wrong_type(prim->name, "string-list", 2, argc, argv); | |
2637 } | |
2638 array[i] = string_to_line(line); | |
2639 } | |
2640 | |
2641 curbuf = buf->buf; | |
2642 | |
2643 if (u_save((linenr_T)(lo-1), (linenr_T)hi) == FAIL) | |
2644 { | |
2645 curbuf = savebuf; | |
2646 free_array(array); | |
2647 raise_vim_exn(_("cannot save undo information")); | |
2648 } | |
2649 | |
2650 /* | |
2651 * If the size of the range is reducing (ie, new_len < old_len) we | |
2652 * need to delete some old_len. We do this at the start, by | |
2653 * repeatedly deleting line "lo". | |
2654 */ | |
2655 for (i = 0; i < old_len - new_len; ++i) | |
2656 { | |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
2657 if (ml_delete((linenr_T)lo) == FAIL) |
1894 | 2658 { |
2659 curbuf = savebuf; | |
2660 free_array(array); | |
2661 raise_vim_exn(_("cannot delete line")); | |
2662 } | |
2663 extra--; | |
2664 } | |
2665 | |
2666 /* | |
2667 * For as long as possible, replace the existing old_len with the | |
2668 * new old_len. This is a more efficient operation, as it requires | |
2669 * less memory allocation and freeing. | |
2670 */ | |
2671 for (i = 0; i < old_len && i < new_len; i++) | |
2672 if (ml_replace((linenr_T)(lo+i), (char_u *)array[i], TRUE) == FAIL) | |
2673 { | |
2674 curbuf = savebuf; | |
2675 free_array(array); | |
2676 raise_vim_exn(_("cannot replace line")); | |
2677 } | |
2678 | |
2679 /* | |
2680 * Now we may need to insert the remaining new_len. We don't need to | |
2681 * free the string passed back because MzScheme has control of that | |
2682 * memory. | |
2683 */ | |
2684 while (i < new_len) | |
2685 { | |
2686 if (ml_append((linenr_T)(lo + i - 1), | |
2687 (char_u *)array[i], 0, FALSE) == FAIL) | |
2688 { | |
2689 curbuf = savebuf; | |
2690 free_array(array); | |
2691 raise_vim_exn(_("cannot insert line")); | |
2692 } | |
2693 ++i; | |
2694 ++extra; | |
2695 } | |
2696 MZ_GC_UNREG(); | |
2697 free_array(array); | |
14 | 2698 } |
1894 | 2699 |
2700 /* | |
2701 * Adjust marks. Invalidate any which lie in the | |
2702 * changed range, and move any in the remainder of the buffer. | |
2703 */ | |
9228
ea504064c996
commit https://github.com/vim/vim/commit/fd89d7ea81b18d32363456b16258174dc9e095dc
Christian Brabandt <cb@256bit.org>
parents:
9173
diff
changeset
|
2704 mark_adjust((linenr_T)lo, (linenr_T)(hi - 1), |
ea504064c996
commit https://github.com/vim/vim/commit/fd89d7ea81b18d32363456b16258174dc9e095dc
Christian Brabandt <cb@256bit.org>
parents:
9173
diff
changeset
|
2705 (long)MAXLNUM, (long)extra); |
1894 | 2706 changed_lines((linenr_T)lo, 0, (linenr_T)hi, (long)extra); |
2707 | |
2708 if (buf->buf == curwin->w_buffer) | |
2709 mz_fix_cursor(lo, hi, extra); | |
2710 curbuf = savebuf; | |
2711 | |
2712 MZ_GC_UNREG(); | |
2713 raise_if_error(); | |
2714 return scheme_void; | |
14 | 2715 } |
2716 } | |
2717 | |
2718 /* | |
2719 * (insert-buff-line-list {linenr} {string/string-list} [buffer]) | |
2720 * | |
2023 | 2721 * Insert a number of lines into the specified buffer after the specified line. |
14 | 2722 * The line number is in Vim format (1-based). The lines to be inserted are |
2723 * given as an MzScheme list of string objects or as a single string. The lines | |
2724 * to be added are checked for validity and correct format. Errors are | |
2725 * returned as a value of FAIL. The return value is OK on success. | |
2726 * If OK is returned and len_change is not NULL, *len_change | |
2727 * is set to the change in the buffer length. | |
2728 */ | |
2729 static Scheme_Object * | |
2730 insert_buffer_line_list(void *data, int argc, Scheme_Object **argv) | |
2731 { | |
2732 Vim_Prim *prim = (Vim_Prim *)data; | |
1894 | 2733 vim_mz_buffer *buf = NULL; |
2734 Scheme_Object *list = NULL; | |
2735 char *str = NULL; | |
14 | 2736 int i, n, size; |
2737 | |
1894 | 2738 MZ_GC_DECL_REG(1); |
2739 MZ_GC_VAR_IN_REG(0, list); | |
2740 MZ_GC_REG(); | |
2741 | |
274 | 2742 #ifdef HAVE_SANDBOX |
2743 sandbox_check(); | |
2744 #endif | |
14 | 2745 /* |
2746 * First of all, we check the type of the supplied MzScheme object. | |
2747 * It must be a string or a list, or the call is in error. | |
2748 */ | |
2749 n = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0)); | |
2750 list = argv[1]; | |
2751 | |
2752 if (!SCHEME_STRINGP(list) && !SCHEME_PAIRP(list)) | |
2753 scheme_wrong_type(prim->name, "string or list", 1, argc, argv); | |
2754 buf = get_buffer_arg(prim->name, 2, argc, argv); | |
2755 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2756 if (n != 0) // 0 can be used in insert |
856 | 2757 check_line_range(n, buf->buf); |
14 | 2758 if (SCHEME_STRINGP(list)) |
2759 { | |
1894 | 2760 buf_T *savebuf = curbuf; |
2761 | |
14 | 2762 str = string_to_line(list); |
2763 curbuf = buf->buf; | |
2764 | |
2765 if (u_save((linenr_T)n, (linenr_T)(n+1)) == FAIL) | |
2766 { | |
2767 curbuf = savebuf; | |
1894 | 2768 vim_free(str); |
14 | 2769 raise_vim_exn(_("cannot save undo information")); |
2770 } | |
2771 else if (ml_append((linenr_T)n, (char_u *)str, 0, FALSE) == FAIL) | |
2772 { | |
2773 curbuf = savebuf; | |
1894 | 2774 vim_free(str); |
14 | 2775 raise_vim_exn(_("cannot insert line")); |
2776 } | |
2777 else | |
1894 | 2778 { |
2779 vim_free(str); | |
14 | 2780 appended_lines_mark((linenr_T)n, 1L); |
1894 | 2781 } |
14 | 2782 |
2783 curbuf = savebuf; | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
28303
diff
changeset
|
2784 update_screen(UPD_VALID); |
14 | 2785 |
1894 | 2786 MZ_GC_UNREG(); |
14 | 2787 raise_if_error(); |
2788 return scheme_void; | |
2789 } | |
2790 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2791 // List |
14 | 2792 size = scheme_proper_list_length(list); |
1894 | 2793 MZ_GC_CHECK(); |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2794 if (size < 0) // improper or cyclic list |
14 | 2795 scheme_wrong_type(prim->name, "proper list", |
2796 2, argc, argv); | |
2797 else | |
2798 { | |
1894 | 2799 Scheme_Object *line = NULL; |
2800 Scheme_Object *rest = NULL; | |
2801 char **array; | |
2802 buf_T *savebuf = curbuf; | |
2803 | |
2804 MZ_GC_DECL_REG(2); | |
2805 MZ_GC_VAR_IN_REG(0, line); | |
2806 MZ_GC_VAR_IN_REG(1, rest); | |
2807 MZ_GC_REG(); | |
2808 | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19229
diff
changeset
|
2809 array = ALLOC_CLEAR_MULT(char *, size + 1); |
1894 | 2810 |
2811 rest = list; | |
856 | 2812 for (i = 0; i < size; ++i) |
1894 | 2813 { |
2814 line = SCHEME_CAR(rest); | |
2815 rest = SCHEME_CDR(rest); | |
2816 array[i] = string_to_line(line); | |
2817 } | |
2818 | |
2819 curbuf = buf->buf; | |
2820 | |
2821 if (u_save((linenr_T)n, (linenr_T)(n + 1)) == FAIL) | |
2822 { | |
2823 curbuf = savebuf; | |
2824 free_array(array); | |
2825 raise_vim_exn(_("cannot save undo information")); | |
2826 } | |
2827 else | |
2828 { | |
2829 for (i = 0; i < size; ++i) | |
2830 if (ml_append((linenr_T)(n + i), (char_u *)array[i], | |
2831 0, FALSE) == FAIL) | |
2832 { | |
2833 curbuf = savebuf; | |
2834 free_array(array); | |
2835 raise_vim_exn(_("cannot insert line")); | |
2836 } | |
2837 | |
2838 if (i > 0) | |
2839 appended_lines_mark((linenr_T)n, (long)i); | |
2840 } | |
2841 free_array(array); | |
2842 MZ_GC_UNREG(); | |
2843 curbuf = savebuf; | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
28303
diff
changeset
|
2844 update_screen(UPD_VALID); |
14 | 2845 } |
2846 | |
1894 | 2847 MZ_GC_UNREG(); |
14 | 2848 raise_if_error(); |
2849 return scheme_void; | |
2850 } | |
2851 | |
2852 /* | |
2853 * Predicates | |
2854 */ | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2855 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2856 * (buff? obj) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2857 */ |
14 | 2858 static Scheme_Object * |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
2859 vim_bufferp(void *data UNUSED, int argc UNUSED, Scheme_Object **argv) |
14 | 2860 { |
2861 if (SCHEME_VIMBUFFERP(argv[0])) | |
2862 return scheme_true; | |
2863 else | |
2864 return scheme_false; | |
2865 } | |
2866 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2867 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2868 * (win? obj) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2869 */ |
14 | 2870 static Scheme_Object * |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
2871 vim_windowp(void *data UNUSED, int argc UNUSED, Scheme_Object **argv) |
14 | 2872 { |
2873 if (SCHEME_VIMWINDOWP(argv[0])) | |
2874 return scheme_true; | |
2875 else | |
2876 return scheme_false; | |
2877 } | |
2878 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2879 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2880 * (buff-valid? obj) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2881 */ |
14 | 2882 static Scheme_Object * |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
2883 vim_buffer_validp(void *data UNUSED, int argc UNUSED, Scheme_Object **argv) |
14 | 2884 { |
2885 if (SCHEME_VIMBUFFERP(argv[0]) | |
2886 && ((vim_mz_buffer *)argv[0])->buf != INVALID_BUFFER_VALUE) | |
2887 return scheme_true; | |
2888 else | |
2889 return scheme_false; | |
2890 } | |
2891 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2892 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2893 * (win-valid? obj) |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2894 */ |
14 | 2895 static Scheme_Object * |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
2896 vim_window_validp(void *data UNUSED, int argc UNUSED, Scheme_Object **argv) |
14 | 2897 { |
2898 if (SCHEME_VIMWINDOWP(argv[0]) | |
2899 && ((vim_mz_window *)argv[0])->win != INVALID_WINDOW_VALUE) | |
2900 return scheme_true; | |
2901 else | |
2902 return scheme_false; | |
2903 } | |
2904 | |
2905 /* | |
2906 *=========================================================================== | |
2907 * Utilities | |
2908 *=========================================================================== | |
2909 */ | |
2910 | |
2911 /* | |
2912 * Convert an MzScheme string into a Vim line. | |
2913 * | |
1894 | 2914 * All internal nulls are replaced by newline characters. |
2915 * It is an error for the string to contain newline characters. | |
14 | 2916 * |
1894 | 2917 * Returns pointer to Vim allocated memory |
14 | 2918 */ |
2919 static char * | |
2920 string_to_line(Scheme_Object *obj) | |
2921 { | |
1894 | 2922 char *scheme_str = NULL; |
2923 char *vim_str = NULL; | |
4074 | 2924 OUTPUT_LEN_TYPE len; |
14 | 2925 int i; |
2926 | |
1894 | 2927 scheme_str = scheme_display_to_string(obj, &len); |
14 | 2928 |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2929 // Error checking: String must not contain newlines, as we |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2930 // are replacing a single line, and we must replace it with |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2931 // a single line. |
4074 | 2932 if (memchr(scheme_str, '\n', len)) |
14 | 2933 scheme_signal_error(_("string cannot contain newlines")); |
2934 | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2935 vim_str = alloc(len + 1); |
1894 | 2936 |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2937 // Create a copy of the string, with internal nulls replaced by |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2938 // newline characters, as is the vim convention. |
14 | 2939 for (i = 0; i < len; ++i) |
2940 { | |
1894 | 2941 if (scheme_str[i] == '\0') |
2942 vim_str[i] = '\n'; | |
2943 else | |
2944 vim_str[i] = scheme_str[i]; | |
2945 } | |
2946 | |
2947 vim_str[i] = '\0'; | |
2948 | |
2949 MZ_GC_CHECK(); | |
2950 return vim_str; | |
2951 } | |
2952 | |
2953 #ifdef FEAT_EVAL | |
2954 /* | |
2955 * Convert Vim value into MzScheme, adopted from if_python.c | |
2956 */ | |
2957 static Scheme_Object * | |
4074 | 2958 vim_to_mzscheme(typval_T *vim_value) |
2959 { | |
2960 Scheme_Object *result = NULL; | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2961 // hash table to store visited values to avoid infinite loops |
4074 | 2962 Scheme_Hash_Table *visited = NULL; |
2963 | |
2964 MZ_GC_DECL_REG(2); | |
2965 MZ_GC_VAR_IN_REG(0, result); | |
2966 MZ_GC_VAR_IN_REG(1, visited); | |
2967 MZ_GC_REG(); | |
2968 | |
2969 visited = scheme_make_hash_table(SCHEME_hash_ptr); | |
2970 MZ_GC_CHECK(); | |
2971 | |
2972 result = vim_to_mzscheme_impl(vim_value, 1, visited); | |
2973 | |
2974 MZ_GC_UNREG(); | |
2975 return result; | |
2976 } | |
2977 | |
2978 static Scheme_Object * | |
2979 vim_to_mzscheme_impl(typval_T *vim_value, int depth, Scheme_Hash_Table *visited) | |
1894 | 2980 { |
2981 Scheme_Object *result = NULL; | |
2982 int new_value = TRUE; | |
2983 | |
4074 | 2984 MZ_GC_DECL_REG(2); |
1894 | 2985 MZ_GC_VAR_IN_REG(0, result); |
4074 | 2986 MZ_GC_VAR_IN_REG(1, visited); |
1894 | 2987 MZ_GC_REG(); |
2988 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2989 // Avoid infinite recursion |
1894 | 2990 if (depth > 100) |
2991 { | |
2992 MZ_GC_UNREG(); | |
2993 return scheme_void; | |
2994 } | |
2995 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2996 // Check if we run into a recursive loop. The item must be in visited |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2997 // then and we can use it again. |
1894 | 2998 result = scheme_hash_get(visited, (Scheme_Object *)vim_value); |
2999 MZ_GC_CHECK(); | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3000 if (result != NULL) // found, do nothing |
1894 | 3001 new_value = FALSE; |
3002 else if (vim_value->v_type == VAR_STRING) | |
3003 { | |
4074 | 3004 result = scheme_make_byte_string((char *)vim_value->vval.v_string); |
1894 | 3005 MZ_GC_CHECK(); |
3006 } | |
3007 else if (vim_value->v_type == VAR_NUMBER) | |
3008 { | |
3009 result = scheme_make_integer((long)vim_value->vval.v_number); | |
3010 MZ_GC_CHECK(); | |
3011 } | |
3012 else if (vim_value->v_type == VAR_FLOAT) | |
3013 { | |
3014 result = scheme_make_double((double)vim_value->vval.v_float); | |
3015 MZ_GC_CHECK(); | |
14 | 3016 } |
1894 | 3017 else if (vim_value->v_type == VAR_LIST) |
3018 { | |
3019 list_T *list = vim_value->vval.v_list; | |
3020 listitem_T *curr; | |
3021 | |
3022 if (list == NULL || list->lv_first == NULL) | |
3023 result = scheme_null; | |
3024 else | |
3025 { | |
3026 Scheme_Object *obj = NULL; | |
3027 | |
3028 MZ_GC_DECL_REG(1); | |
3029 MZ_GC_VAR_IN_REG(0, obj); | |
3030 MZ_GC_REG(); | |
3031 | |
19229
d776967d0f0d
patch 8.2.0173: build fails with old compiler
Bram Moolenaar <Bram@vim.org>
parents:
19102
diff
changeset
|
3032 curr = list->lv_u.mat.lv_last; |
4074 | 3033 obj = vim_to_mzscheme_impl(&curr->li_tv, depth + 1, visited); |
1894 | 3034 result = scheme_make_pair(obj, scheme_null); |
3035 MZ_GC_CHECK(); | |
3036 | |
3037 while (curr != list->lv_first) | |
3038 { | |
3039 curr = curr->li_prev; | |
4074 | 3040 obj = vim_to_mzscheme_impl(&curr->li_tv, depth + 1, visited); |
1894 | 3041 result = scheme_make_pair(obj, result); |
3042 MZ_GC_CHECK(); | |
3043 } | |
3044 } | |
3045 MZ_GC_UNREG(); | |
3046 } | |
3047 else if (vim_value->v_type == VAR_DICT) | |
3048 { | |
3049 Scheme_Object *key = NULL; | |
3050 Scheme_Object *obj = NULL; | |
3051 | |
3052 MZ_GC_DECL_REG(2); | |
3053 MZ_GC_VAR_IN_REG(0, key); | |
3054 MZ_GC_VAR_IN_REG(1, obj); | |
3055 MZ_GC_REG(); | |
3056 | |
3057 result = (Scheme_Object *)scheme_make_hash_table(SCHEME_hash_ptr); | |
3058 MZ_GC_CHECK(); | |
3059 if (vim_value->vval.v_dict != NULL) | |
3060 { | |
3061 hashtab_T *ht = &vim_value->vval.v_dict->dv_hashtab; | |
3062 long_u todo = ht->ht_used; | |
3063 hashitem_T *hi; | |
3064 dictitem_T *di; | |
3065 | |
3066 for (hi = ht->ht_array; todo > 0; ++hi) | |
3067 { | |
3068 if (!HASHITEM_EMPTY(hi)) | |
3069 { | |
3070 --todo; | |
3071 | |
3072 di = dict_lookup(hi); | |
4074 | 3073 obj = vim_to_mzscheme_impl(&di->di_tv, depth + 1, visited); |
3074 key = scheme_make_byte_string((char *)hi->hi_key); | |
1894 | 3075 MZ_GC_CHECK(); |
3076 scheme_hash_set((Scheme_Hash_Table *)result, key, obj); | |
3077 MZ_GC_CHECK(); | |
3078 } | |
3079 } | |
3080 } | |
3081 MZ_GC_UNREG(); | |
3082 } | |
4074 | 3083 else if (vim_value->v_type == VAR_FUNC) |
3084 { | |
3085 Scheme_Object *funcname = NULL; | |
3086 | |
3087 MZ_GC_DECL_REG(1); | |
3088 MZ_GC_VAR_IN_REG(0, funcname); | |
3089 MZ_GC_REG(); | |
3090 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3091 // FIXME: func_ref() and func_unref() are needed. |
4074 | 3092 funcname = scheme_make_byte_string((char *)vim_value->vval.v_string); |
3093 MZ_GC_CHECK(); | |
3094 result = scheme_make_closed_prim_w_arity(vim_funcref, funcname, | |
3095 (const char *)BYTE_STRING_VALUE(funcname), 0, -1); | |
3096 MZ_GC_CHECK(); | |
3097 | |
3098 MZ_GC_UNREG(); | |
3099 } | |
8800
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3100 else if (vim_value->v_type == VAR_PARTIAL) |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3101 { |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3102 if (vim_value->vval.v_partial == NULL) |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3103 result = scheme_null; |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3104 else |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3105 { |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3106 Scheme_Object *funcname = NULL; |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3107 |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3108 MZ_GC_DECL_REG(1); |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3109 MZ_GC_VAR_IN_REG(0, funcname); |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3110 MZ_GC_REG(); |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3111 |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3112 // FIXME: func_ref() and func_unref() are needed. |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3113 // TODO: Support pt_dict and pt_argv. |
8800
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3114 funcname = scheme_make_byte_string( |
9723
80ac9cf77c9b
commit https://github.com/vim/vim/commit/437bafe4c8a83ed71ee006eda7f54b65a90f0d4c
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
3115 (char *)partial_name(vim_value->vval.v_partial)); |
8800
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3116 MZ_GC_CHECK(); |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3117 result = scheme_make_closed_prim_w_arity(vim_funcref, funcname, |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3118 (const char *)BYTE_STRING_VALUE(funcname), 0, -1); |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3119 MZ_GC_CHECK(); |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3120 |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3121 MZ_GC_UNREG(); |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3122 } |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
3123 } |
19102
ba9f50bfda83
patch 8.2.0111: VAR_SPECIAL is also used for booleans
Bram Moolenaar <Bram@vim.org>
parents:
18798
diff
changeset
|
3124 else if (vim_value->v_type == VAR_BOOL || vim_value->v_type == VAR_SPECIAL) |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
3125 { |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
3126 if (vim_value->vval.v_number <= VVAL_TRUE) |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
3127 result = scheme_make_integer((long)vim_value->vval.v_number); |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
3128 else |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
3129 result = scheme_null; |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
3130 MZ_GC_CHECK(); |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
3131 } |
1894 | 3132 else |
3133 { | |
3134 result = scheme_void; | |
3135 new_value = FALSE; | |
3136 } | |
3137 if (new_value) | |
3138 { | |
3139 scheme_hash_set(visited, (Scheme_Object *)vim_value, result); | |
3140 MZ_GC_CHECK(); | |
3141 } | |
3142 MZ_GC_UNREG(); | |
3143 return result; | |
14 | 3144 } |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3145 |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3146 static int |
4074 | 3147 mzscheme_to_vim(Scheme_Object *obj, typval_T *tv) |
3148 { | |
3149 int i, status; | |
3150 Scheme_Hash_Table *visited = NULL; | |
3151 | |
3152 MZ_GC_DECL_REG(2); | |
3153 MZ_GC_VAR_IN_REG(0, obj); | |
3154 MZ_GC_VAR_IN_REG(1, visited); | |
3155 MZ_GC_REG(); | |
3156 | |
3157 visited = scheme_make_hash_table(SCHEME_hash_ptr); | |
3158 MZ_GC_CHECK(); | |
3159 | |
3160 status = mzscheme_to_vim_impl(obj, tv, 1, visited); | |
3161 for (i = 0; i < visited->size; ++i) | |
3162 { | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3163 // free up remembered objects |
4074 | 3164 if (visited->vals[i] != NULL) |
3165 free_tv((typval_T *)visited->vals[i]); | |
3166 } | |
3167 | |
3168 MZ_GC_UNREG(); | |
3169 return status; | |
3170 } | |
3171 static int | |
3172 mzscheme_to_vim_impl(Scheme_Object *obj, typval_T *tv, int depth, | |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3173 Scheme_Hash_Table *visited) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3174 { |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3175 int status = OK; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3176 typval_T *found; |
4074 | 3177 |
3178 MZ_GC_DECL_REG(2); | |
3179 MZ_GC_VAR_IN_REG(0, obj); | |
3180 MZ_GC_VAR_IN_REG(1, visited); | |
3181 MZ_GC_REG(); | |
3182 | |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3183 MZ_GC_CHECK(); |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3184 if (depth > 100) // limit the deepest recursion level |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3185 { |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3186 tv->v_type = VAR_NUMBER; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3187 tv->vval.v_number = 0; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3188 return FAIL; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3189 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3190 |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3191 found = (typval_T *)scheme_hash_get(visited, obj); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3192 if (found != NULL) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3193 copy_tv(found, tv); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3194 else if (SCHEME_VOIDP(obj)) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3195 { |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
3196 tv->v_type = VAR_SPECIAL; |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
3197 tv->vval.v_number = VVAL_NULL; |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3198 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3199 else if (SCHEME_INTP(obj)) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3200 { |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3201 tv->v_type = VAR_NUMBER; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3202 tv->vval.v_number = SCHEME_INT_VAL(obj); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3203 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3204 else if (SCHEME_BOOLP(obj)) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3205 { |
19102
ba9f50bfda83
patch 8.2.0111: VAR_SPECIAL is also used for booleans
Bram Moolenaar <Bram@vim.org>
parents:
18798
diff
changeset
|
3206 tv->v_type = VAR_BOOL; |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3207 tv->vval.v_number = SCHEME_TRUEP(obj); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3208 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3209 else if (SCHEME_DBLP(obj)) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3210 { |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3211 tv->v_type = VAR_FLOAT; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3212 tv->vval.v_float = SCHEME_DBL_VAL(obj); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3213 } |
4074 | 3214 else if (SCHEME_BYTE_STRINGP(obj)) |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3215 { |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3216 tv->v_type = VAR_STRING; |
4074 | 3217 tv->vval.v_string = vim_strsave(BYTE_STRING_VALUE(obj)); |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3218 } |
4074 | 3219 # if MZSCHEME_VERSION_MAJOR >= 299 |
3220 else if (SCHEME_CHAR_STRINGP(obj)) | |
3221 { | |
3222 Scheme_Object *tmp = NULL; | |
3223 MZ_GC_DECL_REG(1); | |
3224 MZ_GC_VAR_IN_REG(0, tmp); | |
3225 MZ_GC_REG(); | |
3226 | |
3227 tmp = scheme_char_string_to_byte_string(obj); | |
3228 tv->v_type = VAR_STRING; | |
3229 tv->vval.v_string = vim_strsave(BYTE_STRING_VALUE(tmp)); | |
3230 MZ_GC_UNREG(); | |
3231 } | |
3232 #endif | |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3233 else if (SCHEME_VECTORP(obj) || SCHEME_NULLP(obj) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3234 || SCHEME_PAIRP(obj) || SCHEME_MUTABLE_PAIRP(obj)) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3235 { |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3236 list_T *list = list_alloc(); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3237 if (list == NULL) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3238 status = FAIL; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3239 else |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3240 { |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3241 int i; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3242 Scheme_Object *curr = NULL; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3243 Scheme_Object *cval = NULL; |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3244 // temporary var to hold current element of vectors and pairs |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3245 typval_T *v; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3246 |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3247 MZ_GC_DECL_REG(2); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3248 MZ_GC_VAR_IN_REG(0, curr); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3249 MZ_GC_VAR_IN_REG(1, cval); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3250 MZ_GC_REG(); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3251 |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3252 tv->v_type = VAR_LIST; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3253 tv->vval.v_list = list; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3254 ++list->lv_refcount; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3255 |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
3256 v = ALLOC_ONE(typval_T); |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3257 if (v == NULL) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3258 status = FAIL; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3259 else |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3260 { |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3261 // add the value in advance to allow handling of self-referential |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3262 // data structures |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
3263 typval_T *visited_tv = ALLOC_ONE(typval_T); |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3264 copy_tv(tv, visited_tv); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3265 scheme_hash_set(visited, obj, (Scheme_Object *)visited_tv); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3266 |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3267 if (SCHEME_VECTORP(obj)) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3268 { |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3269 for (i = 0; i < SCHEME_VEC_SIZE(obj); ++i) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3270 { |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3271 cval = SCHEME_VEC_ELS(obj)[i]; |
4074 | 3272 status = mzscheme_to_vim_impl(cval, v, depth + 1, visited); |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3273 if (status == FAIL) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3274 break; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3275 status = list_append_tv(list, v); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3276 clear_tv(v); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3277 if (status == FAIL) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3278 break; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3279 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3280 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3281 else if (SCHEME_PAIRP(obj) || SCHEME_MUTABLE_PAIRP(obj)) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3282 { |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3283 for (curr = obj; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3284 SCHEME_PAIRP(curr) || SCHEME_MUTABLE_PAIRP(curr); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3285 curr = SCHEME_CDR(curr)) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3286 { |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3287 cval = SCHEME_CAR(curr); |
4074 | 3288 status = mzscheme_to_vim_impl(cval, v, depth + 1, visited); |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3289 if (status == FAIL) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3290 break; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3291 status = list_append_tv(list, v); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3292 clear_tv(v); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3293 if (status == FAIL) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3294 break; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3295 } |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3296 // improper list not terminated with null |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3297 // need to handle the last element |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3298 if (status == OK && !SCHEME_NULLP(curr)) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3299 { |
4074 | 3300 status = mzscheme_to_vim_impl(cval, v, depth + 1, visited); |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3301 if (status == OK) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3302 { |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3303 status = list_append_tv(list, v); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3304 clear_tv(v); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3305 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3306 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3307 } |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3308 // nothing to do for scheme_null |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3309 vim_free(v); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3310 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3311 MZ_GC_UNREG(); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3312 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3313 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3314 else if (SCHEME_HASHTP(obj)) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3315 { |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3316 int i; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3317 dict_T *dict; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3318 Scheme_Object *key = NULL; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3319 Scheme_Object *val = NULL; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3320 |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3321 MZ_GC_DECL_REG(2); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3322 MZ_GC_VAR_IN_REG(0, key); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3323 MZ_GC_VAR_IN_REG(1, val); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3324 MZ_GC_REG(); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3325 |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3326 dict = dict_alloc(); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3327 if (dict == NULL) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3328 status = FAIL; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3329 else |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3330 { |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
3331 typval_T *visited_tv = ALLOC_ONE(typval_T); |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3332 |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3333 tv->v_type = VAR_DICT; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3334 tv->vval.v_dict = dict; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3335 ++dict->dv_refcount; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3336 |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3337 copy_tv(tv, visited_tv); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3338 scheme_hash_set(visited, obj, (Scheme_Object *)visited_tv); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3339 |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3340 for (i = 0; i < ((Scheme_Hash_Table *)obj)->size; ++i) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3341 { |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3342 if (((Scheme_Hash_Table *) obj)->vals[i] != NULL) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3343 { |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3344 // generate item for `display'ed Scheme key |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3345 dictitem_T *item = dictitem_alloc((char_u *)string_to_line( |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3346 ((Scheme_Hash_Table *) obj)->keys[i])); |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3347 // convert Scheme val to Vim and add it to the dict |
4074 | 3348 if (mzscheme_to_vim_impl(((Scheme_Hash_Table *) obj)->vals[i], |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3349 &item->di_tv, depth + 1, visited) == FAIL |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3350 || dict_add(dict, item) == FAIL) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3351 { |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3352 dictitem_free(item); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3353 status = FAIL; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3354 break; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3355 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3356 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3357 |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3358 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3359 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3360 MZ_GC_UNREG(); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3361 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3362 else |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3363 { |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3364 // `display' any other value to string |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3365 tv->v_type = VAR_STRING; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3366 tv->vval.v_string = (char_u *)string_to_line(obj); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3367 } |
4074 | 3368 MZ_GC_UNREG(); |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3369 return status; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3370 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3371 |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3372 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3373 * Scheme prim procedure wrapping Vim funcref |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3374 */ |
4074 | 3375 static Scheme_Object * |
3376 vim_funcref(void *name, int argc, Scheme_Object **argv) | |
3377 { | |
3378 int i; | |
3379 typval_T args; | |
3380 int status = OK; | |
3381 Scheme_Object *result = NULL; | |
3382 list_T *list = list_alloc(); | |
3383 | |
3384 MZ_GC_DECL_REG(1); | |
3385 MZ_GC_VAR_IN_REG(0, result); | |
3386 MZ_GC_REG(); | |
3387 | |
3388 result = scheme_void; | |
3389 if (list == NULL) | |
3390 status = FAIL; | |
3391 else | |
3392 { | |
3393 args.v_type = VAR_LIST; | |
3394 args.vval.v_list = list; | |
3395 ++list->lv_refcount; | |
3396 for (i = 0; status == OK && i < argc; ++i) | |
3397 { | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
3398 typval_T *v = ALLOC_ONE(typval_T); |
4074 | 3399 if (v == NULL) |
3400 status = FAIL; | |
3401 else | |
3402 { | |
3403 status = mzscheme_to_vim(argv[i], v); | |
3404 if (status == OK) | |
3405 { | |
3406 status = list_append_tv(list, v); | |
3407 clear_tv(v); | |
3408 } | |
3409 vim_free(v); | |
3410 } | |
3411 } | |
3412 if (status == OK) | |
3413 { | |
3414 typval_T ret; | |
3415 ret.v_type = VAR_UNKNOWN; | |
3416 | |
3417 mzscheme_call_vim(BYTE_STRING_VALUE((Scheme_Object *)name), &args, &ret); | |
3418 MZ_GC_CHECK(); | |
3419 result = vim_to_mzscheme(&ret); | |
3420 clear_tv(&ret); | |
3421 MZ_GC_CHECK(); | |
3422 } | |
3423 } | |
3424 clear_tv(&args); | |
3425 MZ_GC_UNREG(); | |
3426 if (status != OK) | |
3427 raise_vim_exn(_("error converting Scheme values to Vim")); | |
3428 else | |
3429 raise_if_error(); | |
3430 return result; | |
3431 } | |
3432 | |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3433 void |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3434 do_mzeval(char_u *str, typval_T *rettv) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3435 { |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3436 Scheme_Object *ret = NULL; |
4074 | 3437 |
3438 MZ_GC_DECL_REG(1); | |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3439 MZ_GC_VAR_IN_REG(0, ret); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3440 MZ_GC_REG(); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3441 |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3442 if (mzscheme_init()) |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3443 { |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3444 MZ_GC_UNREG(); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3445 return; |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3446 } |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3447 |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3448 MZ_GC_CHECK(); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3449 if (eval_with_exn_handling(str, do_eval, &ret) == OK) |
4074 | 3450 mzscheme_to_vim(ret, rettv); |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3451 |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3452 MZ_GC_UNREG(); |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2023
diff
changeset
|
3453 } |
1894 | 3454 #endif |
14 | 3455 |
3456 /* | |
3457 * Check to see whether a Vim error has been reported, or a keyboard | |
3458 * interrupt (from vim --> got_int) has been detected. | |
3459 */ | |
3460 static int | |
3461 vim_error_check(void) | |
3462 { | |
3463 return (got_int || did_emsg); | |
3464 } | |
3465 | |
3466 /* | |
3467 * register Scheme exn:vim | |
3468 */ | |
3469 static void | |
1894 | 3470 register_vim_exn(void) |
14 | 3471 { |
1894 | 3472 int nc = 0; |
3473 int i; | |
3474 Scheme_Object *struct_exn = NULL; | |
3475 Scheme_Object *exn_name = NULL; | |
3476 | |
3477 MZ_GC_DECL_REG(2); | |
3478 MZ_GC_VAR_IN_REG(0, struct_exn); | |
3479 MZ_GC_VAR_IN_REG(1, exn_name); | |
3480 MZ_GC_REG(); | |
3481 | |
3482 exn_name = scheme_intern_symbol("exn:vim"); | |
3483 MZ_GC_CHECK(); | |
3484 struct_exn = scheme_builtin_value("struct:exn"); | |
3485 MZ_GC_CHECK(); | |
14 | 3486 |
3487 if (vim_exn == NULL) | |
3488 vim_exn = scheme_make_struct_type(exn_name, | |
1894 | 3489 struct_exn, NULL, 0, 0, NULL, NULL |
14 | 3490 #if MZSCHEME_VERSION_MAJOR >= 299 |
3491 , NULL | |
3492 #endif | |
3493 ); | |
3494 | |
1894 | 3495 |
14 | 3496 { |
1894 | 3497 Scheme_Object **tmp = NULL; |
3498 Scheme_Object *exn_names[5] = {NULL, NULL, NULL, NULL, NULL}; | |
3499 Scheme_Object *exn_values[5] = {NULL, NULL, NULL, NULL, NULL}; | |
3500 MZ_GC_DECL_REG(6); | |
3501 MZ_GC_ARRAY_VAR_IN_REG(0, exn_names, 5); | |
3502 MZ_GC_ARRAY_VAR_IN_REG(3, exn_values, 5); | |
3503 MZ_GC_REG(); | |
3504 | |
3505 tmp = scheme_make_struct_names(exn_name, scheme_null, 0, &nc); | |
3506 mch_memmove(exn_names, tmp, nc * sizeof(Scheme_Object *)); | |
3507 MZ_GC_CHECK(); | |
3508 | |
3509 tmp = scheme_make_struct_values(vim_exn, exn_names, nc, 0); | |
3510 mch_memmove(exn_values, tmp, nc * sizeof(Scheme_Object *)); | |
3511 MZ_GC_CHECK(); | |
3512 | |
3513 for (i = 0; i < nc; i++) | |
3514 { | |
3515 scheme_add_global_symbol(exn_names[i], | |
3516 exn_values[i], environment); | |
3517 MZ_GC_CHECK(); | |
3518 } | |
3519 MZ_GC_UNREG(); | |
14 | 3520 } |
1894 | 3521 MZ_GC_UNREG(); |
14 | 3522 } |
3523 | |
3524 /* | |
3525 * raise exn:vim, may be with additional info string | |
3526 */ | |
3527 void | |
3528 raise_vim_exn(const char *add_info) | |
3529 { | |
1894 | 3530 char *fmt = _("Vim error: ~a"); |
3531 Scheme_Object *argv[2] = {NULL, NULL}; | |
3532 Scheme_Object *exn = NULL; | |
4074 | 3533 Scheme_Object *byte_string = NULL; |
3534 | |
3535 MZ_GC_DECL_REG(5); | |
1894 | 3536 MZ_GC_ARRAY_VAR_IN_REG(0, argv, 2); |
3537 MZ_GC_VAR_IN_REG(3, exn); | |
4074 | 3538 MZ_GC_VAR_IN_REG(4, byte_string); |
1894 | 3539 MZ_GC_REG(); |
14 | 3540 |
3541 if (add_info != NULL) | |
3542 { | |
1894 | 3543 char *c_string = NULL; |
3544 Scheme_Object *info = NULL; | |
3545 | |
3546 MZ_GC_DECL_REG(3); | |
3547 MZ_GC_VAR_IN_REG(0, c_string); | |
3548 MZ_GC_VAR_IN_REG(2, info); | |
3549 MZ_GC_REG(); | |
3550 | |
4074 | 3551 info = scheme_make_byte_string(add_info); |
1894 | 3552 MZ_GC_CHECK(); |
9159
6b003ff07234
commit https://github.com/vim/vim/commit/9b0ac229bcfc91acabd35fc576055a94c1687c32
Christian Brabandt <cb@256bit.org>
parents:
8800
diff
changeset
|
3553 c_string = scheme_format_utf8(fmt, (int)STRLEN(fmt), 1, &info, NULL); |
1894 | 3554 MZ_GC_CHECK(); |
4074 | 3555 byte_string = scheme_make_byte_string(c_string); |
1894 | 3556 MZ_GC_CHECK(); |
3557 argv[0] = scheme_byte_string_to_char_string(byte_string); | |
274 | 3558 SCHEME_SET_IMMUTABLE(argv[0]); |
1894 | 3559 MZ_GC_UNREG(); |
14 | 3560 } |
3561 else | |
4074 | 3562 { |
3563 byte_string = scheme_make_byte_string(_("Vim error")); | |
3564 MZ_GC_CHECK(); | |
3565 argv[0] = scheme_byte_string_to_char_string(byte_string); | |
3566 MZ_GC_CHECK(); | |
3567 } | |
1894 | 3568 MZ_GC_CHECK(); |
14 | 3569 |
1284 | 3570 #if MZSCHEME_VERSION_MAJOR < 360 |
3571 argv[1] = scheme_current_continuation_marks(); | |
1894 | 3572 MZ_GC_CHECK(); |
1284 | 3573 #else |
1125 | 3574 argv[1] = scheme_current_continuation_marks(NULL); |
1894 | 3575 MZ_GC_CHECK(); |
1284 | 3576 #endif |
14 | 3577 |
1894 | 3578 exn = scheme_make_struct_instance(vim_exn, 2, argv); |
3579 MZ_GC_CHECK(); | |
3580 scheme_raise(exn); | |
3581 MZ_GC_UNREG(); | |
14 | 3582 } |
3583 | |
3584 void | |
3585 raise_if_error(void) | |
3586 { | |
3587 if (vim_error_check()) | |
3588 raise_vim_exn(NULL); | |
3589 } | |
3590 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3591 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3592 * get buffer: |
14 | 3593 * either current |
3594 * or passed as argv[argnum] with checks | |
3595 */ | |
3596 static vim_mz_buffer * | |
3597 get_buffer_arg(const char *fname, int argnum, int argc, Scheme_Object **argv) | |
3598 { | |
3599 vim_mz_buffer *b; | |
3600 | |
3601 if (argc < argnum + 1) | |
3602 return get_vim_curr_buffer(); | |
3603 if (!SCHEME_VIMBUFFERP(argv[argnum])) | |
3604 scheme_wrong_type(fname, "vim-buffer", argnum, argc, argv); | |
3605 b = (vim_mz_buffer *)argv[argnum]; | |
3606 (void)get_valid_buffer(argv[argnum]); | |
3607 return b; | |
3608 } | |
3609 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3610 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3611 * get window: |
14 | 3612 * either current |
3613 * or passed as argv[argnum] with checks | |
3614 */ | |
3615 static vim_mz_window * | |
3616 get_window_arg(const char *fname, int argnum, int argc, Scheme_Object **argv) | |
3617 { | |
3618 vim_mz_window *w; | |
3619 | |
3620 if (argc < argnum + 1) | |
3621 return get_vim_curr_window(); | |
3622 w = (vim_mz_window *)argv[argnum]; | |
3623 if (!SCHEME_VIMWINDOWP(argv[argnum])) | |
3624 scheme_wrong_type(fname, "vim-window", argnum, argc, argv); | |
3625 (void)get_valid_window(argv[argnum]); | |
3626 return w; | |
3627 } | |
3628 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3629 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3630 * get valid Vim buffer from Scheme_Object* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3631 */ |
14 | 3632 buf_T *get_valid_buffer(void *obj) |
3633 { | |
3634 buf_T *buf = ((vim_mz_buffer *)obj)->buf; | |
3635 | |
3636 if (buf == INVALID_BUFFER_VALUE) | |
3637 scheme_signal_error(_("buffer is invalid")); | |
3638 return buf; | |
3639 } | |
3640 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3641 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3642 * get valid Vim window from Scheme_Object* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3643 */ |
14 | 3644 win_T *get_valid_window(void *obj) |
3645 { | |
3646 win_T *win = ((vim_mz_window *)obj)->win; | |
3647 if (win == INVALID_WINDOW_VALUE) | |
3648 scheme_signal_error(_("window is invalid")); | |
3649 return win; | |
3650 } | |
3651 | |
3652 int | |
3653 mzthreads_allowed(void) | |
3654 { | |
3655 return mz_threads_allow; | |
3656 } | |
3657 | |
3658 static int | |
3659 line_in_range(linenr_T lnum, buf_T *buf) | |
3660 { | |
3661 return (lnum > 0 && lnum <= buf->b_ml.ml_line_count); | |
3662 } | |
3663 | |
3664 static void | |
3665 check_line_range(linenr_T lnum, buf_T *buf) | |
3666 { | |
3667 if (!line_in_range(lnum, buf)) | |
3668 scheme_signal_error(_("linenr out of range")); | |
3669 } | |
3670 | |
3671 /* | |
3672 * Check if deleting lines made the cursor position invalid | |
3673 * (or you'll get msg from Vim about invalid linenr). | |
3674 * Changed the lines from "lo" to "hi" and added "extra" lines (negative if | |
3675 * deleted). Got from if_python.c | |
3676 */ | |
3677 static void | |
3678 mz_fix_cursor(int lo, int hi, int extra) | |
3679 { | |
3680 if (curwin->w_cursor.lnum >= lo) | |
3681 { | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3682 // Adjust the cursor position if it's in/after the changed |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3683 // lines. |
14 | 3684 if (curwin->w_cursor.lnum >= hi) |
3685 { | |
3686 curwin->w_cursor.lnum += extra; | |
3687 check_cursor_col(); | |
3688 } | |
3689 else if (extra < 0) | |
3690 { | |
3691 curwin->w_cursor.lnum = lo; | |
3692 check_cursor(); | |
3693 } | |
1894 | 3694 else |
3695 check_cursor_col(); | |
14 | 3696 changed_cline_bef_curs(); |
3697 } | |
3698 invalidate_botline(); | |
3699 } | |
3700 | |
3701 static Vim_Prim prims[]= | |
3702 { | |
3703 /* | |
3704 * Buffer-related commands | |
3705 */ | |
3706 {get_buffer_line, "get-buff-line", 1, 2}, | |
3707 {set_buffer_line, "set-buff-line", 2, 3}, | |
3708 {get_buffer_line_list, "get-buff-line-list", 2, 3}, | |
3709 {get_buffer_name, "get-buff-name", 0, 1}, | |
3710 {get_buffer_num, "get-buff-num", 0, 1}, | |
3711 {get_buffer_size, "get-buff-size", 0, 1}, | |
3712 {set_buffer_line_list, "set-buff-line-list", 3, 4}, | |
3713 {insert_buffer_line_list, "insert-buff-line-list", 2, 3}, | |
3714 {get_curr_buffer, "curr-buff", 0, 0}, | |
3715 {get_buffer_count, "buff-count", 0, 0}, | |
3716 {get_next_buffer, "get-next-buff", 0, 1}, | |
3717 {get_prev_buffer, "get-prev-buff", 0, 1}, | |
3718 {mzscheme_open_buffer, "open-buff", 1, 1}, | |
3719 {get_buffer_by_name, "get-buff-by-name", 1, 1}, | |
3720 {get_buffer_by_num, "get-buff-by-num", 1, 1}, | |
3721 /* | |
3722 * Window-related commands | |
3723 */ | |
3724 {get_curr_win, "curr-win", 0, 0}, | |
3725 {get_window_count, "win-count", 0, 0}, | |
3726 {get_window_by_num, "get-win-by-num", 1, 1}, | |
3727 {get_window_num, "get-win-num", 0, 1}, | |
3728 {get_window_buffer, "get-win-buffer", 0, 1}, | |
3729 {get_window_height, "get-win-height", 0, 1}, | |
3730 {set_window_height, "set-win-height", 1, 2}, | |
3731 {get_window_width, "get-win-width", 0, 1}, | |
3732 {set_window_width, "set-win-width", 1, 2}, | |
3733 {get_cursor, "get-cursor", 0, 1}, | |
3734 {set_cursor, "set-cursor", 1, 2}, | |
3735 {get_window_list, "get-win-list", 0, 1}, | |
3736 /* | |
3737 * Vim-related commands | |
3738 */ | |
3739 {vim_command, "command", 1, 1}, | |
3740 {vim_eval, "eval", 1, 1}, | |
3741 {get_range_start, "range-start", 0, 0}, | |
3742 {get_range_end, "range-end", 0, 0}, | |
3743 {mzscheme_beep, "beep", 0, 0}, | |
3744 {get_option, "get-option", 1, 2}, | |
3745 {set_option, "set-option", 1, 2}, | |
3746 /* | |
3747 * small utilities | |
3748 */ | |
3749 {vim_bufferp, "buff?", 1, 1}, | |
3750 {vim_windowp, "win?", 1, 1}, | |
3751 {vim_buffer_validp, "buff-valid?", 1, 1}, | |
3752 {vim_window_validp, "win-valid?", 1, 1} | |
3753 }; | |
3754 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3755 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3756 * return MzScheme wrapper for curbuf |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3757 */ |
14 | 3758 static vim_mz_buffer * |
3759 get_vim_curr_buffer(void) | |
3760 { | |
502 | 3761 if (curbuf->b_mzscheme_ref == NULL) |
14 | 3762 return (vim_mz_buffer *)buffer_new(curbuf); |
3763 else | |
4074 | 3764 return BUFFER_REF(curbuf); |
14 | 3765 } |
3766 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3767 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3768 * return MzScheme wrapper for curwin |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3769 */ |
14 | 3770 static vim_mz_window * |
3771 get_vim_curr_window(void) | |
3772 { | |
502 | 3773 if (curwin->w_mzscheme_ref == NULL) |
14 | 3774 return (vim_mz_window *)window_new(curwin); |
3775 else | |
4074 | 3776 return WINDOW_REF(curwin); |
14 | 3777 } |
3778 | |
3779 static void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7813
diff
changeset
|
3780 make_modules(void) |
14 | 3781 { |
1894 | 3782 int i; |
3783 Scheme_Env *mod = NULL; | |
3784 Scheme_Object *vimext_symbol = NULL; | |
3785 Scheme_Object *closed_prim = NULL; | |
3786 | |
3787 MZ_GC_DECL_REG(3); | |
3788 MZ_GC_VAR_IN_REG(0, mod); | |
3789 MZ_GC_VAR_IN_REG(1, vimext_symbol); | |
3790 MZ_GC_VAR_IN_REG(2, closed_prim); | |
3791 MZ_GC_REG(); | |
3792 | |
3793 vimext_symbol = scheme_intern_symbol("vimext"); | |
3794 MZ_GC_CHECK(); | |
3795 mod = scheme_primitive_module(vimext_symbol, environment); | |
3796 MZ_GC_CHECK(); | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3797 // all prims made closed so they can access their own names |
24768
7334bf933510
patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
3798 for (i = 0; i < (int)ARRAY_LENGTH(prims); i++) |
14 | 3799 { |
3800 Vim_Prim *prim = prims + i; | |
1894 | 3801 closed_prim = scheme_make_closed_prim_w_arity(prim->prim, prim, prim->name, |
3802 prim->mina, prim->maxa); | |
3803 scheme_add_global(prim->name, closed_prim, mod); | |
3804 MZ_GC_CHECK(); | |
14 | 3805 } |
3806 scheme_finish_primitive_module(mod); | |
1894 | 3807 MZ_GC_CHECK(); |
3808 MZ_GC_UNREG(); | |
14 | 3809 } |
344 | 3810 |
274 | 3811 #ifdef HAVE_SANDBOX |
3812 static Scheme_Object *M_write = NULL; | |
3813 static Scheme_Object *M_read = NULL; | |
3814 static Scheme_Object *M_execute = NULL; | |
3815 static Scheme_Object *M_delete = NULL; | |
3816 | |
3817 static void | |
1125 | 3818 sandbox_check(void) |
274 | 3819 { |
3820 if (sandbox) | |
3821 raise_vim_exn(_("not allowed in the Vim sandbox")); | |
3822 } | |
3823 | |
18798
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3824 /* |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3825 * security guards to force Vim's sandbox restrictions on MzScheme level |
f0f9692d4487
patch 8.1.2387: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
3826 */ |
274 | 3827 static Scheme_Object * |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
3828 sandbox_file_guard(int argc UNUSED, Scheme_Object **argv) |
274 | 3829 { |
3830 if (sandbox) | |
3831 { | |
3832 Scheme_Object *requested_access = argv[2]; | |
3833 | |
3834 if (M_write == NULL) | |
3835 { | |
3836 MZ_REGISTER_STATIC(M_write); | |
3837 M_write = scheme_intern_symbol("write"); | |
1894 | 3838 MZ_GC_CHECK(); |
274 | 3839 } |
3840 if (M_read == NULL) | |
3841 { | |
3842 MZ_REGISTER_STATIC(M_read); | |
3843 M_read = scheme_intern_symbol("read"); | |
1894 | 3844 MZ_GC_CHECK(); |
274 | 3845 } |
3846 if (M_execute == NULL) | |
3847 { | |
3848 MZ_REGISTER_STATIC(M_execute); | |
3849 M_execute = scheme_intern_symbol("execute"); | |
1894 | 3850 MZ_GC_CHECK(); |
274 | 3851 } |
3852 if (M_delete == NULL) | |
3853 { | |
3854 MZ_REGISTER_STATIC(M_delete); | |
3855 M_delete = scheme_intern_symbol("delete"); | |
1894 | 3856 MZ_GC_CHECK(); |
274 | 3857 } |
3858 | |
3859 while (!SCHEME_NULLP(requested_access)) | |
3860 { | |
3861 Scheme_Object *item = SCHEME_CAR(requested_access); | |
3862 if (scheme_eq(item, M_write) || scheme_eq(item, M_read) | |
3863 || scheme_eq(item, M_execute) || scheme_eq(item, M_delete)) | |
3864 raise_vim_exn(_("not allowed in the Vim sandbox")); | |
3865 requested_access = SCHEME_CDR(requested_access); | |
3866 } | |
3867 } | |
3868 return scheme_void; | |
3869 } | |
3870 | |
3871 static Scheme_Object * | |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2050
diff
changeset
|
3872 sandbox_network_guard(int argc UNUSED, Scheme_Object **argv UNUSED) |
274 | 3873 { |
3874 return scheme_void; | |
3875 } | |
3876 #endif | |
800 | 3877 |
3878 #endif |