blob: 09dd3de57506f10fea11059fed54d9a62731cada [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002 *
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003 * MzScheme interface by Sergey Khorev <sergey.khorev@gmail.com>
Bram Moolenaar75676462013-01-30 14:55:42 +01004 * Based on work by Brent Fulgham <bfulgham@debian.org>
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005 * (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.
Bram Moolenaar9e70cf12009-05-26 20:59:55 +000021 * 3. I don't use K&R-style functions. Anyways, MzScheme headers are ANSI.
Bram Moolenaar325b7a22004-07-05 15:58:32 +000022 */
23
Bram Moolenaar325b7a22004-07-05 15:58:32 +000024#include "vim.h"
Bram Moolenaar049377e2007-05-12 15:32:12 +000025
Bram Moolenaar325b7a22004-07-05 15:58:32 +000026#include "if_mzsch.h"
27
Bram Moolenaar2ab2e862019-12-04 21:24:53 +010028// Only do the following when the feature is enabled. Needed for "make
29// depend".
Bram Moolenaar76b92b22006-03-24 22:46:53 +000030#if defined(FEAT_MZSCHEME) || defined(PROTO)
31
Bram Moolenaar4349c572016-01-30 13:28:28 +010032#ifdef PROTO
33typedef int Scheme_Object;
34typedef int Scheme_Closed_Prim;
35typedef int Scheme_Env;
36typedef int Scheme_Hash_Table;
37typedef int Scheme_Type;
38typedef int Scheme_Thread;
39typedef int Scheme_Closed_Prim;
40typedef int mzshort;
41typedef int Scheme_Prim;
42typedef int HINSTANCE;
43#endif
44
Bram Moolenaar4e640bd2016-01-16 16:20:38 +010045/*
46 * scheme_register_tls_space is only available on 32-bit Windows until
47 * racket-6.3. See
48 * http://docs.racket-lang.org/inside/im_memoryalloc.html?q=scheme_register_tls_space
49 */
Bram Moolenaar4f974752019-02-17 17:44:42 +010050#if MZSCHEME_VERSION_MAJOR >= 500 && defined(MSWIN) \
Bram Moolenaar4e640bd2016-01-16 16:20:38 +010051 && defined(USE_THREAD_LOCAL) \
52 && (!defined(_WIN64) || MZSCHEME_VERSION_MAJOR >= 603)
53# define HAVE_TLS_SPACE 1
54#endif
55
56/*
57 * Since version 4.x precise GC requires trampolined startup.
58 * Futures and places in version 5.x need it too.
59 */
60#if defined(MZ_PRECISE_GC) && MZSCHEME_VERSION_MAJOR >= 400 \
61 || MZSCHEME_VERSION_MAJOR >= 500 \
62 && (defined(MZ_USE_FUTURES) || defined(MZ_USE_PLACES))
63# define TRAMPOLINED_MZVIM_STARTUP
64#endif
65
Bram Moolenaar2ab2e862019-12-04 21:24:53 +010066// Base data structures
Bram Moolenaar325b7a22004-07-05 15:58:32 +000067#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
70typedef struct
71{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +000072 Scheme_Object so;
Bram Moolenaar325b7a22004-07-05 15:58:32 +000073 buf_T *buf;
Bram Moolenaar325b7a22004-07-05 15:58:32 +000074} vim_mz_buffer;
75
76#define INVALID_BUFFER_VALUE ((buf_T *)(-1))
77
78typedef struct
79{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +000080 Scheme_Object so;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000081 win_T *win;
Bram Moolenaar325b7a22004-07-05 15:58:32 +000082} vim_mz_window;
83
84#define INVALID_WINDOW_VALUE ((win_T *)(-1))
85
86/*
87 * Prims that form MzScheme Vim interface
88 */
89typedef struct
90{
91 Scheme_Closed_Prim *prim;
92 char *name;
Bram Moolenaar2ab2e862019-12-04 21:24:53 +010093 int mina; // arity information
Bram Moolenaar325b7a22004-07-05 15:58:32 +000094 int maxa;
95} Vim_Prim;
96
97typedef struct
98{
99 char *name;
100 Scheme_Object *port;
101} Port_Info;
102
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000103/*
104 *========================================================================
105 * Vim-Control Commands
106 *========================================================================
107 */
108/*
109 *========================================================================
110 * Utility functions for the vim/mzscheme interface
111 *========================================================================
112 */
Bram Moolenaar555b2802005-05-19 21:08:39 +0000113#ifdef HAVE_SANDBOX
114static Scheme_Object *sandbox_file_guard(int, Scheme_Object **);
115static Scheme_Object *sandbox_network_guard(int, Scheme_Object **);
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000116static void sandbox_check(void);
Bram Moolenaar555b2802005-05-19 21:08:39 +0000117#endif
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100118// Buffer-related commands
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000119static Scheme_Object *buffer_new(buf_T *buf);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000120static Scheme_Object *get_buffer_by_num(void *, int, Scheme_Object **);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000121static vim_mz_buffer *get_vim_curr_buffer(void);
122
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100123// Window-related commands
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000124static Scheme_Object *window_new(win_T *win);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000125static vim_mz_window *get_vim_curr_window(void);
126
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000127/*
128 *========================================================================
129 * Internal Function Prototypes
130 *========================================================================
131 */
132static int vim_error_check(void);
133static int do_mzscheme_command(exarg_T *, void *, Scheme_Closed_Prim *what);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100134static int startup_mzscheme(void);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000135static char *string_to_line(Scheme_Object *obj);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100136#if MZSCHEME_VERSION_MAJOR >= 501
Bram Moolenaar75676462013-01-30 14:55:42 +0100137# define OUTPUT_LEN_TYPE intptr_t
138#else
139# define OUTPUT_LEN_TYPE long
140#endif
141static void do_output(char *mesg, OUTPUT_LEN_TYPE len);
Bram Moolenaar952d9d82021-08-02 18:07:18 +0200142static void do_printf(char *format, ...) ATTRIBUTE_FORMAT_PRINTF(1, 2);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000143static void do_flush(void);
144static Scheme_Object *_apply_thunk_catch_exceptions(
145 Scheme_Object *, Scheme_Object **);
146static Scheme_Object *extract_exn_message(Scheme_Object *v);
147static Scheme_Object *do_eval(void *, int noargc, Scheme_Object **noargv);
148static Scheme_Object *do_load(void *, int noargc, Scheme_Object **noargv);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000149static void register_vim_exn(void);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000150static vim_mz_buffer *get_buffer_arg(const char *fname, int argnum,
151 int argc, Scheme_Object **argv);
152static vim_mz_window *get_window_arg(const char *fname, int argnum,
153 int argc, Scheme_Object **argv);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000154static int line_in_range(linenr_T, buf_T *);
155static void check_line_range(linenr_T, buf_T *);
156static void mz_fix_cursor(int lo, int hi, int extra);
157
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000158static int eval_with_exn_handling(void *, Scheme_Closed_Prim *,
159 Scheme_Object **ret);
160static void make_modules(void);
161static void init_exn_catching_apply(void);
162static int mzscheme_env_main(Scheme_Env *env, int argc, char **argv);
163static int mzscheme_init(void);
164#ifdef FEAT_EVAL
Bram Moolenaar75676462013-01-30 14:55:42 +0100165static Scheme_Object *vim_to_mzscheme(typval_T *vim_value);
166static Scheme_Object *vim_to_mzscheme_impl(typval_T *vim_value, int depth,
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000167 Scheme_Hash_Table *visited);
Bram Moolenaar75676462013-01-30 14:55:42 +0100168static int mzscheme_to_vim(Scheme_Object *obj, typval_T *tv);
169static int mzscheme_to_vim_impl(Scheme_Object *obj, typval_T *tv, int depth,
Bram Moolenaar7e506b62010-01-19 15:55:06 +0100170 Scheme_Hash_Table *visited);
Bram Moolenaar75676462013-01-30 14:55:42 +0100171static Scheme_Object *vim_funcref(void *data, int argc, Scheme_Object **argv);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000172#endif
173
174#ifdef MZ_PRECISE_GC
Bram Moolenaar64404472010-06-26 06:24:45 +0200175static int buffer_size_proc(void *obj UNUSED)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000176{
177 return gcBYTES_TO_WORDS(sizeof(vim_mz_buffer));
178}
179static int buffer_mark_proc(void *obj)
180{
181 return buffer_size_proc(obj);
182}
183static int buffer_fixup_proc(void *obj)
184{
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100185 // apparently not needed as the object will be uncollectable while
186 // the buffer is alive
187 // vim_mz_buffer* buf = (vim_mz_buffer*) obj;
188 // buf->buf->b_mzscheme_ref = GC_fixup_self(obj);
189
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000190 return buffer_size_proc(obj);
191}
Bram Moolenaar64404472010-06-26 06:24:45 +0200192static int window_size_proc(void *obj UNUSED)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000193{
194 return gcBYTES_TO_WORDS(sizeof(vim_mz_window));
195}
196static int window_mark_proc(void *obj)
197{
198 return window_size_proc(obj);
199}
200static int window_fixup_proc(void *obj)
201{
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100202 // apparently not needed as the object will be uncollectable while
203 // the window is alive
204 // vim_mz_window* win = (vim_mz_window*) obj;
205 // win->win->w_mzscheme_ref = GC_fixup_self(obj);
206 //
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000207 return window_size_proc(obj);
208}
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100209// with precise GC, w_mzscheme_ref and b_mzscheme_ref are immobile boxes
210// containing pointers to a window/buffer
211// with conservative GC these are simply pointers
Bram Moolenaar75676462013-01-30 14:55:42 +0100212# 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)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000217#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000218
Bram Moolenaar4349c572016-01-30 13:28:28 +0100219#if defined(DYNAMIC_MZSCHEME) || defined(PROTO)
Bram Moolenaar33570922005-01-25 22:26:29 +0000220static Scheme_Object *dll_scheme_eof;
221static Scheme_Object *dll_scheme_false;
222static Scheme_Object *dll_scheme_void;
223static Scheme_Object *dll_scheme_null;
224static Scheme_Object *dll_scheme_true;
225
226static Scheme_Thread **dll_scheme_current_thread_ptr;
227
228static void (**dll_scheme_console_printf_ptr)(char *str, ...);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100229static void (**dll_scheme_console_output_ptr)(char *str, OUTPUT_LEN_TYPE len);
Bram Moolenaar33570922005-01-25 22:26:29 +0000230static void (**dll_scheme_notify_multithread_ptr)(int on);
231
232static void *(*dll_GC_malloc)(size_t size_in_bytes);
233static void *(*dll_GC_malloc_atomic)(size_t size_in_bytes);
234static Scheme_Env *(*dll_scheme_basic_env)(void);
235static void (*dll_scheme_check_threads)(void);
236static void (*dll_scheme_register_static)(void *ptr, long size);
237static void (*dll_scheme_set_stack_base)(void *base, int no_auto_statics);
238static void (*dll_scheme_add_global)(const char *name, Scheme_Object *val,
239 Scheme_Env *env);
240static void (*dll_scheme_add_global_symbol)(Scheme_Object *name,
241 Scheme_Object *val, Scheme_Env *env);
242static Scheme_Object *(*dll_scheme_apply)(Scheme_Object *rator, int num_rands,
243 Scheme_Object **rands);
244static Scheme_Object *(*dll_scheme_builtin_value)(const char *name);
Bram Moolenaar555b2802005-05-19 21:08:39 +0000245# if MZSCHEME_VERSION_MAJOR >= 299
246static Scheme_Object *(*dll_scheme_byte_string_to_char_string)(Scheme_Object *s);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100247static Scheme_Object *(*dll_scheme_make_path)(const char *chars);
Bram Moolenaar555b2802005-05-19 21:08:39 +0000248# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000249static void (*dll_scheme_close_input_port)(Scheme_Object *port);
250static void (*dll_scheme_count_lines)(Scheme_Object *port);
Bram Moolenaar049377e2007-05-12 15:32:12 +0000251#if MZSCHEME_VERSION_MAJOR < 360
Bram Moolenaar33570922005-01-25 22:26:29 +0000252static Scheme_Object *(*dll_scheme_current_continuation_marks)(void);
Bram Moolenaar049377e2007-05-12 15:32:12 +0000253#else
254static Scheme_Object *(*dll_scheme_current_continuation_marks)(Scheme_Object *prompt_tag);
255#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000256static void (*dll_scheme_display)(Scheme_Object *obj, Scheme_Object *port);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100257static char *(*dll_scheme_display_to_string)(Scheme_Object *obj, OUTPUT_LEN_TYPE *len);
Bram Moolenaar555b2802005-05-19 21:08:39 +0000258static int (*dll_scheme_eq)(Scheme_Object *obj1, Scheme_Object *obj2);
Bram Moolenaar33570922005-01-25 22:26:29 +0000259static Scheme_Object *(*dll_scheme_do_eval)(Scheme_Object *obj,
260 int _num_rands, Scheme_Object **rands, int val);
261static void (*dll_scheme_dont_gc_ptr)(void *p);
262static Scheme_Object *(*dll_scheme_eval)(Scheme_Object *obj, Scheme_Env *env);
263static Scheme_Object *(*dll_scheme_eval_string)(const char *str,
264 Scheme_Env *env);
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000265static Scheme_Object *(*dll_scheme_eval_string_all)(const char *str,
Bram Moolenaar33570922005-01-25 22:26:29 +0000266 Scheme_Env *env, int all);
267static void (*dll_scheme_finish_primitive_module)(Scheme_Env *env);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000268# if MZSCHEME_VERSION_MAJOR < 299
Bram Moolenaar33570922005-01-25 22:26:29 +0000269static char *(*dll_scheme_format)(char *format, int flen, int argc,
270 Scheme_Object **argv, long *rlen);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000271# else
272static char *(*dll_scheme_format_utf8)(char *format, int flen, int argc,
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100273 Scheme_Object **argv, OUTPUT_LEN_TYPE *rlen);
Bram Moolenaar555b2802005-05-19 21:08:39 +0000274static Scheme_Object *(*dll_scheme_get_param)(Scheme_Config *c, int pos);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000275# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000276static void (*dll_scheme_gc_ptr_ok)(void *p);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000277# if MZSCHEME_VERSION_MAJOR < 299
Bram Moolenaar33570922005-01-25 22:26:29 +0000278static char *(*dll_scheme_get_sized_string_output)(Scheme_Object *,
279 long *len);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000280# else
281static char *(*dll_scheme_get_sized_byte_string_output)(Scheme_Object *,
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100282 OUTPUT_LEN_TYPE *len);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000283# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000284static Scheme_Object *(*dll_scheme_intern_symbol)(const char *name);
285static Scheme_Object *(*dll_scheme_lookup_global)(Scheme_Object *symbol,
286 Scheme_Env *env);
287static Scheme_Object *(*dll_scheme_make_closed_prim_w_arity)
288 (Scheme_Closed_Prim *prim, void *data, const char *name, mzshort mina,
289 mzshort maxa);
290static Scheme_Object *(*dll_scheme_make_integer_value)(long i);
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000291static Scheme_Object *(*dll_scheme_make_pair)(Scheme_Object *car,
Bram Moolenaar33570922005-01-25 22:26:29 +0000292 Scheme_Object *cdr);
Bram Moolenaar555b2802005-05-19 21:08:39 +0000293static Scheme_Object *(*dll_scheme_make_prim_w_arity)(Scheme_Prim *prim,
294 const char *name, mzshort mina, mzshort maxa);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000295# if MZSCHEME_VERSION_MAJOR < 299
Bram Moolenaar33570922005-01-25 22:26:29 +0000296static Scheme_Object *(*dll_scheme_make_string)(const char *chars);
297static Scheme_Object *(*dll_scheme_make_string_output_port)();
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000298# else
299static Scheme_Object *(*dll_scheme_make_byte_string)(const char *chars);
300static Scheme_Object *(*dll_scheme_make_byte_string_output_port)();
301# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000302static Scheme_Object *(*dll_scheme_make_struct_instance)(Scheme_Object *stype,
303 int argc, Scheme_Object **argv);
304static Scheme_Object **(*dll_scheme_make_struct_names)(Scheme_Object *base,
305 Scheme_Object *field_names, int flags, int *count_out);
306static 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,
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000309 Scheme_Object *properties
310# if MZSCHEME_VERSION_MAJOR >= 299
311 , Scheme_Object *guard
312# endif
313 );
Bram Moolenaar33570922005-01-25 22:26:29 +0000314static Scheme_Object **(*dll_scheme_make_struct_values)(
315 Scheme_Object *struct_type, Scheme_Object **names, int count,
316 int flags);
317static Scheme_Type (*dll_scheme_make_type)(const char *name);
318static Scheme_Object *(*dll_scheme_make_vector)(int size,
319 Scheme_Object *fill);
320static void *(*dll_scheme_malloc_fail_ok)(void *(*f)(size_t), size_t);
321static Scheme_Object *(*dll_scheme_open_input_file)(const char *name,
322 const char *who);
323static Scheme_Env *(*dll_scheme_primitive_module)(Scheme_Object *name,
324 Scheme_Env *for_env);
325static int (*dll_scheme_proper_list_length)(Scheme_Object *list);
326static void (*dll_scheme_raise)(Scheme_Object *exn);
327static Scheme_Object *(*dll_scheme_read)(Scheme_Object *port);
328static void (*dll_scheme_signal_error)(const char *msg, ...);
329static void (*dll_scheme_wrong_type)(const char *name, const char *expected,
330 int which, int argc, Scheme_Object **argv);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000331# if MZSCHEME_VERSION_MAJOR >= 299
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000332static void (*dll_scheme_set_param)(Scheme_Config *c, int pos,
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000333 Scheme_Object *o);
334static Scheme_Config *(*dll_scheme_current_config)(void);
335static Scheme_Object *(*dll_scheme_char_string_to_byte_string)
336 (Scheme_Object *s);
Bram Moolenaare2a49d82007-07-06 17:43:08 +0000337static Scheme_Object *(*dll_scheme_char_string_to_path)
338 (Scheme_Object *s);
Bram Moolenaar75676462013-01-30 14:55:42 +0100339static void *(*dll_scheme_set_collects_path)(Scheme_Object *p);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000340# endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000341static Scheme_Hash_Table *(*dll_scheme_make_hash_table)(int type);
342static void (*dll_scheme_hash_set)(Scheme_Hash_Table *table,
343 Scheme_Object *key, Scheme_Object *value);
344static Scheme_Object *(*dll_scheme_hash_get)(Scheme_Hash_Table *table,
345 Scheme_Object *key);
346static Scheme_Object *(*dll_scheme_make_double)(double d);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000347static Scheme_Object *(*dll_scheme_make_sized_byte_string)(char *chars,
348 long len, int copy);
349static Scheme_Object *(*dll_scheme_namespace_require)(Scheme_Object *req);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100350static 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);
351# ifdef MZ_PRECISE_GC
352static void *(*dll_GC_malloc_one_tagged)(size_t size_in_bytes);
353static void (*dll_GC_register_traversers)(short tag, Size_Proc size, Mark_Proc mark, Fixup_Proc fixup, int is_constant_size, int is_atomic);
354# endif
355# if MZSCHEME_VERSION_MAJOR >= 400
356static void (*dll_scheme_init_collection_paths)(Scheme_Env *global_env, Scheme_Object *extra_dirs);
357static void **(*dll_scheme_malloc_immobile_box)(void *p);
358static void (*dll_scheme_free_immobile_box)(void **b);
359# endif
360# if MZSCHEME_VERSION_MAJOR >= 500
361# ifdef TRAMPOLINED_MZVIM_STARTUP
362static int (*dll_scheme_main_setup)(int no_auto_statics, Scheme_Env_Main _main, int argc, char **argv);
363# if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || MZSCHEME_VERSION_MAJOR >= 603
364static void (*dll_scheme_register_tls_space)(void *tls_space, int _tls_index);
365# endif
366# endif
367# if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || defined(IMPLEMENT_THREAD_LOCAL_EXTERNALLY_VIA_PROC)
368static Thread_Local_Variables *(*dll_scheme_external_get_thread_local_variables)(void);
369# endif
370# endif
371# if MZSCHEME_VERSION_MAJOR >= 600
372static void (*dll_scheme_embedded_load)(intptr_t len, const char *s, int predefined);
373static void (*dll_scheme_register_embedded_load)(intptr_t len, const char *s);
374static void (*dll_scheme_set_config_path)(Scheme_Object *p);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000375# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000376
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100377#if defined(DYNAMIC_MZSCHEME) // not when defined(PROTO)
Bram Moolenaar4349c572016-01-30 13:28:28 +0100378
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100379// arrays are imported directly
Bram Moolenaar33570922005-01-25 22:26:29 +0000380# 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
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100386// pointers are GetProceAddress'ed as pointers to pointer
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100387#if !defined(USE_THREAD_LOCAL) && !defined(LINK_EXTENSIONS_BY_TABLE)
388# define scheme_current_thread (*dll_scheme_current_thread_ptr)
389# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000390# 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
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100394// and functions in a usual way
Bram Moolenaar33570922005-01-25 22:26:29 +0000395# 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
Bram Moolenaar555b2802005-05-19 21:08:39 +0000403# if MZSCHEME_VERSION_MAJOR >= 299
404# define scheme_byte_string_to_char_string dll_scheme_byte_string_to_char_string
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100405# define scheme_make_path dll_scheme_make_path
Bram Moolenaar555b2802005-05-19 21:08:39 +0000406# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000407# 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
Bram Moolenaar555b2802005-05-19 21:08:39 +0000416# define scheme_eq dll_scheme_eq
Bram Moolenaar33570922005-01-25 22:26:29 +0000417# 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
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000421# 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
Bram Moolenaar33570922005-01-25 22:26:29 +0000426# define scheme_gc_ptr_ok dll_scheme_gc_ptr_ok
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000427# if MZSCHEME_VERSION_MAJOR < 299
Bram Moolenaar75676462013-01-30 14:55:42 +0100428# define scheme_get_sized_byte_string_output dll_scheme_get_sized_string_output
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000429# else
430# define scheme_get_sized_byte_string_output \
431 dll_scheme_get_sized_byte_string_output
Bram Moolenaar75676462013-01-30 14:55:42 +0100432# define scheme_get_param dll_scheme_get_param
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000433# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000434# 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
Bram Moolenaar33570922005-01-25 22:26:29 +0000438# define scheme_make_pair dll_scheme_make_pair
Bram Moolenaar555b2802005-05-19 21:08:39 +0000439# define scheme_make_prim_w_arity dll_scheme_make_prim_w_arity
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000440# if MZSCHEME_VERSION_MAJOR < 299
Bram Moolenaar75676462013-01-30 14:55:42 +0100441# define scheme_make_byte_string dll_scheme_make_string
442# define scheme_make_byte_string_output_port dll_scheme_make_string_output_port
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000443# 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
Bram Moolenaar33570922005-01-25 22:26:29 +0000448# 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
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000464# 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
Bram Moolenaare2a49d82007-07-06 17:43:08 +0000469# define scheme_char_string_to_path \
470 dll_scheme_char_string_to_path
Bram Moolenaar75676462013-01-30 14:55:42 +0100471# define scheme_set_collects_path dll_scheme_set_collects_path
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000472# endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000473# 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
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100477# define scheme_make_sized_byte_string dll_scheme_make_sized_byte_string
478# define scheme_namespace_require dll_scheme_namespace_require
479# define scheme_dynamic_wind dll_scheme_dynamic_wind
480# ifdef MZ_PRECISE_GC
481# define GC_malloc_one_tagged dll_GC_malloc_one_tagged
482# define GC_register_traversers dll_GC_register_traversers
483# endif
484# if MZSCHEME_VERSION_MAJOR >= 400
485# ifdef TRAMPOLINED_MZVIM_STARTUP
486# define scheme_main_setup dll_scheme_main_setup
487# if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || MZSCHEME_VERSION_MAJOR >= 603
488# define scheme_register_tls_space dll_scheme_register_tls_space
489# endif
490# endif
491# define scheme_init_collection_paths dll_scheme_init_collection_paths
492# define scheme_malloc_immobile_box dll_scheme_malloc_immobile_box
493# define scheme_free_immobile_box dll_scheme_free_immobile_box
494# endif
495# if MZSCHEME_VERSION_MAJOR >= 600
496# define scheme_embedded_load dll_scheme_embedded_load
497# define scheme_register_embedded_load dll_scheme_register_embedded_load
498# define scheme_set_config_path dll_scheme_set_config_path
499# endif
500
501# if MZSCHEME_VERSION_MAJOR >= 500
502# if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || defined(IMPLEMENT_THREAD_LOCAL_EXTERNALLY_VIA_PROC)
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100503// define as function for macro in schthread.h
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100504Thread_Local_Variables *
505scheme_external_get_thread_local_variables(void)
506{
507 return dll_scheme_external_get_thread_local_variables();
508}
509# endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000510# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000511
Bram Moolenaar4349c572016-01-30 13:28:28 +0100512#endif
513
Bram Moolenaar33570922005-01-25 22:26:29 +0000514typedef struct
515{
516 char *name;
517 void **ptr;
518} Thunk_Info;
519
520static Thunk_Info mzgc_imports[] = {
521 {"GC_malloc", (void **)&dll_GC_malloc},
522 {"GC_malloc_atomic", (void **)&dll_GC_malloc_atomic},
523 {NULL, NULL}};
524
525static 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},
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100531#if !defined(USE_THREAD_LOCAL) && !defined(LINK_EXTENSIONS_BY_TABLE)
Bram Moolenaar33570922005-01-25 22:26:29 +0000532 {"scheme_current_thread", (void **)&dll_scheme_current_thread_ptr},
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100533#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000534 {"scheme_console_printf", (void **)&dll_scheme_console_printf_ptr},
535 {"scheme_console_output", (void **)&dll_scheme_console_output_ptr},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000536 {"scheme_notify_multithread",
Bram Moolenaar33570922005-01-25 22:26:29 +0000537 (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},
Bram Moolenaar555b2802005-05-19 21:08:39 +0000542# if MZSCHEME_VERSION_MAJOR >= 299
543 {"scheme_byte_string_to_char_string", (void **)&dll_scheme_byte_string_to_char_string},
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100544 {"scheme_make_path", (void **)&dll_scheme_make_path},
Bram Moolenaar555b2802005-05-19 21:08:39 +0000545# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000546 {"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},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000550 {"scheme_current_continuation_marks",
Bram Moolenaar33570922005-01-25 22:26:29 +0000551 (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},
Bram Moolenaar555b2802005-05-19 21:08:39 +0000556 {"scheme_eq", (void **)&dll_scheme_eq},
Bram Moolenaar33570922005-01-25 22:26:29 +0000557 {"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},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000560 {"scheme_finish_primitive_module",
Bram Moolenaar33570922005-01-25 22:26:29 +0000561 (void **)&dll_scheme_finish_primitive_module},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000562# if MZSCHEME_VERSION_MAJOR < 299
Bram Moolenaar33570922005-01-25 22:26:29 +0000563 {"scheme_format", (void **)&dll_scheme_format},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000564# else
565 {"scheme_format_utf8", (void **)&dll_scheme_format_utf8},
Bram Moolenaar555b2802005-05-19 21:08:39 +0000566 {"scheme_get_param", (void **)&dll_scheme_get_param},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000567#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000568 {"scheme_gc_ptr_ok", (void **)&dll_scheme_gc_ptr_ok},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000569# if MZSCHEME_VERSION_MAJOR < 299
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000570 {"scheme_get_sized_string_output",
Bram Moolenaar33570922005-01-25 22:26:29 +0000571 (void **)&dll_scheme_get_sized_string_output},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000572# else
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000573 {"scheme_get_sized_byte_string_output",
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000574 (void **)&dll_scheme_get_sized_byte_string_output},
575#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000576 {"scheme_intern_symbol", (void **)&dll_scheme_intern_symbol},
577 {"scheme_lookup_global", (void **)&dll_scheme_lookup_global},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000578 {"scheme_make_closed_prim_w_arity",
Bram Moolenaar33570922005-01-25 22:26:29 +0000579 (void **)&dll_scheme_make_closed_prim_w_arity},
580 {"scheme_make_integer_value", (void **)&dll_scheme_make_integer_value},
Bram Moolenaar33570922005-01-25 22:26:29 +0000581 {"scheme_make_pair", (void **)&dll_scheme_make_pair},
Bram Moolenaar555b2802005-05-19 21:08:39 +0000582 {"scheme_make_prim_w_arity", (void **)&dll_scheme_make_prim_w_arity},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000583# if MZSCHEME_VERSION_MAJOR < 299
Bram Moolenaar33570922005-01-25 22:26:29 +0000584 {"scheme_make_string", (void **)&dll_scheme_make_string},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000585 {"scheme_make_string_output_port",
Bram Moolenaar33570922005-01-25 22:26:29 +0000586 (void **)&dll_scheme_make_string_output_port},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000587# else
588 {"scheme_make_byte_string", (void **)&dll_scheme_make_byte_string},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000589 {"scheme_make_byte_string_output_port",
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000590 (void **)&dll_scheme_make_byte_string_output_port},
591# endif
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000592 {"scheme_make_struct_instance",
Bram Moolenaar33570922005-01-25 22:26:29 +0000593 (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},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000609# 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},
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000614 {"scheme_char_string_to_path", (void **)&dll_scheme_char_string_to_path},
Bram Moolenaar75676462013-01-30 14:55:42 +0100615 {"scheme_set_collects_path", (void **)&dll_scheme_set_collects_path},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000616# endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000617 {"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},
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000621 {"scheme_make_sized_byte_string", (void **)&dll_scheme_make_sized_byte_string},
622 {"scheme_namespace_require", (void **)&dll_scheme_namespace_require},
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100623 {"scheme_dynamic_wind", (void **)&dll_scheme_dynamic_wind},
624# ifdef MZ_PRECISE_GC
625 {"GC_malloc_one_tagged", (void **)&dll_GC_malloc_one_tagged},
626 {"GC_register_traversers", (void **)&dll_GC_register_traversers},
627# endif
628# if MZSCHEME_VERSION_MAJOR >= 400
629# ifdef TRAMPOLINED_MZVIM_STARTUP
630 {"scheme_main_setup", (void **)&dll_scheme_main_setup},
631# if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || MZSCHEME_VERSION_MAJOR >= 603
632 {"scheme_register_tls_space", (void **)&dll_scheme_register_tls_space},
633# endif
634# endif
635 {"scheme_init_collection_paths", (void **)&dll_scheme_init_collection_paths},
636 {"scheme_malloc_immobile_box", (void **)&dll_scheme_malloc_immobile_box},
637 {"scheme_free_immobile_box", (void **)&dll_scheme_free_immobile_box},
638# endif
639# if MZSCHEME_VERSION_MAJOR >= 500
640# if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || defined(IMPLEMENT_THREAD_LOCAL_EXTERNALLY_VIA_PROC)
641 {"scheme_external_get_thread_local_variables", (void **)&dll_scheme_external_get_thread_local_variables},
642# endif
643# endif
644# if MZSCHEME_VERSION_MAJOR >= 600
645 {"scheme_embedded_load", (void **)&dll_scheme_embedded_load},
646 {"scheme_register_embedded_load", (void **)&dll_scheme_register_embedded_load},
647 {"scheme_set_config_path", (void **)&dll_scheme_set_config_path},
648# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000649 {NULL, NULL}};
650
651static HINSTANCE hMzGC = 0;
652static HINSTANCE hMzSch = 0;
653
654static void dynamic_mzscheme_end(void);
655static int mzscheme_runtime_link_init(char *sch_dll, char *gc_dll,
656 int verbose);
657
658 static int
659mzscheme_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;
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200665 hMzSch = vimLoadLib(sch_dll);
666 hMzGC = vimLoadLib(gc_dll);
Bram Moolenaar33570922005-01-25 22:26:29 +0000667
Bram Moolenaar33570922005-01-25 22:26:29 +0000668 if (!hMzGC)
669 {
670 if (verbose)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000671 semsg(_(e_could_not_load_library_str_str), gc_dll, GetWin32Error());
Bram Moolenaar33570922005-01-25 22:26:29 +0000672 return FAIL;
673 }
674
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100675 if (!hMzSch)
676 {
677 if (verbose)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000678 semsg(_(e_could_not_load_library_str_str), sch_dll, GetWin32Error());
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100679 return FAIL;
680 }
681
Bram Moolenaar33570922005-01-25 22:26:29 +0000682 for (thunk = mzsch_imports; thunk->name; thunk++)
683 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000684 if ((*thunk->ptr =
Bram Moolenaar33570922005-01-25 22:26:29 +0000685 (void *)GetProcAddress(hMzSch, thunk->name)) == NULL)
686 {
687 FreeLibrary(hMzSch);
688 hMzSch = 0;
689 FreeLibrary(hMzGC);
690 hMzGC = 0;
691 if (verbose)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000692 semsg(_(e_could_not_load_library_function_str), thunk->name);
Bram Moolenaar33570922005-01-25 22:26:29 +0000693 return FAIL;
694 }
695 }
696 for (thunk = mzgc_imports; thunk->name; thunk++)
697 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000698 if ((*thunk->ptr =
Bram Moolenaar33570922005-01-25 22:26:29 +0000699 (void *)GetProcAddress(hMzGC, thunk->name)) == NULL)
700 {
701 FreeLibrary(hMzSch);
702 hMzSch = 0;
703 FreeLibrary(hMzGC);
704 hMzGC = 0;
705 if (verbose)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000706 semsg(_(e_could_not_load_library_function_str), thunk->name);
Bram Moolenaar33570922005-01-25 22:26:29 +0000707 return FAIL;
708 }
709 }
710 return OK;
711}
712
713 int
714mzscheme_enabled(int verbose)
715{
716 return mzscheme_runtime_link_init(
Bram Moolenaar0ab35b22017-10-08 17:41:37 +0200717 (char *)p_mzschemedll, (char *)p_mzschemegcdll, verbose) == OK;
Bram Moolenaar33570922005-01-25 22:26:29 +0000718}
719
720 static void
721dynamic_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}
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100734#endif // DYNAMIC_MZSCHEME
Bram Moolenaar33570922005-01-25 22:26:29 +0000735
Bram Moolenaar75676462013-01-30 14:55:42 +0100736#if MZSCHEME_VERSION_MAJOR < 299
737# define GUARANTEED_STRING_ARG(proc, num) GUARANTEE_STRING(proc, num)
738#else
739 static Scheme_Object *
740guaranteed_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);
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100759 // unreachable
Bram Moolenaar75676462013-01-30 14:55:42 +0100760 return scheme_void;
761}
762# define GUARANTEED_STRING_ARG(proc, num) guaranteed_byte_string_arg(proc, num, argc, argv)
763#endif
764
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100765// need to put it here for dynamic stuff to work
Bram Moolenaare484c942009-09-11 10:21:41 +0000766#if defined(INCLUDE_MZSCHEME_BASE)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000767# include "mzscheme_base.c"
768#endif
769
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000770/*
771 *========================================================================
772 * 1. MzScheme interpreter startup
773 *========================================================================
774 */
775
776static Scheme_Type mz_buffer_type;
777static Scheme_Type mz_window_type;
778
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000779static int initialized = FALSE;
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100780#ifdef DYNAMIC_MZSCHEME
781static int disabled = FALSE;
782#endif
783static int load_base_module_failed = FALSE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000784
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100785// global environment
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000786static Scheme_Env *environment = NULL;
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100787// output/error handlers
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000788static Scheme_Object *curout = NULL;
789static Scheme_Object *curerr = NULL;
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100790// exn:vim exception
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000791static Scheme_Object *exn_catching_apply = NULL;
792static Scheme_Object *exn_p = NULL;
793static Scheme_Object *exn_message = NULL;
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100794static Scheme_Object *vim_exn = NULL; // Vim Error exception
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000795
796#if !defined(MZ_PRECISE_GC) || MZSCHEME_VERSION_MAJOR < 400
797static void *stack_base = NULL;
798#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000799
800static long range_start;
801static long range_end;
802
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100803// MzScheme threads scheduling stuff
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000804static int mz_threads_allow = 0;
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000805
Bram Moolenaar4f974752019-02-17 17:44:42 +0100806#if defined(FEAT_GUI_MSWIN)
Bram Moolenaardec6c7b2016-06-02 11:57:38 +0200807static void CALLBACK timer_proc(HWND, UINT, UINT_PTR, DWORD);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000808static UINT timer_id = 0;
809#elif defined(FEAT_GUI_GTK)
Bram Moolenaar98921892016-02-23 17:14:37 +0100810static gboolean timer_proc(gpointer);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000811static guint timer_id = 0;
812#elif defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)
813static void timer_proc(XtPointer, XtIntervalId *);
814static XtIntervalId timer_id = (XtIntervalId)0;
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000815#endif
816
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100817#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) // Win32 console and Unix
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000818 void
819mzvim_check_threads(void)
820{
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100821 // Last time MzScheme threads were scheduled
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000822 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
Bram Moolenaar4349c572016-01-30 13:28:28 +0100837#if defined(MZSCHEME_GUI_THREADS) || defined(PROTO)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000838static void setup_timer(void);
839static void remove_timer(void);
840
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100841// timers are presented in GUI only
Bram Moolenaar4f974752019-02-17 17:44:42 +0100842# if defined(FEAT_GUI_MSWIN)
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000843 static void CALLBACK
Bram Moolenaar9b0ac222016-06-01 20:31:43 +0200844timer_proc(HWND hwnd UNUSED, UINT uMsg UNUSED, UINT_PTR idEvent UNUSED, DWORD dwTime UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000845# elif defined(FEAT_GUI_GTK)
Bram Moolenaar98921892016-02-23 17:14:37 +0100846 static gboolean
Bram Moolenaar64404472010-06-26 06:24:45 +0200847timer_proc(gpointer data UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000848# elif defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000849 static void
Bram Moolenaar64404472010-06-26 06:24:45 +0200850timer_proc(XtPointer timed_out UNUSED, XtIntervalId *interval_id UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000851# endif
852{
853 scheme_check_threads();
854# if defined(FEAT_GUI_GTK)
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100855 return TRUE; // continue receiving notifications
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000856# elif defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100857 // renew timeout
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000858 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
865setup_timer(void)
866{
Bram Moolenaar4f974752019-02-17 17:44:42 +0100867# if defined(FEAT_GUI_MSWIN)
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000868 timer_id = SetTimer(NULL, 0, p_mzq, timer_proc);
869# elif defined(FEAT_GUI_GTK)
Bram Moolenaar98921892016-02-23 17:14:37 +0100870 timer_id = g_timeout_add((guint)p_mzq, (GSourceFunc)timer_proc, NULL);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000871# elif defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)
872 timer_id = XtAppAddTimeOut(app_context, p_mzq, timer_proc, NULL);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000873# endif
874}
875
876 static void
877remove_timer(void)
878{
Bram Moolenaar4f974752019-02-17 17:44:42 +0100879# if defined(FEAT_GUI_MSWIN)
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000880 KillTimer(NULL, timer_id);
881# elif defined(FEAT_GUI_GTK)
Bram Moolenaar98921892016-02-23 17:14:37 +0100882 g_source_remove(timer_id);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000883# elif defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)
884 XtRemoveTimeOut(timer_id);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000885# endif
886 timer_id = 0;
887}
888
889 void
890mzvim_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
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100898#endif // MZSCHEME_GUI_THREADS
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000899
900 static void
901notify_multithread(int on)
902{
903 mz_threads_allow = on;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000904#ifdef MZSCHEME_GUI_THREADS
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000905 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
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000912 void
913mzscheme_end(void)
914{
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100915 // We can not unload the DLL. Racket's thread might be still alive.
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100916#if 0
Bram Moolenaar33570922005-01-25 22:26:29 +0000917#ifdef DYNAMIC_MZSCHEME
918 dynamic_mzscheme_end();
919#endif
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100920#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000921}
922
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100923#if HAVE_TLS_SPACE
924# if defined(_MSC_VER)
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100925static __declspec(thread) void *tls_space;
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100926extern intptr_t _tls_index;
927# elif defined(__MINGW32__)
928static __thread void *tls_space;
929extern intptr_t _tls_index;
930# else
931static THREAD_LOCAL void *tls_space;
932static intptr_t _tls_index = 0;
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100933# endif
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100934#endif
935
Bram Moolenaar54b63522016-08-26 12:55:09 +0200936/*
937 * mzscheme_main() is called early in main().
938 * We may call scheme_main_setup() which calls mzscheme_env_main() which then
939 * trampolines into vim_main2(), which never returns.
940 */
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100941 int
Bram Moolenaar54b63522016-08-26 12:55:09 +0200942mzscheme_main(void)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000943{
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200944 int argc = 0;
945 char *argv = NULL;
946
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100947#ifdef DYNAMIC_MZSCHEME
948 /*
949 * Racket requires trampolined startup. We can not load it later.
950 * If dynamic dll loading is failed, disable it.
951 */
952 if (!mzscheme_enabled(FALSE))
953 {
954 disabled = TRUE;
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200955 return vim_main2();
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100956 }
957#endif
Bram Moolenaar5c5c9802015-07-10 16:12:48 +0200958#ifdef HAVE_TLS_SPACE
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100959 scheme_register_tls_space(&tls_space, _tls_index);
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100960#endif
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100961#ifdef TRAMPOLINED_MZVIM_STARTUP
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200962 return scheme_main_setup(TRUE, mzscheme_env_main, argc, &argv);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000963#else
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200964 return mzscheme_env_main(NULL, argc, &argv);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000965#endif
966}
967
968 static int
Bram Moolenaar54b63522016-08-26 12:55:09 +0200969mzscheme_env_main(Scheme_Env *env, int argc UNUSED, char **argv UNUSED)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000970{
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100971#ifdef TRAMPOLINED_MZVIM_STARTUP
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100972 // Scheme has created the environment for us
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100973 environment = env;
974#else
975# ifdef MZ_PRECISE_GC
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000976 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
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000982 int dummy = 0;
983 stack_base = (void *)&dummy;
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100984# endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000985#endif
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100986
Bram Moolenaar54b63522016-08-26 12:55:09 +0200987 vim_main2();
Bram Moolenaar2ab2e862019-12-04 21:24:53 +0100988 // not reached, vim_main2() will loop until exit()
Bram Moolenaar54b63522016-08-26 12:55:09 +0200989
990 return 0;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000991}
992
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100993 static Scheme_Object*
994load_base_module(void *data)
995{
996 scheme_namespace_require(scheme_intern_symbol((char *)data));
997 return scheme_null;
998}
999
1000 static Scheme_Object *
Bram Moolenaar8b29aba2016-03-28 22:17:16 +02001001load_base_module_on_error(void *data UNUSED)
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001002{
1003 load_base_module_failed = TRUE;
1004 return scheme_null;
1005}
1006
1007 static int
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001008startup_mzscheme(void)
1009{
Bram Moolenaarbbc98db2012-02-12 01:55:55 +01001010#ifndef TRAMPOLINED_MZVIM_STARTUP
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001011 scheme_set_stack_base(stack_base, 1);
1012#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001013
Bram Moolenaar75676462013-01-30 14:55:42 +01001014#ifndef TRAMPOLINED_MZVIM_STARTUP
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001015 // in newer versions of precise GC the initial env has been created
Bram Moolenaar75676462013-01-30 14:55:42 +01001016 environment = scheme_basic_env();
1017#endif
1018
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001019 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);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001026
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001027 MZ_GC_CHECK();
1028
1029#ifdef INCLUDE_MZSCHEME_BASE
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001030 // invoke function from generated and included mzscheme_base.c
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001031 declare_modules(environment);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001032#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001033
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001034 // setup 'current-library-collection-paths' parameter
Bram Moolenaare2a49d82007-07-06 17:43:08 +00001035# if MZSCHEME_VERSION_MAJOR >= 299
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001036 {
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001037 Scheme_Object *coll_path = NULL;
1038 int mustfree = FALSE;
1039 char_u *s;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001040
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001041 MZ_GC_DECL_REG(1);
1042 MZ_GC_VAR_IN_REG(0, coll_path);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001043 MZ_GC_REG();
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001044 // workaround for dynamic loading on windows
Bram Moolenaar74a97b12016-02-18 21:19:21 +01001045 s = vim_getenv((char_u *)"PLTCOLLECTS", &mustfree);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001046 if (s != NULL)
1047 {
Bram Moolenaar74a97b12016-02-18 21:19:21 +01001048 coll_path = scheme_make_path((char *)s);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001049 MZ_GC_CHECK();
1050 if (mustfree)
1051 vim_free(s);
1052 }
1053# ifdef MZSCHEME_COLLECTS
1054 if (coll_path == NULL)
1055 {
1056 coll_path = scheme_make_path(MZSCHEME_COLLECTS);
1057 MZ_GC_CHECK();
1058 }
Bram Moolenaar39d7d512013-01-31 21:09:15 +01001059# endif
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001060 if (coll_path != NULL)
1061 {
1062 scheme_set_collects_path(coll_path);
1063 MZ_GC_CHECK();
1064 }
1065 MZ_GC_UNREG();
1066 }
Bram Moolenaare2a49d82007-07-06 17:43:08 +00001067# else
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001068# ifdef MZSCHEME_COLLECTS
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001069 {
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();
Bram Moolenaar75676462013-01-30 14:55:42 +01001079 coll_string = scheme_make_byte_string(MZSCHEME_COLLECTS);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001080 MZ_GC_CHECK();
1081 coll_pair = scheme_make_pair(coll_string, scheme_null);
1082 MZ_GC_CHECK();
Bram Moolenaar75676462013-01-30 14:55:42 +01001083 config = scheme_current_config();
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001084 MZ_GC_CHECK();
1085 scheme_set_param(config, MZCONFIG_COLLECTION_PATHS, coll_pair);
1086 MZ_GC_CHECK();
1087 MZ_GC_UNREG();
1088 }
Bram Moolenaare2a49d82007-07-06 17:43:08 +00001089# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001090#endif
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001091
1092# if MZSCHEME_VERSION_MAJOR >= 600
1093 {
1094 Scheme_Object *config_path = NULL;
1095 int mustfree = FALSE;
1096 char_u *s;
1097
1098 MZ_GC_DECL_REG(1);
1099 MZ_GC_VAR_IN_REG(0, config_path);
1100 MZ_GC_REG();
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001101 // workaround for dynamic loading on windows
Bram Moolenaar5b7d1772016-06-13 19:54:22 +02001102 s = vim_getenv((char_u *)"PLTCONFIGDIR", &mustfree);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001103 if (s != NULL)
1104 {
Bram Moolenaar5b7d1772016-06-13 19:54:22 +02001105 config_path = scheme_make_path((char *)s);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001106 MZ_GC_CHECK();
1107 if (mustfree)
1108 vim_free(s);
1109 }
1110#ifdef MZSCHEME_CONFIGDIR
1111 if (config_path == NULL)
1112 {
1113 config_path = scheme_make_path(MZSCHEME_CONFIGDIR);
1114 MZ_GC_CHECK();
1115 }
1116#endif
1117 if (config_path != NULL)
1118 {
1119 scheme_set_config_path(config_path);
1120 MZ_GC_CHECK();
1121 }
1122 MZ_GC_UNREG();
1123 }
1124# endif
1125
1126#if MZSCHEME_VERSION_MAJOR >= 400
1127 scheme_init_collection_paths(environment, scheme_null);
1128#endif
1129
1130 /*
1131 * versions 4.x do not provide Scheme bindings by default
1132 * we need to add them explicitly
1133 */
1134 {
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001135 // use error handler to avoid abort
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001136 scheme_dynamic_wind(NULL, load_base_module, NULL,
1137 load_base_module_on_error, "racket/base");
1138 if (load_base_module_failed)
1139 {
1140 load_base_module_failed = FALSE;
1141 scheme_dynamic_wind(NULL, load_base_module, NULL,
1142 load_base_module_on_error, "scheme/base");
1143 if (load_base_module_failed)
1144 return -1;
1145 }
1146 }
1147
1148 register_vim_exn();
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001149 // use new environment to initialise exception handling
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001150 init_exn_catching_apply();
1151
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001152 // redirect output
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001153 scheme_console_output = do_output;
1154 scheme_console_printf = do_printf;
1155
Bram Moolenaar555b2802005-05-19 21:08:39 +00001156#ifdef HAVE_SANDBOX
Bram Moolenaar555b2802005-05-19 21:08:39 +00001157 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001158 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
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001180 // setup sandbox guards
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001181 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();
Bram Moolenaar75676462013-01-30 14:55:42 +01001191 config = scheme_current_config();
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001192 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();
Bram Moolenaar555b2802005-05-19 21:08:39 +00001206 }
1207#endif
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001208 // Create buffer and window types for use in Scheme code
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001209 mz_buffer_type = scheme_make_type("<vim-buffer>");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001210 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001211 mz_window_type = scheme_make_type("<vim-window>");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001212 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
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001221
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001222 make_modules();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001223
1224 /*
1225 * setup callback to receive notifications
1226 * whether thread scheduling is (or not) required
1227 */
1228 scheme_notify_multithread = notify_multithread;
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001229
1230 return 0;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001231}
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
1238mzscheme_init(void)
1239{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001240 if (!initialized)
1241 {
Bram Moolenaar33570922005-01-25 22:26:29 +00001242#ifdef DYNAMIC_MZSCHEME
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001243 if (disabled || !mzscheme_enabled(TRUE))
Bram Moolenaar33570922005-01-25 22:26:29 +00001244 {
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00001245 emsg(_(e_sorry_this_command_is_disabled_the_mzscheme_libraries_could_not_be_loaded));
Bram Moolenaar33570922005-01-25 22:26:29 +00001246 return -1;
1247 }
1248#endif
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001249 if (load_base_module_failed || startup_mzscheme())
1250 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001251 emsg(_("E895: Sorry, this command is disabled, the MzScheme's racket/base module could not be loaded."));
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001252 return -1;
1253 }
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001254 initialized = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001255 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001256 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001257 Scheme_Config *config = NULL;
1258 MZ_GC_DECL_REG(1);
1259 MZ_GC_VAR_IN_REG(0, config);
1260 MZ_GC_REG();
Bram Moolenaar75676462013-01-30 14:55:42 +01001261 config = scheme_current_config();
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001262 MZ_GC_CHECK();
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001263 // recreate ports each call effectively clearing these ones
Bram Moolenaar75676462013-01-30 14:55:42 +01001264 curout = scheme_make_byte_string_output_port();
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001265 MZ_GC_CHECK();
Bram Moolenaar75676462013-01-30 14:55:42 +01001266 curerr = scheme_make_byte_string_output_port();
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001267 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();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001273 }
1274
1275 return 0;
1276}
1277
1278/*
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001279 *========================================================================
1280 * 2. External Interface
1281 *========================================================================
1282 */
1283
1284/*
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001285 * Evaluate command with exception handling
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001286 */
1287 static int
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001288eval_with_exn_handling(void *data, Scheme_Closed_Prim *what, Scheme_Object **ret)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001289{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001290 Scheme_Object *value = NULL;
1291 Scheme_Object *exn = NULL;
1292 Scheme_Object *prim = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001293
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001294 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();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001299
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001300 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();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001304
1305 if (!value)
1306 {
1307 value = extract_exn_message(exn);
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001308 // Got an exn?
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001309 if (value)
1310 {
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001311 scheme_display(value, curerr); // Send to stderr-vim
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001312 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001313 do_flush();
1314 }
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001315 MZ_GC_UNREG();
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001316 // `raise' was called on some arbitrary value
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001317 return FAIL;
1318 }
1319
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001320 if (ret != NULL) // if pointer to retval supported give it up
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001321 *ret = value;
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001322 // Print any result, as long as it's not a void
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001323 else if (!SCHEME_VOIDP(value))
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001324 {
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001325 scheme_display(value, curout); // Send to stdout-vim
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001326 MZ_GC_CHECK();
1327 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001328
1329 do_flush();
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001330 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001331 return OK;
1332}
1333
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001334/*
1335 * :mzscheme
1336 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001337 static int
1338do_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
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001346 return eval_with_exn_handling(data, what, NULL);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001347}
1348
1349/*
1350 * Routine called by VIM when deleting a buffer
1351 */
1352 void
1353mzscheme_buffer_free(buf_T *buf)
1354{
Bram Moolenaare344bea2005-09-01 20:46:49 +00001355 if (buf->b_mzscheme_ref)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001356 {
Bram Moolenaar75676462013-01-30 14:55:42 +01001357 vim_mz_buffer *bp = NULL;
1358 MZ_GC_DECL_REG(1);
1359 MZ_GC_VAR_IN_REG(0, bp);
1360 MZ_GC_REG();
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001361
Bram Moolenaar75676462013-01-30 14:55:42 +01001362 bp = BUFFER_REF(buf);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001363 bp->buf = INVALID_BUFFER_VALUE;
Bram Moolenaar75676462013-01-30 14:55:42 +01001364#ifndef MZ_PRECISE_GC
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001365 scheme_gc_ptr_ok(bp);
Bram Moolenaar75676462013-01-30 14:55:42 +01001366#else
1367 scheme_free_immobile_box(buf->b_mzscheme_ref);
1368#endif
1369 buf->b_mzscheme_ref = NULL;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001370 MZ_GC_CHECK();
Bram Moolenaar75676462013-01-30 14:55:42 +01001371 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001372 }
1373}
1374
1375/*
1376 * Routine called by VIM when deleting a Window
1377 */
1378 void
1379mzscheme_window_free(win_T *win)
1380{
Bram Moolenaare344bea2005-09-01 20:46:49 +00001381 if (win->w_mzscheme_ref)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001382 {
Bram Moolenaar75676462013-01-30 14:55:42 +01001383 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);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001388 wp->win = INVALID_WINDOW_VALUE;
Bram Moolenaar75676462013-01-30 14:55:42 +01001389#ifndef MZ_PRECISE_GC
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001390 scheme_gc_ptr_ok(wp);
Bram Moolenaar75676462013-01-30 14:55:42 +01001391#else
1392 scheme_free_immobile_box(win->w_mzscheme_ref);
1393#endif
1394 win->w_mzscheme_ref = NULL;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001395 MZ_GC_CHECK();
Bram Moolenaar75676462013-01-30 14:55:42 +01001396 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001397 }
1398}
1399
1400/*
1401 * ":mzscheme" (or ":mz")
1402 */
1403 void
1404ex_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
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001421 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02001422do_load(void *data, int noargc UNUSED, Scheme_Object **noargv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001423{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001424 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();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001437
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001438 // make Vim expansion
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001439 expand_env((char_u *)pinfo->name, (char_u *)file, MAXPATHL);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001440 pinfo->port = scheme_open_input_file(file, "mzfile");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001441 MZ_GC_CHECK();
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001442 scheme_count_lines(pinfo->port); // to get accurate read error location
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001443 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001444
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001445 // Like REPL but print only last result
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001446 while (!SCHEME_EOFP(expr = scheme_read(pinfo->port)))
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001447 {
1448 result = scheme_eval(expr, environment);
1449 MZ_GC_CHECK();
1450 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001451
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001452 // errors will be caught in do_mzscheme_command and ex_mzfile
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001453 scheme_close_input_port(pinfo->port);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001454 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001455 pinfo->port = NULL;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001456 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001457 return result;
1458}
1459
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001460/*
1461 * :mzfile
1462 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001463 void
1464ex_mzfile(exarg_T *eap)
1465{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001466 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();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001471
1472 pinfo.name = (char *)eap->arg;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001473 if (do_mzscheme_command(eap, &pinfo, do_load) != OK
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001474 && pinfo.port != NULL) // looks like port was not closed
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001475 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001476 scheme_close_input_port(pinfo.port);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001477 MZ_GC_CHECK();
1478 }
1479 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001480}
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
1490init_exn_catching_apply(void)
1491{
1492 if (!exn_catching_apply)
1493 {
1494 char *e =
1495 "(lambda (thunk) "
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001496 "(with-handlers ([void (lambda (exn) (cons #f exn))]) "
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001497 "(cons #t (thunk))))";
1498
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001499 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();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001505 }
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
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001518 v = _scheme_apply(exn_catching_apply, 1, &f);
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001519 // v is a pair: (cons #t value) or (cons #f exn)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001520
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 *
1531extract_exn_message(Scheme_Object *v)
1532{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001533 if (SCHEME_TRUEP(_scheme_apply(exn_p, 1, &v)))
1534 return _scheme_apply(exn_message, 1, &v);
1535 else
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001536 return NULL; // Not an exn structure
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001537}
1538
1539 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02001540do_eval(void *s, int noargc UNUSED, Scheme_Object **noargv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001541{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001542 return scheme_eval_string_all((char *)s, environment, TRUE);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001543}
1544
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001545/*
1546 *========================================================================
1547 * 3. MzScheme I/O Handlers
1548 *========================================================================
1549 */
1550 static void
Bram Moolenaar64404472010-06-26 06:24:45 +02001551do_intrnl_output(char *mesg, int error)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001552{
1553 char *p, *prev;
1554
1555 prev = mesg;
1556 p = strchr(prev, '\n');
1557 while (p)
1558 {
1559 *p = '\0';
1560 if (error)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001561 emsg(prev);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001562 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001563 msg(prev);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001564 prev = p + 1;
1565 p = strchr(prev, '\n');
1566 }
1567
1568 if (error)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001569 emsg(prev);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001570 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001571 msg(prev);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001572}
1573
1574 static void
Bram Moolenaar75676462013-01-30 14:55:42 +01001575do_output(char *mesg, OUTPUT_LEN_TYPE len UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001576{
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001577 // TODO: use len, the string may not be NUL terminated
Bram Moolenaar64404472010-06-26 06:24:45 +02001578 do_intrnl_output(mesg, 0);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001579}
1580
1581 static void
Bram Moolenaar64404472010-06-26 06:24:45 +02001582do_err_output(char *mesg)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001583{
Bram Moolenaar64404472010-06-26 06:24:45 +02001584 do_intrnl_output(mesg, 1);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001585}
1586
1587 static void
1588do_printf(char *format, ...)
1589{
Bram Moolenaar64404472010-06-26 06:24:45 +02001590 do_intrnl_output(format, 1);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001591}
1592
1593 static void
1594do_flush(void)
1595{
1596 char *buff;
Bram Moolenaar75676462013-01-30 14:55:42 +01001597 OUTPUT_LEN_TYPE length;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001598
Bram Moolenaar75676462013-01-30 14:55:42 +01001599 buff = scheme_get_sized_byte_string_output(curerr, &length);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001600 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001601 if (length)
1602 {
Bram Moolenaar64404472010-06-26 06:24:45 +02001603 do_err_output(buff);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001604 return;
1605 }
1606
Bram Moolenaar75676462013-01-30 14:55:42 +01001607 buff = scheme_get_sized_byte_string_output(curout, &length);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001608 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001609 if (length)
1610 do_output(buff, length);
1611}
1612
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001613/*
1614 *========================================================================
1615 * 4. Implementation of the Vim Features for MzScheme
1616 *========================================================================
1617 */
1618
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001619/*
1620 * (command {command-string})
1621 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001622 static Scheme_Object *
1623vim_command(void *data, int argc, Scheme_Object **argv)
1624{
1625 Vim_Prim *prim = (Vim_Prim *)data;
Bram Moolenaar75676462013-01-30 14:55:42 +01001626 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);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001631
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001632 // may be use do_cmdline_cmd?
Bram Moolenaar75676462013-01-30 14:55:42 +01001633 do_cmdline(BYTE_STRING_VALUE(cmd), NULL, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001634 update_screen(VALID);
1635
Bram Moolenaar75676462013-01-30 14:55:42 +01001636 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001637 raise_if_error();
1638 return scheme_void;
1639}
1640
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001641/*
1642 * (eval {expr-string})
1643 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001644 static Scheme_Object *
Bram Moolenaard2142212013-01-30 17:41:50 +01001645vim_eval(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001646{
1647#ifdef FEAT_EVAL
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001648 Vim_Prim *prim = (Vim_Prim *)data;
Bram Moolenaar75676462013-01-30 14:55:42 +01001649 Scheme_Object *result = NULL;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001650 typval_T *vim_result;
Bram Moolenaar75676462013-01-30 14:55:42 +01001651 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);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001655 MZ_GC_REG();
Bram Moolenaar75676462013-01-30 14:55:42 +01001656 expr = GUARANTEED_STRING_ARG(prim->name, 0);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001657
Bram Moolenaar75676462013-01-30 14:55:42 +01001658 vim_result = eval_expr(BYTE_STRING_VALUE(expr), NULL);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001659
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001660 if (vim_result == NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001661 raise_vim_exn(_("invalid expression"));
1662
Bram Moolenaar75676462013-01-30 14:55:42 +01001663 result = vim_to_mzscheme(vim_result);
1664 MZ_GC_CHECK();
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001665 free_tv(vim_result);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001666
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001667 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001668 return result;
1669#else
1670 raise_vim_exn(_("expressions disabled at compile time"));
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001671 // unreachable
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001672 return scheme_false;
1673#endif
1674}
1675
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001676/*
1677 * (range-start)
1678 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001679 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02001680get_range_start(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001681{
1682 return scheme_make_integer(range_start);
1683}
1684
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001685/*
1686 * (range-end)
1687 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001688 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02001689get_range_end(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001690{
1691 return scheme_make_integer(range_end);
1692}
1693
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001694/*
1695 * (beep)
1696 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001697 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02001698mzscheme_beep(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001699{
Bram Moolenaar165bc692015-07-21 17:53:25 +02001700 vim_beep(BO_LANG);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001701 return scheme_void;
1702}
1703
1704static Scheme_Object *M_global = NULL;
1705
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001706/*
1707 * (get-option {option-name}) [buffer/window]
1708 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001709 static Scheme_Object *
1710get_option(void *data, int argc, Scheme_Object **argv)
1711{
1712 Vim_Prim *prim = (Vim_Prim *)data;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001713 long value;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001714 char *strval;
Bram Moolenaardd1f4262020-12-31 17:41:01 +01001715 getoption_T rc;
Bram Moolenaar75676462013-01-30 14:55:42 +01001716 Scheme_Object *rval = NULL;
1717 Scheme_Object *name = NULL;
Yegappan Lakshmanan64095532021-12-06 11:03:55 +00001718 int scope = 0;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001719 buf_T *save_curb = curbuf;
1720 win_T *save_curw = curwin;
1721
Bram Moolenaar75676462013-01-30 14:55:42 +01001722 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);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001728
1729 if (argc > 1)
1730 {
1731 if (M_global == NULL)
1732 {
1733 MZ_REGISTER_STATIC(M_global);
1734 M_global = scheme_intern_symbol("global");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001735 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001736 }
1737
1738 if (argv[1] == M_global)
Yegappan Lakshmanan64095532021-12-06 11:03:55 +00001739 scope = OPT_GLOBAL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001740 else if (SCHEME_VIMBUFFERP(argv[1]))
1741 {
1742 curbuf = get_valid_buffer(argv[1]);
Yegappan Lakshmanan64095532021-12-06 11:03:55 +00001743 scope = OPT_LOCAL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001744 }
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;
Yegappan Lakshmanan64095532021-12-06 11:03:55 +00001751 scope = OPT_LOCAL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001752 }
1753 else
1754 scheme_wrong_type(prim->name, "vim-buffer/window", 1, argc, argv);
1755 }
1756
Bram Moolenaardd1f4262020-12-31 17:41:01 +01001757 rc = get_option_value(BYTE_STRING_VALUE(name), &value, (char_u **)&strval,
Yegappan Lakshmanan64095532021-12-06 11:03:55 +00001758 NULL, scope);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001759 curbuf = save_curb;
1760 curwin = save_curw;
1761
1762 switch (rc)
1763 {
Bram Moolenaardd1f4262020-12-31 17:41:01 +01001764 case gov_bool:
1765 case gov_number:
Bram Moolenaar75676462013-01-30 14:55:42 +01001766 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001767 return scheme_make_integer_value(value);
Bram Moolenaardd1f4262020-12-31 17:41:01 +01001768 case gov_string:
Bram Moolenaar75676462013-01-30 14:55:42 +01001769 rval = scheme_make_byte_string(strval);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001770 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001771 vim_free(strval);
Bram Moolenaar75676462013-01-30 14:55:42 +01001772 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001773 return rval;
Bram Moolenaardd1f4262020-12-31 17:41:01 +01001774 case gov_hidden_bool:
1775 case gov_hidden_number:
1776 case gov_hidden_string:
Bram Moolenaar75676462013-01-30 14:55:42 +01001777 MZ_GC_UNREG();
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001778 raise_vim_exn(_("hidden option"));
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001779 //NOTREACHED
Bram Moolenaardd1f4262020-12-31 17:41:01 +01001780 case gov_unknown:
Bram Moolenaar75676462013-01-30 14:55:42 +01001781 MZ_GC_UNREG();
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001782 raise_vim_exn(_("unknown option"));
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001783 //NOTREACHED
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001784 }
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001785 // unreachable
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001786 return scheme_void;
1787}
1788
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001789/*
1790 * (set-option {option-changing-string} [buffer/window])
1791 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001792 static Scheme_Object *
1793set_option(void *data, int argc, Scheme_Object **argv)
1794{
Bram Moolenaar75676462013-01-30 14:55:42 +01001795 char_u *command = NULL;
Yegappan Lakshmanan64095532021-12-06 11:03:55 +00001796 int scope = 0;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001797 buf_T *save_curb = curbuf;
1798 win_T *save_curw = curwin;
1799 Vim_Prim *prim = (Vim_Prim *)data;
Bram Moolenaar75676462013-01-30 14:55:42 +01001800 Scheme_Object *cmd = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001801
Bram Moolenaar75676462013-01-30 14:55:42 +01001802 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
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001807 if (argc > 1)
1808 {
1809 if (M_global == NULL)
1810 {
1811 MZ_REGISTER_STATIC(M_global);
1812 M_global = scheme_intern_symbol("global");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001813 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001814 }
1815
1816 if (argv[1] == M_global)
Yegappan Lakshmanan64095532021-12-06 11:03:55 +00001817 scope = OPT_GLOBAL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001818 else if (SCHEME_VIMBUFFERP(argv[1]))
1819 {
1820 curbuf = get_valid_buffer(argv[1]);
Yegappan Lakshmanan64095532021-12-06 11:03:55 +00001821 scope = OPT_LOCAL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001822 }
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;
Yegappan Lakshmanan64095532021-12-06 11:03:55 +00001828 scope = OPT_LOCAL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001829 }
1830 else
1831 scheme_wrong_type(prim->name, "vim-buffer/window", 1, argc, argv);
1832 }
1833
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001834 // do_set can modify cmd, make copy
Bram Moolenaar75676462013-01-30 14:55:42 +01001835 command = vim_strsave(BYTE_STRING_VALUE(cmd));
1836 MZ_GC_UNREG();
Yegappan Lakshmanan64095532021-12-06 11:03:55 +00001837 do_set(command, scope);
Bram Moolenaar75676462013-01-30 14:55:42 +01001838 vim_free(command);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001839 update_screen(NOT_VALID);
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
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001852/*
1853 * (curr-win)
1854 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001855 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02001856get_curr_win(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001857{
1858 return (Scheme_Object *)get_vim_curr_window();
1859}
1860
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001861/*
1862 * (win-count)
1863 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001864 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02001865get_window_count(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001866{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001867 int n = 0;
Bram Moolenaard2142212013-01-30 17:41:50 +01001868 win_T *w;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001869
Bram Moolenaar29323592016-07-24 22:04:11 +02001870 FOR_ALL_WINDOWS(w)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001871 ++n;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001872 return scheme_make_integer(n);
1873}
1874
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001875/*
1876 * (get-win-list [buffer])
1877 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001878 static Scheme_Object *
1879get_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;
Bram Moolenaard2142212013-01-30 17:41:50 +01001884 win_T *w = firstwin;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001885
1886 buf = get_buffer_arg(prim->name, 0, argc, argv);
1887 list = scheme_null;
1888
Bram Moolenaard2142212013-01-30 17:41:50 +01001889 for ( ; w != NULL; w = w->w_next)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001890 if (w->w_buffer == buf->buf)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001891 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001892 list = scheme_make_pair(window_new(w), list);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001893 MZ_GC_CHECK();
1894 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001895
1896 return list;
1897}
1898
1899 static Scheme_Object *
1900window_new(win_T *win)
1901{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001902 vim_mz_window *self = NULL;
1903
1904 MZ_GC_DECL_REG(1);
1905 MZ_GC_VAR_IN_REG(0, self);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001906
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001907 // We need to handle deletion of windows underneath us.
1908 // If we add a "w_mzscheme_ref" field to the win_T structure,
1909 // then we can get at it in win_free() in vim.
1910 //
1911 // On a win_free() we set the Scheme object's win_T *field
1912 // to an invalid value. We trap all uses of a window
1913 // object, and reject them if the win_T *field is invalid.
Bram Moolenaare344bea2005-09-01 20:46:49 +00001914 if (win->w_mzscheme_ref != NULL)
Bram Moolenaar75676462013-01-30 14:55:42 +01001915 return (Scheme_Object *)WINDOW_REF(win);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001916
Bram Moolenaar75676462013-01-30 14:55:42 +01001917 MZ_GC_REG();
1918 self = scheme_malloc_fail_ok(scheme_malloc_tagged, sizeof(vim_mz_window));
Bram Moolenaara80faa82020-04-12 19:37:17 +02001919 CLEAR_POINTER(self);
Bram Moolenaar75676462013-01-30 14:55:42 +01001920#ifndef MZ_PRECISE_GC
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001921 scheme_dont_gc_ptr(self); // because win isn't visible to GC
Bram Moolenaar75676462013-01-30 14:55:42 +01001922#else
1923 win->w_mzscheme_ref = scheme_malloc_immobile_box(NULL);
1924#endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001925 MZ_GC_CHECK();
Bram Moolenaar75676462013-01-30 14:55:42 +01001926 WINDOW_REF(win) = self;
1927 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001928 self->win = win;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001929 self->so.type = mz_window_type;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001930
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001931 MZ_GC_UNREG();
Bram Moolenaar75676462013-01-30 14:55:42 +01001932 return (Scheme_Object *)self;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001933}
1934
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001935/*
1936 * (get-win-num [window])
1937 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001938 static Scheme_Object *
Bram Moolenaard2142212013-01-30 17:41:50 +01001939get_window_num(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001940{
Bram Moolenaard2142212013-01-30 17:41:50 +01001941 int nr = 1;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001942 Vim_Prim *prim = (Vim_Prim *)data;
1943 win_T *win = get_window_arg(prim->name, 0, argc, argv)->win;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001944 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
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001952/*
1953 * (get-win-by-num {windownum})
1954 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001955 static Scheme_Object *
1956get_window_by_num(void *data, int argc, Scheme_Object **argv)
1957{
1958 Vim_Prim *prim = (Vim_Prim *)data;
Bram Moolenaard2142212013-01-30 17:41:50 +01001959 win_T *win = firstwin;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001960 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
Bram Moolenaard2142212013-01-30 17:41:50 +01001966 for ( ; win != NULL; win = win->w_next, --fnum)
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001967 if (fnum == 1) // to be 1-based
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001968 return window_new(win);
1969
1970 return scheme_false;
1971}
1972
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001973/*
1974 * (get-win-buffer [window])
1975 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001976 static Scheme_Object *
1977get_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
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001985/*
1986 * (get-win-height [window])
1987 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001988 static Scheme_Object *
1989get_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
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01001997/*
1998 * (set-win-height {height} [window])
1999 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002000 static Scheme_Object *
2001set_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
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002024/*
2025 * (get-win-width [window])
2026 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002027 static Scheme_Object *
2028get_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
Bram Moolenaar02631462017-09-22 15:20:32 +02002033 return scheme_make_integer(win->win->w_width);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002034}
2035
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002036/*
2037 * (set-win-width {width} [window])
2038 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002039 static Scheme_Object *
2040set_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}
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002062
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002063/*
2064 * (get-cursor [window]) -> (line . col)
2065 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002066 static Scheme_Object *
2067get_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
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002079/*
2080 * (set-cursor (line . col) [window])
2081 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002082 static Scheme_Object *
2083set_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
Bram Moolenaar555b2802005-05-19 21:08:39 +00002090#ifdef HAVE_SANDBOX
2091 sandbox_check();
2092#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002093 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);
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002104 // don't know how to catch invalid column value
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002105
2106 win->win->w_cursor.lnum = lnum;
2107 win->win->w_cursor.col = col;
Bram Moolenaar53901442018-07-25 22:02:36 +02002108 win->win->w_set_curswant = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002109 update_screen(VALID);
2110
2111 raise_if_error();
2112 return scheme_void;
2113}
2114/*
2115 *===========================================================================
2116 * 6. Vim Buffer-related Manipulation Functions
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002117 *===========================================================================
2118 */
2119
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002120/*
2121 * (open-buff {filename})
2122 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002123 static Scheme_Object *
2124mzscheme_open_buffer(void *data, int argc, Scheme_Object **argv)
2125{
2126 Vim_Prim *prim = (Vim_Prim *)data;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002127 int num = 0;
Bram Moolenaar75676462013-01-30 14:55:42 +01002128 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);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002138
Bram Moolenaar555b2802005-05-19 21:08:39 +00002139#ifdef HAVE_SANDBOX
2140 sandbox_check();
2141#endif
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002142 // TODO make open existing file
Bram Moolenaar75676462013-01-30 14:55:42 +01002143 num = buflist_add(BYTE_STRING_VALUE(fname), BLN_LISTED | BLN_CURBUF);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002144
2145 if (num == 0)
2146 raise_vim_exn(_("couldn't open buffer"));
2147
2148 onum = scheme_make_integer(num);
Bram Moolenaar75676462013-01-30 14:55:42 +01002149 buf = get_buffer_by_num(data, 1, &onum);
2150 MZ_GC_UNREG();
2151 return buf;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002152}
2153
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002154/*
2155 * (get-buff-by-num {buffernum})
2156 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002157 static Scheme_Object *
2158get_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
Bram Moolenaar29323592016-07-24 22:04:11 +02002166 FOR_ALL_BUFFERS(buf)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002167 if (buf->b_fnum == fnum)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002168 return buffer_new(buf);
2169
2170 return scheme_false;
2171}
2172
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002173/*
2174 * (get-buff-by-name {buffername})
2175 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002176 static Scheme_Object *
2177get_buffer_by_name(void *data, int argc, Scheme_Object **argv)
2178{
2179 Vim_Prim *prim = (Vim_Prim *)data;
2180 buf_T *buf;
Bram Moolenaar75676462013-01-30 14:55:42 +01002181 Scheme_Object *buffer = NULL;
2182 Scheme_Object *fname = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002183
Bram Moolenaar75676462013-01-30 14:55:42 +01002184 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;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002190
Bram Moolenaar29323592016-07-24 22:04:11 +02002191 FOR_ALL_BUFFERS(buf)
Bram Moolenaar75676462013-01-30 14:55:42 +01002192 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002193 if (buf->b_ffname == NULL || buf->b_sfname == NULL)
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002194 // empty string
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002195 {
Bram Moolenaar75676462013-01-30 14:55:42 +01002196 if (BYTE_STRING_VALUE(fname)[0] == NUL)
2197 buffer = buffer_new(buf);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002198 }
Bram Moolenaar75676462013-01-30 14:55:42 +01002199 else if (!fnamecmp(buf->b_ffname, BYTE_STRING_VALUE(fname))
2200 || !fnamecmp(buf->b_sfname, BYTE_STRING_VALUE(fname)))
2201 {
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002202 // either short or long filename matches
Bram Moolenaar75676462013-01-30 14:55:42 +01002203 buffer = buffer_new(buf);
2204 }
2205 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002206
Bram Moolenaar75676462013-01-30 14:55:42 +01002207 MZ_GC_UNREG();
2208 return buffer;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002209}
2210
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002211/*
2212 * (get-next-buff [buffer])
2213 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002214 static Scheme_Object *
2215get_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
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002226/*
2227 * (get-prev-buff [buffer])
2228 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002229 static Scheme_Object *
2230get_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
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002241/*
2242 * (get-buff-num [buffer])
2243 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002244 static Scheme_Object *
2245get_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
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002253/*
2254 * (buff-count)
2255 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002256 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02002257get_buffer_count(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002258{
2259 buf_T *b;
2260 int n = 0;
2261
Bram Moolenaar29323592016-07-24 22:04:11 +02002262 FOR_ALL_BUFFERS(b) ++n;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002263 return scheme_make_integer(n);
2264}
2265
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002266/*
2267 * (get-buff-name [buffer])
2268 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002269 static Scheme_Object *
2270get_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
Bram Moolenaar75676462013-01-30 14:55:42 +01002275 return scheme_make_byte_string((char *)buf->buf->b_ffname);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002276}
2277
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002278/*
2279 * (curr-buff)
2280 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002281 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02002282get_curr_buffer(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002283{
2284 return (Scheme_Object *)get_vim_curr_buffer();
2285}
2286
2287 static Scheme_Object *
2288buffer_new(buf_T *buf)
2289{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002290 vim_mz_buffer *self = NULL;
2291
2292 MZ_GC_DECL_REG(1);
2293 MZ_GC_VAR_IN_REG(0, self);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002294
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002295 // We need to handle deletion of buffers underneath us.
2296 // If we add a "b_mzscheme_ref" field to the buf_T structure,
2297 // then we can get at it in buf_freeall() in vim.
Bram Moolenaare344bea2005-09-01 20:46:49 +00002298 if (buf->b_mzscheme_ref)
Bram Moolenaar75676462013-01-30 14:55:42 +01002299 return (Scheme_Object *)BUFFER_REF(buf);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002300
Bram Moolenaar75676462013-01-30 14:55:42 +01002301 MZ_GC_REG();
2302 self = scheme_malloc_fail_ok(scheme_malloc_tagged, sizeof(vim_mz_buffer));
Bram Moolenaara80faa82020-04-12 19:37:17 +02002303 CLEAR_POINTER(self);
Bram Moolenaar75676462013-01-30 14:55:42 +01002304#ifndef MZ_PRECISE_GC
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002305 scheme_dont_gc_ptr(self); // because buf isn't visible to GC
Bram Moolenaar75676462013-01-30 14:55:42 +01002306#else
2307 buf->b_mzscheme_ref = scheme_malloc_immobile_box(NULL);
2308#endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002309 MZ_GC_CHECK();
Bram Moolenaar75676462013-01-30 14:55:42 +01002310 BUFFER_REF(buf) = self;
2311 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002312 self->buf = buf;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002313 self->so.type = mz_buffer_type;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002314
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002315 MZ_GC_UNREG();
Bram Moolenaar75676462013-01-30 14:55:42 +01002316 return (Scheme_Object *)self;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002317}
2318
2319/*
2320 * (get-buff-size [buffer])
2321 *
2322 * Get the size (number of lines) in the current buffer.
2323 */
2324 static Scheme_Object *
2325get_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 *
2341get_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;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002346 char_u *line;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002347
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();
Bram Moolenaar75676462013-01-30 14:55:42 +01002353 return scheme_make_byte_string((char *)line);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002354}
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 *
2365get_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;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002370 Scheme_Object *list = NULL;
2371
2372 MZ_GC_DECL_REG(1);
2373 MZ_GC_VAR_IN_REG(0, list);
2374 MZ_GC_REG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002375
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)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002385 lo = 0;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002386
2387 if (hi < 0)
2388 hi = 0;
2389 if (hi < lo)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002390 hi = lo;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002391
2392 n = hi - lo;
2393
2394 for (i = n; i >= 0; --i)
2395 {
Bram Moolenaar75676462013-01-30 14:55:42 +01002396 Scheme_Object *str = scheme_make_byte_string(
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002397 (char *)ml_get_buf(buf->buf, (linenr_T)(lo+i), FALSE));
2398 raise_if_error();
2399
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002400 // Set the list item
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002401 list = scheme_make_pair(str, list);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002402 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002403 }
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002404 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002405 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 *
2421set_buffer_line(void *data, int argc, Scheme_Object **argv)
2422{
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002423 // First of all, we check the value of the supplied MzScheme object.
2424 // There are three cases:
2425 // 1. #f - this is a deletion.
2426 // 2. A string - this is a replacement.
2427 // 3. Anything else - this is an error.
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002428 Vim_Prim *prim = (Vim_Prim *)data;
2429 vim_mz_buffer *buf;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002430 Scheme_Object *line = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002431 char *save;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002432 int n;
2433
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002434 MZ_GC_DECL_REG(1);
2435 MZ_GC_VAR_IN_REG(0, line);
2436 MZ_GC_REG();
2437
Bram Moolenaar555b2802005-05-19 21:08:39 +00002438#ifdef HAVE_SANDBOX
2439 sandbox_check();
2440#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002441 n = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0));
2442 if (!SCHEME_STRINGP(argv[1]) && !SCHEME_FALSEP(argv[1]))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002443 scheme_wrong_type(prim->name, "string or #f", 1, argc, argv);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002444 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 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002451 buf_T *savebuf = curbuf;
2452
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002453 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 }
Bram Moolenaarca70c072020-05-30 20:30:46 +02002460 else if (ml_delete((linenr_T)n) == FAIL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002461 {
2462 curbuf = savebuf;
2463 raise_vim_exn(_("cannot delete line"));
2464 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002465 if (buf->buf == curwin->w_buffer)
2466 mz_fix_cursor(n, n + 1, -1);
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002467 deleted_lines_mark((linenr_T)n, 1L);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002468
2469 curbuf = savebuf;
2470
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002471 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002472 raise_if_error();
2473 return scheme_void;
2474 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002475 else
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002476 {
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002477 // Otherwise it's a line
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002478 buf_T *savebuf = curbuf;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002479
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002480 save = string_to_line(line);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002481
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002482 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
2502 curbuf = savebuf;
2503
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002504 // Check that the cursor is not beyond the end of the line now.
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002505 if (buf->buf == curwin->w_buffer)
2506 check_cursor_col();
2507
2508 MZ_GC_UNREG();
2509 raise_if_error();
2510 return scheme_void;
2511 }
2512}
2513
2514 static void
2515free_array(char **array)
2516{
2517 char **curr = array;
2518 while (*curr != NULL)
2519 vim_free(*curr++);
2520 vim_free(array);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002521}
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 *
2536set_buffer_line_list(void *data, int argc, Scheme_Object **argv)
2537{
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002538 // First of all, we check the type of the supplied MzScheme object.
2539 // There are three cases:
2540 // 1. #f - this is a deletion.
2541 // 2. A list - this is a replacement.
2542 // 3. Anything else - this is an error.
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002543 Vim_Prim *prim = (Vim_Prim *)data;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002544 vim_mz_buffer *buf = NULL;
2545 Scheme_Object *line_list = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002546 int i, old_len, new_len, hi, lo;
2547 long extra;
2548
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002549 MZ_GC_DECL_REG(1);
2550 MZ_GC_VAR_IN_REG(0, line_list);
2551 MZ_GC_REG();
2552
Bram Moolenaar555b2802005-05-19 21:08:39 +00002553#ifdef HAVE_SANDBOX
2554 sandbox_check();
2555#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002556 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;
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002564 if (old_len < 0) // process inverse values wisely
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002565 {
2566 i = lo;
2567 lo = hi;
2568 hi = i;
2569 old_len = -old_len;
2570 }
2571 extra = 0;
2572
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002573 check_line_range(lo, buf->buf); // inclusive
2574 check_line_range(hi - 1, buf->buf); // exclusive
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002575
2576 if (SCHEME_FALSEP(line_list) || SCHEME_NULLP(line_list))
2577 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002578 buf_T *savebuf = curbuf;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002579 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++)
Bram Moolenaarca70c072020-05-30 20:30:46 +02002589 if (ml_delete((linenr_T)lo) == FAIL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002590 {
2591 curbuf = savebuf;
2592 raise_vim_exn(_("cannot delete line"));
2593 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002594 if (buf->buf == curwin->w_buffer)
2595 mz_fix_cursor(lo, hi, -old_len);
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002596 deleted_lines_mark((linenr_T)lo, (long)old_len);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002597 }
2598
2599 curbuf = savebuf;
2600
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002601 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002602 raise_if_error();
2603 return scheme_void;
2604 }
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002605 else
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002606 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002607 buf_T *savebuf = curbuf;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002608
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002609 // List
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002610 new_len = scheme_proper_list_length(line_list);
2611 MZ_GC_CHECK();
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002612 if (new_len < 0) // improper or cyclic list
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002613 scheme_wrong_type(prim->name, "proper list",
2614 2, argc, argv);
2615 else
2616 {
2617 char **array = NULL;
2618 Scheme_Object *line = NULL;
2619 Scheme_Object *rest = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002620
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002621 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
Bram Moolenaara80faa82020-04-12 19:37:17 +02002626 array = ALLOC_CLEAR_MULT(char *, new_len + 1);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002627
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 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02002657 if (ml_delete((linenr_T)lo) == FAIL)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002658 {
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);
2698 }
2699
2700 /*
2701 * Adjust marks. Invalidate any which lie in the
2702 * changed range, and move any in the remainder of the buffer.
2703 */
Bram Moolenaarfd89d7e2016-06-04 20:25:05 +02002704 mark_adjust((linenr_T)lo, (linenr_T)(hi - 1),
2705 (long)MAXLNUM, (long)extra);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002706 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);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002710 curbuf = savebuf;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002711
2712 MZ_GC_UNREG();
2713 raise_if_error();
2714 return scheme_void;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002715 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002716}
2717
2718/*
2719 * (insert-buff-line-list {linenr} {string/string-list} [buffer])
2720 *
Bram Moolenaar0a1c0ec2009-12-16 18:02:47 +00002721 * Insert a number of lines into the specified buffer after the specified line.
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002722 * 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 *
2730insert_buffer_line_list(void *data, int argc, Scheme_Object **argv)
2731{
2732 Vim_Prim *prim = (Vim_Prim *)data;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002733 vim_mz_buffer *buf = NULL;
2734 Scheme_Object *list = NULL;
2735 char *str = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002736 int i, n, size;
2737
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002738 MZ_GC_DECL_REG(1);
2739 MZ_GC_VAR_IN_REG(0, list);
2740 MZ_GC_REG();
2741
Bram Moolenaar555b2802005-05-19 21:08:39 +00002742#ifdef HAVE_SANDBOX
2743 sandbox_check();
2744#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002745 /*
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
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002756 if (n != 0) // 0 can be used in insert
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002757 check_line_range(n, buf->buf);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002758 if (SCHEME_STRINGP(list))
2759 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002760 buf_T *savebuf = curbuf;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002761
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002762 str = string_to_line(list);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002763 curbuf = buf->buf;
2764
2765 if (u_save((linenr_T)n, (linenr_T)(n+1)) == FAIL)
2766 {
2767 curbuf = savebuf;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002768 vim_free(str);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002769 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;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002774 vim_free(str);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002775 raise_vim_exn(_("cannot insert line"));
2776 }
2777 else
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002778 {
2779 vim_free(str);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002780 appended_lines_mark((linenr_T)n, 1L);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002781 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002782
2783 curbuf = savebuf;
2784 update_screen(VALID);
2785
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002786 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002787 raise_if_error();
2788 return scheme_void;
2789 }
2790
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002791 // List
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002792 size = scheme_proper_list_length(list);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002793 MZ_GC_CHECK();
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002794 if (size < 0) // improper or cyclic list
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002795 scheme_wrong_type(prim->name, "proper list",
2796 2, argc, argv);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002797 else
2798 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002799 Scheme_Object *line = NULL;
2800 Scheme_Object *rest = NULL;
2801 char **array;
2802 buf_T *savebuf = curbuf;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002803
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002804 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
Bram Moolenaara80faa82020-04-12 19:37:17 +02002809 array = ALLOC_CLEAR_MULT(char *, size + 1);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002810
2811 rest = list;
2812 for (i = 0; i < size; ++i)
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;
2844 update_screen(VALID);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002845 }
2846
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002847 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002848 raise_if_error();
2849 return scheme_void;
2850}
2851
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002852/*
2853 * Predicates
2854 */
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002855/*
2856 * (buff? obj)
2857 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002858 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02002859vim_bufferp(void *data UNUSED, int argc UNUSED, Scheme_Object **argv)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002860{
2861 if (SCHEME_VIMBUFFERP(argv[0]))
2862 return scheme_true;
2863 else
2864 return scheme_false;
2865}
2866
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002867/*
2868 * (win? obj)
2869 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002870 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02002871vim_windowp(void *data UNUSED, int argc UNUSED, Scheme_Object **argv)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002872{
2873 if (SCHEME_VIMWINDOWP(argv[0]))
2874 return scheme_true;
2875 else
2876 return scheme_false;
2877}
2878
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002879/*
2880 * (buff-valid? obj)
2881 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002882 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02002883vim_buffer_validp(void *data UNUSED, int argc UNUSED, Scheme_Object **argv)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002884{
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
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002892/*
2893 * (win-valid? obj)
2894 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002895 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02002896vim_window_validp(void *data UNUSED, int argc UNUSED, Scheme_Object **argv)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002897{
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 *
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002914 * All internal nulls are replaced by newline characters.
2915 * It is an error for the string to contain newline characters.
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002916 *
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002917 * Returns pointer to Vim allocated memory
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002918 */
2919 static char *
2920string_to_line(Scheme_Object *obj)
2921{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002922 char *scheme_str = NULL;
2923 char *vim_str = NULL;
Bram Moolenaar75676462013-01-30 14:55:42 +01002924 OUTPUT_LEN_TYPE len;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002925 int i;
2926
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002927 scheme_str = scheme_display_to_string(obj, &len);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002928
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002929 // Error checking: String must not contain newlines, as we
2930 // are replacing a single line, and we must replace it with
2931 // a single line.
Bram Moolenaar75676462013-01-30 14:55:42 +01002932 if (memchr(scheme_str, '\n', len))
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002933 scheme_signal_error(_("string cannot contain newlines"));
2934
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002935 vim_str = alloc(len + 1);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002936
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002937 // Create a copy of the string, with internal nulls replaced by
2938 // newline characters, as is the vim convention.
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002939 for (i = 0; i < len; ++i)
2940 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002941 if (scheme_str[i] == '\0')
2942 vim_str[i] = '\n';
2943 else
2944 vim_str[i] = scheme_str[i];
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002945 }
2946
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002947 vim_str[i] = '\0';
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002948
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002949 MZ_GC_CHECK();
2950 return vim_str;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002951}
2952
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002953#ifdef FEAT_EVAL
2954/*
2955 * Convert Vim value into MzScheme, adopted from if_python.c
2956 */
2957 static Scheme_Object *
Bram Moolenaar75676462013-01-30 14:55:42 +01002958vim_to_mzscheme(typval_T *vim_value)
2959{
2960 Scheme_Object *result = NULL;
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002961 // hash table to store visited values to avoid infinite loops
Bram Moolenaar75676462013-01-30 14:55:42 +01002962 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 *
2979vim_to_mzscheme_impl(typval_T *vim_value, int depth, Scheme_Hash_Table *visited)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002980{
2981 Scheme_Object *result = NULL;
2982 int new_value = TRUE;
2983
Bram Moolenaar75676462013-01-30 14:55:42 +01002984 MZ_GC_DECL_REG(2);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002985 MZ_GC_VAR_IN_REG(0, result);
Bram Moolenaar75676462013-01-30 14:55:42 +01002986 MZ_GC_VAR_IN_REG(1, visited);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002987 MZ_GC_REG();
2988
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002989 // Avoid infinite recursion
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002990 if (depth > 100)
2991 {
2992 MZ_GC_UNREG();
2993 return scheme_void;
2994 }
2995
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01002996 // Check if we run into a recursive loop. The item must be in visited
2997 // then and we can use it again.
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002998 result = scheme_hash_get(visited, (Scheme_Object *)vim_value);
2999 MZ_GC_CHECK();
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003000 if (result != NULL) // found, do nothing
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003001 new_value = FALSE;
3002 else if (vim_value->v_type == VAR_STRING)
3003 {
Bram Moolenaar75676462013-01-30 14:55:42 +01003004 result = scheme_make_byte_string((char *)vim_value->vval.v_string);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003005 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# ifdef FEAT_FLOAT
3013 else if (vim_value->v_type == VAR_FLOAT)
3014 {
3015 result = scheme_make_double((double)vim_value->vval.v_float);
3016 MZ_GC_CHECK();
3017 }
3018# endif
3019 else if (vim_value->v_type == VAR_LIST)
3020 {
3021 list_T *list = vim_value->vval.v_list;
3022 listitem_T *curr;
3023
3024 if (list == NULL || list->lv_first == NULL)
3025 result = scheme_null;
3026 else
3027 {
3028 Scheme_Object *obj = NULL;
3029
3030 MZ_GC_DECL_REG(1);
3031 MZ_GC_VAR_IN_REG(0, obj);
3032 MZ_GC_REG();
3033
Bram Moolenaar0ff6aad2020-01-29 21:27:21 +01003034 curr = list->lv_u.mat.lv_last;
Bram Moolenaar75676462013-01-30 14:55:42 +01003035 obj = vim_to_mzscheme_impl(&curr->li_tv, depth + 1, visited);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003036 result = scheme_make_pair(obj, scheme_null);
3037 MZ_GC_CHECK();
3038
3039 while (curr != list->lv_first)
3040 {
3041 curr = curr->li_prev;
Bram Moolenaar75676462013-01-30 14:55:42 +01003042 obj = vim_to_mzscheme_impl(&curr->li_tv, depth + 1, visited);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003043 result = scheme_make_pair(obj, result);
3044 MZ_GC_CHECK();
3045 }
3046 }
3047 MZ_GC_UNREG();
3048 }
3049 else if (vim_value->v_type == VAR_DICT)
3050 {
3051 Scheme_Object *key = NULL;
3052 Scheme_Object *obj = NULL;
3053
3054 MZ_GC_DECL_REG(2);
3055 MZ_GC_VAR_IN_REG(0, key);
3056 MZ_GC_VAR_IN_REG(1, obj);
3057 MZ_GC_REG();
3058
3059 result = (Scheme_Object *)scheme_make_hash_table(SCHEME_hash_ptr);
3060 MZ_GC_CHECK();
3061 if (vim_value->vval.v_dict != NULL)
3062 {
3063 hashtab_T *ht = &vim_value->vval.v_dict->dv_hashtab;
3064 long_u todo = ht->ht_used;
3065 hashitem_T *hi;
3066 dictitem_T *di;
3067
3068 for (hi = ht->ht_array; todo > 0; ++hi)
3069 {
3070 if (!HASHITEM_EMPTY(hi))
3071 {
3072 --todo;
3073
3074 di = dict_lookup(hi);
Bram Moolenaar75676462013-01-30 14:55:42 +01003075 obj = vim_to_mzscheme_impl(&di->di_tv, depth + 1, visited);
3076 key = scheme_make_byte_string((char *)hi->hi_key);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003077 MZ_GC_CHECK();
3078 scheme_hash_set((Scheme_Hash_Table *)result, key, obj);
3079 MZ_GC_CHECK();
3080 }
3081 }
3082 }
3083 MZ_GC_UNREG();
3084 }
Bram Moolenaar75676462013-01-30 14:55:42 +01003085 else if (vim_value->v_type == VAR_FUNC)
3086 {
3087 Scheme_Object *funcname = NULL;
3088
3089 MZ_GC_DECL_REG(1);
3090 MZ_GC_VAR_IN_REG(0, funcname);
3091 MZ_GC_REG();
3092
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003093 // FIXME: func_ref() and func_unref() are needed.
Bram Moolenaar75676462013-01-30 14:55:42 +01003094 funcname = scheme_make_byte_string((char *)vim_value->vval.v_string);
3095 MZ_GC_CHECK();
3096 result = scheme_make_closed_prim_w_arity(vim_funcref, funcname,
3097 (const char *)BYTE_STRING_VALUE(funcname), 0, -1);
3098 MZ_GC_CHECK();
3099
3100 MZ_GC_UNREG();
3101 }
Bram Moolenaar67c2c052016-03-30 22:03:02 +02003102 else if (vim_value->v_type == VAR_PARTIAL)
3103 {
3104 if (vim_value->vval.v_partial == NULL)
3105 result = scheme_null;
3106 else
3107 {
3108 Scheme_Object *funcname = NULL;
3109
3110 MZ_GC_DECL_REG(1);
3111 MZ_GC_VAR_IN_REG(0, funcname);
3112 MZ_GC_REG();
3113
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003114 // FIXME: func_ref() and func_unref() are needed.
3115 // TODO: Support pt_dict and pt_argv.
Bram Moolenaar67c2c052016-03-30 22:03:02 +02003116 funcname = scheme_make_byte_string(
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003117 (char *)partial_name(vim_value->vval.v_partial));
Bram Moolenaar67c2c052016-03-30 22:03:02 +02003118 MZ_GC_CHECK();
3119 result = scheme_make_closed_prim_w_arity(vim_funcref, funcname,
3120 (const char *)BYTE_STRING_VALUE(funcname), 0, -1);
3121 MZ_GC_CHECK();
3122
3123 MZ_GC_UNREG();
3124 }
3125 }
Bram Moolenaar9b4a15d2020-01-11 16:05:23 +01003126 else if (vim_value->v_type == VAR_BOOL || vim_value->v_type == VAR_SPECIAL)
Bram Moolenaar520e1e42016-01-23 19:46:28 +01003127 {
3128 if (vim_value->vval.v_number <= VVAL_TRUE)
3129 result = scheme_make_integer((long)vim_value->vval.v_number);
3130 else
3131 result = scheme_null;
3132 MZ_GC_CHECK();
3133 }
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003134 else
3135 {
3136 result = scheme_void;
3137 new_value = FALSE;
3138 }
3139 if (new_value)
3140 {
3141 scheme_hash_set(visited, (Scheme_Object *)vim_value, result);
3142 MZ_GC_CHECK();
3143 }
3144 MZ_GC_UNREG();
3145 return result;
3146}
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003147
3148 static int
Bram Moolenaar75676462013-01-30 14:55:42 +01003149mzscheme_to_vim(Scheme_Object *obj, typval_T *tv)
3150{
3151 int i, status;
3152 Scheme_Hash_Table *visited = NULL;
3153
3154 MZ_GC_DECL_REG(2);
3155 MZ_GC_VAR_IN_REG(0, obj);
3156 MZ_GC_VAR_IN_REG(1, visited);
3157 MZ_GC_REG();
3158
3159 visited = scheme_make_hash_table(SCHEME_hash_ptr);
3160 MZ_GC_CHECK();
3161
3162 status = mzscheme_to_vim_impl(obj, tv, 1, visited);
3163 for (i = 0; i < visited->size; ++i)
3164 {
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003165 // free up remembered objects
Bram Moolenaar75676462013-01-30 14:55:42 +01003166 if (visited->vals[i] != NULL)
3167 free_tv((typval_T *)visited->vals[i]);
3168 }
3169
3170 MZ_GC_UNREG();
3171 return status;
3172}
3173 static int
3174mzscheme_to_vim_impl(Scheme_Object *obj, typval_T *tv, int depth,
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003175 Scheme_Hash_Table *visited)
3176{
3177 int status = OK;
3178 typval_T *found;
Bram Moolenaar75676462013-01-30 14:55:42 +01003179
3180 MZ_GC_DECL_REG(2);
3181 MZ_GC_VAR_IN_REG(0, obj);
3182 MZ_GC_VAR_IN_REG(1, visited);
3183 MZ_GC_REG();
3184
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003185 MZ_GC_CHECK();
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003186 if (depth > 100) // limit the deepest recursion level
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003187 {
3188 tv->v_type = VAR_NUMBER;
3189 tv->vval.v_number = 0;
3190 return FAIL;
3191 }
3192
3193 found = (typval_T *)scheme_hash_get(visited, obj);
3194 if (found != NULL)
3195 copy_tv(found, tv);
3196 else if (SCHEME_VOIDP(obj))
3197 {
Bram Moolenaar520e1e42016-01-23 19:46:28 +01003198 tv->v_type = VAR_SPECIAL;
3199 tv->vval.v_number = VVAL_NULL;
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003200 }
3201 else if (SCHEME_INTP(obj))
3202 {
3203 tv->v_type = VAR_NUMBER;
3204 tv->vval.v_number = SCHEME_INT_VAL(obj);
3205 }
3206 else if (SCHEME_BOOLP(obj))
3207 {
Bram Moolenaar9b4a15d2020-01-11 16:05:23 +01003208 tv->v_type = VAR_BOOL;
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003209 tv->vval.v_number = SCHEME_TRUEP(obj);
3210 }
3211# ifdef FEAT_FLOAT
3212 else if (SCHEME_DBLP(obj))
3213 {
3214 tv->v_type = VAR_FLOAT;
3215 tv->vval.v_float = SCHEME_DBL_VAL(obj);
3216 }
3217# endif
Bram Moolenaar75676462013-01-30 14:55:42 +01003218 else if (SCHEME_BYTE_STRINGP(obj))
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003219 {
3220 tv->v_type = VAR_STRING;
Bram Moolenaar75676462013-01-30 14:55:42 +01003221 tv->vval.v_string = vim_strsave(BYTE_STRING_VALUE(obj));
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003222 }
Bram Moolenaar75676462013-01-30 14:55:42 +01003223# if MZSCHEME_VERSION_MAJOR >= 299
3224 else if (SCHEME_CHAR_STRINGP(obj))
3225 {
3226 Scheme_Object *tmp = NULL;
3227 MZ_GC_DECL_REG(1);
3228 MZ_GC_VAR_IN_REG(0, tmp);
3229 MZ_GC_REG();
3230
3231 tmp = scheme_char_string_to_byte_string(obj);
3232 tv->v_type = VAR_STRING;
3233 tv->vval.v_string = vim_strsave(BYTE_STRING_VALUE(tmp));
3234 MZ_GC_UNREG();
3235 }
3236#endif
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003237 else if (SCHEME_VECTORP(obj) || SCHEME_NULLP(obj)
3238 || SCHEME_PAIRP(obj) || SCHEME_MUTABLE_PAIRP(obj))
3239 {
3240 list_T *list = list_alloc();
3241 if (list == NULL)
3242 status = FAIL;
3243 else
3244 {
3245 int i;
3246 Scheme_Object *curr = NULL;
3247 Scheme_Object *cval = NULL;
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003248 // temporary var to hold current element of vectors and pairs
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003249 typval_T *v;
3250
3251 MZ_GC_DECL_REG(2);
3252 MZ_GC_VAR_IN_REG(0, curr);
3253 MZ_GC_VAR_IN_REG(1, cval);
3254 MZ_GC_REG();
3255
3256 tv->v_type = VAR_LIST;
3257 tv->vval.v_list = list;
3258 ++list->lv_refcount;
3259
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003260 v = ALLOC_ONE(typval_T);
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003261 if (v == NULL)
3262 status = FAIL;
3263 else
3264 {
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003265 // add the value in advance to allow handling of self-referential
3266 // data structures
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003267 typval_T *visited_tv = ALLOC_ONE(typval_T);
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003268 copy_tv(tv, visited_tv);
3269 scheme_hash_set(visited, obj, (Scheme_Object *)visited_tv);
3270
3271 if (SCHEME_VECTORP(obj))
3272 {
3273 for (i = 0; i < SCHEME_VEC_SIZE(obj); ++i)
3274 {
3275 cval = SCHEME_VEC_ELS(obj)[i];
Bram Moolenaar75676462013-01-30 14:55:42 +01003276 status = mzscheme_to_vim_impl(cval, v, depth + 1, visited);
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003277 if (status == FAIL)
3278 break;
3279 status = list_append_tv(list, v);
3280 clear_tv(v);
3281 if (status == FAIL)
3282 break;
3283 }
3284 }
3285 else if (SCHEME_PAIRP(obj) || SCHEME_MUTABLE_PAIRP(obj))
3286 {
3287 for (curr = obj;
3288 SCHEME_PAIRP(curr) || SCHEME_MUTABLE_PAIRP(curr);
3289 curr = SCHEME_CDR(curr))
3290 {
3291 cval = SCHEME_CAR(curr);
Bram Moolenaar75676462013-01-30 14:55:42 +01003292 status = mzscheme_to_vim_impl(cval, v, depth + 1, visited);
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003293 if (status == FAIL)
3294 break;
3295 status = list_append_tv(list, v);
3296 clear_tv(v);
3297 if (status == FAIL)
3298 break;
3299 }
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003300 // improper list not terminated with null
3301 // need to handle the last element
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003302 if (status == OK && !SCHEME_NULLP(curr))
3303 {
Bram Moolenaar75676462013-01-30 14:55:42 +01003304 status = mzscheme_to_vim_impl(cval, v, depth + 1, visited);
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003305 if (status == OK)
3306 {
3307 status = list_append_tv(list, v);
3308 clear_tv(v);
3309 }
3310 }
3311 }
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003312 // nothing to do for scheme_null
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003313 vim_free(v);
3314 }
3315 MZ_GC_UNREG();
3316 }
3317 }
3318 else if (SCHEME_HASHTP(obj))
3319 {
3320 int i;
3321 dict_T *dict;
3322 Scheme_Object *key = NULL;
3323 Scheme_Object *val = NULL;
3324
3325 MZ_GC_DECL_REG(2);
3326 MZ_GC_VAR_IN_REG(0, key);
3327 MZ_GC_VAR_IN_REG(1, val);
3328 MZ_GC_REG();
3329
3330 dict = dict_alloc();
3331 if (dict == NULL)
3332 status = FAIL;
3333 else
3334 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003335 typval_T *visited_tv = ALLOC_ONE(typval_T);
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003336
3337 tv->v_type = VAR_DICT;
3338 tv->vval.v_dict = dict;
3339 ++dict->dv_refcount;
3340
3341 copy_tv(tv, visited_tv);
3342 scheme_hash_set(visited, obj, (Scheme_Object *)visited_tv);
3343
3344 for (i = 0; i < ((Scheme_Hash_Table *)obj)->size; ++i)
3345 {
3346 if (((Scheme_Hash_Table *) obj)->vals[i] != NULL)
3347 {
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003348 // generate item for `display'ed Scheme key
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003349 dictitem_T *item = dictitem_alloc((char_u *)string_to_line(
3350 ((Scheme_Hash_Table *) obj)->keys[i]));
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003351 // convert Scheme val to Vim and add it to the dict
Bram Moolenaar75676462013-01-30 14:55:42 +01003352 if (mzscheme_to_vim_impl(((Scheme_Hash_Table *) obj)->vals[i],
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003353 &item->di_tv, depth + 1, visited) == FAIL
3354 || dict_add(dict, item) == FAIL)
3355 {
3356 dictitem_free(item);
3357 status = FAIL;
3358 break;
3359 }
3360 }
3361
3362 }
3363 }
3364 MZ_GC_UNREG();
3365 }
3366 else
3367 {
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003368 // `display' any other value to string
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003369 tv->v_type = VAR_STRING;
3370 tv->vval.v_string = (char_u *)string_to_line(obj);
3371 }
Bram Moolenaar75676462013-01-30 14:55:42 +01003372 MZ_GC_UNREG();
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003373 return status;
3374}
3375
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003376/*
3377 * Scheme prim procedure wrapping Vim funcref
3378 */
Bram Moolenaar75676462013-01-30 14:55:42 +01003379 static Scheme_Object *
3380vim_funcref(void *name, int argc, Scheme_Object **argv)
3381{
3382 int i;
3383 typval_T args;
3384 int status = OK;
3385 Scheme_Object *result = NULL;
3386 list_T *list = list_alloc();
3387
3388 MZ_GC_DECL_REG(1);
3389 MZ_GC_VAR_IN_REG(0, result);
3390 MZ_GC_REG();
3391
3392 result = scheme_void;
3393 if (list == NULL)
3394 status = FAIL;
3395 else
3396 {
3397 args.v_type = VAR_LIST;
3398 args.vval.v_list = list;
3399 ++list->lv_refcount;
3400 for (i = 0; status == OK && i < argc; ++i)
3401 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003402 typval_T *v = ALLOC_ONE(typval_T);
Bram Moolenaar75676462013-01-30 14:55:42 +01003403 if (v == NULL)
3404 status = FAIL;
3405 else
3406 {
3407 status = mzscheme_to_vim(argv[i], v);
3408 if (status == OK)
3409 {
3410 status = list_append_tv(list, v);
3411 clear_tv(v);
3412 }
3413 vim_free(v);
3414 }
3415 }
3416 if (status == OK)
3417 {
3418 typval_T ret;
3419 ret.v_type = VAR_UNKNOWN;
3420
3421 mzscheme_call_vim(BYTE_STRING_VALUE((Scheme_Object *)name), &args, &ret);
3422 MZ_GC_CHECK();
3423 result = vim_to_mzscheme(&ret);
3424 clear_tv(&ret);
3425 MZ_GC_CHECK();
3426 }
3427 }
3428 clear_tv(&args);
3429 MZ_GC_UNREG();
3430 if (status != OK)
3431 raise_vim_exn(_("error converting Scheme values to Vim"));
3432 else
3433 raise_if_error();
3434 return result;
3435}
3436
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003437 void
3438do_mzeval(char_u *str, typval_T *rettv)
3439{
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003440 Scheme_Object *ret = NULL;
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003441
Bram Moolenaar75676462013-01-30 14:55:42 +01003442 MZ_GC_DECL_REG(1);
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003443 MZ_GC_VAR_IN_REG(0, ret);
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003444 MZ_GC_REG();
3445
3446 if (mzscheme_init())
3447 {
3448 MZ_GC_UNREG();
3449 return;
3450 }
3451
3452 MZ_GC_CHECK();
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003453 if (eval_with_exn_handling(str, do_eval, &ret) == OK)
Bram Moolenaar75676462013-01-30 14:55:42 +01003454 mzscheme_to_vim(ret, rettv);
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003455
3456 MZ_GC_UNREG();
3457}
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003458#endif
3459
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003460/*
3461 * Check to see whether a Vim error has been reported, or a keyboard
3462 * interrupt (from vim --> got_int) has been detected.
3463 */
3464 static int
3465vim_error_check(void)
3466{
3467 return (got_int || did_emsg);
3468}
3469
3470/*
3471 * register Scheme exn:vim
3472 */
3473 static void
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003474register_vim_exn(void)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003475{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003476 int nc = 0;
3477 int i;
3478 Scheme_Object *struct_exn = NULL;
3479 Scheme_Object *exn_name = NULL;
3480
3481 MZ_GC_DECL_REG(2);
3482 MZ_GC_VAR_IN_REG(0, struct_exn);
3483 MZ_GC_VAR_IN_REG(1, exn_name);
3484 MZ_GC_REG();
3485
3486 exn_name = scheme_intern_symbol("exn:vim");
3487 MZ_GC_CHECK();
3488 struct_exn = scheme_builtin_value("struct:exn");
3489 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003490
3491 if (vim_exn == NULL)
3492 vim_exn = scheme_make_struct_type(exn_name,
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003493 struct_exn, NULL, 0, 0, NULL, NULL
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003494#if MZSCHEME_VERSION_MAJOR >= 299
3495 , NULL
3496#endif
3497 );
3498
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003499
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003500 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003501 Scheme_Object **tmp = NULL;
3502 Scheme_Object *exn_names[5] = {NULL, NULL, NULL, NULL, NULL};
3503 Scheme_Object *exn_values[5] = {NULL, NULL, NULL, NULL, NULL};
3504 MZ_GC_DECL_REG(6);
3505 MZ_GC_ARRAY_VAR_IN_REG(0, exn_names, 5);
3506 MZ_GC_ARRAY_VAR_IN_REG(3, exn_values, 5);
3507 MZ_GC_REG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003508
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003509 tmp = scheme_make_struct_names(exn_name, scheme_null, 0, &nc);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003510 mch_memmove(exn_names, tmp, nc * sizeof(Scheme_Object *));
3511 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003512
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003513 tmp = scheme_make_struct_values(vim_exn, exn_names, nc, 0);
3514 mch_memmove(exn_values, tmp, nc * sizeof(Scheme_Object *));
3515 MZ_GC_CHECK();
3516
3517 for (i = 0; i < nc; i++)
3518 {
3519 scheme_add_global_symbol(exn_names[i],
3520 exn_values[i], environment);
3521 MZ_GC_CHECK();
3522 }
3523 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003524 }
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003525 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003526}
3527
3528/*
3529 * raise exn:vim, may be with additional info string
3530 */
3531 void
3532raise_vim_exn(const char *add_info)
3533{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003534 char *fmt = _("Vim error: ~a");
3535 Scheme_Object *argv[2] = {NULL, NULL};
3536 Scheme_Object *exn = NULL;
Bram Moolenaar75676462013-01-30 14:55:42 +01003537 Scheme_Object *byte_string = NULL;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003538
Bram Moolenaar75676462013-01-30 14:55:42 +01003539 MZ_GC_DECL_REG(5);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003540 MZ_GC_ARRAY_VAR_IN_REG(0, argv, 2);
3541 MZ_GC_VAR_IN_REG(3, exn);
Bram Moolenaar75676462013-01-30 14:55:42 +01003542 MZ_GC_VAR_IN_REG(4, byte_string);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003543 MZ_GC_REG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003544
3545 if (add_info != NULL)
3546 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003547 char *c_string = NULL;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003548 Scheme_Object *info = NULL;
3549
3550 MZ_GC_DECL_REG(3);
3551 MZ_GC_VAR_IN_REG(0, c_string);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003552 MZ_GC_VAR_IN_REG(2, info);
3553 MZ_GC_REG();
3554
Bram Moolenaar75676462013-01-30 14:55:42 +01003555 info = scheme_make_byte_string(add_info);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003556 MZ_GC_CHECK();
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02003557 c_string = scheme_format_utf8(fmt, (int)STRLEN(fmt), 1, &info, NULL);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003558 MZ_GC_CHECK();
Bram Moolenaar75676462013-01-30 14:55:42 +01003559 byte_string = scheme_make_byte_string(c_string);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003560 MZ_GC_CHECK();
3561 argv[0] = scheme_byte_string_to_char_string(byte_string);
Bram Moolenaar555b2802005-05-19 21:08:39 +00003562 SCHEME_SET_IMMUTABLE(argv[0]);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003563 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003564 }
3565 else
Bram Moolenaar75676462013-01-30 14:55:42 +01003566 {
3567 byte_string = scheme_make_byte_string(_("Vim error"));
3568 MZ_GC_CHECK();
3569 argv[0] = scheme_byte_string_to_char_string(byte_string);
3570 MZ_GC_CHECK();
3571 }
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003572 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003573
Bram Moolenaar049377e2007-05-12 15:32:12 +00003574#if MZSCHEME_VERSION_MAJOR < 360
3575 argv[1] = scheme_current_continuation_marks();
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003576 MZ_GC_CHECK();
Bram Moolenaar049377e2007-05-12 15:32:12 +00003577#else
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00003578 argv[1] = scheme_current_continuation_marks(NULL);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003579 MZ_GC_CHECK();
Bram Moolenaar049377e2007-05-12 15:32:12 +00003580#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003581
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003582 exn = scheme_make_struct_instance(vim_exn, 2, argv);
3583 MZ_GC_CHECK();
3584 scheme_raise(exn);
3585 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003586}
3587
3588 void
3589raise_if_error(void)
3590{
3591 if (vim_error_check())
3592 raise_vim_exn(NULL);
3593}
3594
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003595/*
3596 * get buffer:
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003597 * either current
3598 * or passed as argv[argnum] with checks
3599 */
3600 static vim_mz_buffer *
3601get_buffer_arg(const char *fname, int argnum, int argc, Scheme_Object **argv)
3602{
3603 vim_mz_buffer *b;
3604
3605 if (argc < argnum + 1)
3606 return get_vim_curr_buffer();
3607 if (!SCHEME_VIMBUFFERP(argv[argnum]))
3608 scheme_wrong_type(fname, "vim-buffer", argnum, argc, argv);
3609 b = (vim_mz_buffer *)argv[argnum];
3610 (void)get_valid_buffer(argv[argnum]);
3611 return b;
3612}
3613
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003614/*
3615 * get window:
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003616 * either current
3617 * or passed as argv[argnum] with checks
3618 */
3619 static vim_mz_window *
3620get_window_arg(const char *fname, int argnum, int argc, Scheme_Object **argv)
3621{
3622 vim_mz_window *w;
3623
3624 if (argc < argnum + 1)
3625 return get_vim_curr_window();
3626 w = (vim_mz_window *)argv[argnum];
3627 if (!SCHEME_VIMWINDOWP(argv[argnum]))
3628 scheme_wrong_type(fname, "vim-window", argnum, argc, argv);
3629 (void)get_valid_window(argv[argnum]);
3630 return w;
3631}
3632
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003633/*
3634 * get valid Vim buffer from Scheme_Object*
3635 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003636buf_T *get_valid_buffer(void *obj)
3637{
3638 buf_T *buf = ((vim_mz_buffer *)obj)->buf;
3639
3640 if (buf == INVALID_BUFFER_VALUE)
3641 scheme_signal_error(_("buffer is invalid"));
3642 return buf;
3643}
3644
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003645/*
3646 * get valid Vim window from Scheme_Object*
3647 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003648win_T *get_valid_window(void *obj)
3649{
3650 win_T *win = ((vim_mz_window *)obj)->win;
3651 if (win == INVALID_WINDOW_VALUE)
3652 scheme_signal_error(_("window is invalid"));
3653 return win;
3654}
3655
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003656 int
3657mzthreads_allowed(void)
3658{
3659 return mz_threads_allow;
3660}
3661
3662 static int
3663line_in_range(linenr_T lnum, buf_T *buf)
3664{
3665 return (lnum > 0 && lnum <= buf->b_ml.ml_line_count);
3666}
3667
3668 static void
3669check_line_range(linenr_T lnum, buf_T *buf)
3670{
3671 if (!line_in_range(lnum, buf))
3672 scheme_signal_error(_("linenr out of range"));
3673}
3674
3675/*
3676 * Check if deleting lines made the cursor position invalid
3677 * (or you'll get msg from Vim about invalid linenr).
3678 * Changed the lines from "lo" to "hi" and added "extra" lines (negative if
3679 * deleted). Got from if_python.c
3680 */
3681 static void
3682mz_fix_cursor(int lo, int hi, int extra)
3683{
3684 if (curwin->w_cursor.lnum >= lo)
3685 {
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003686 // Adjust the cursor position if it's in/after the changed
3687 // lines.
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003688 if (curwin->w_cursor.lnum >= hi)
3689 {
3690 curwin->w_cursor.lnum += extra;
3691 check_cursor_col();
3692 }
3693 else if (extra < 0)
3694 {
3695 curwin->w_cursor.lnum = lo;
3696 check_cursor();
3697 }
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003698 else
3699 check_cursor_col();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003700 changed_cline_bef_curs();
3701 }
3702 invalidate_botline();
3703}
3704
3705static Vim_Prim prims[]=
3706{
3707 /*
3708 * Buffer-related commands
3709 */
3710 {get_buffer_line, "get-buff-line", 1, 2},
3711 {set_buffer_line, "set-buff-line", 2, 3},
3712 {get_buffer_line_list, "get-buff-line-list", 2, 3},
3713 {get_buffer_name, "get-buff-name", 0, 1},
3714 {get_buffer_num, "get-buff-num", 0, 1},
3715 {get_buffer_size, "get-buff-size", 0, 1},
3716 {set_buffer_line_list, "set-buff-line-list", 3, 4},
3717 {insert_buffer_line_list, "insert-buff-line-list", 2, 3},
3718 {get_curr_buffer, "curr-buff", 0, 0},
3719 {get_buffer_count, "buff-count", 0, 0},
3720 {get_next_buffer, "get-next-buff", 0, 1},
3721 {get_prev_buffer, "get-prev-buff", 0, 1},
3722 {mzscheme_open_buffer, "open-buff", 1, 1},
3723 {get_buffer_by_name, "get-buff-by-name", 1, 1},
3724 {get_buffer_by_num, "get-buff-by-num", 1, 1},
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003725 /*
3726 * Window-related commands
3727 */
3728 {get_curr_win, "curr-win", 0, 0},
3729 {get_window_count, "win-count", 0, 0},
3730 {get_window_by_num, "get-win-by-num", 1, 1},
3731 {get_window_num, "get-win-num", 0, 1},
3732 {get_window_buffer, "get-win-buffer", 0, 1},
3733 {get_window_height, "get-win-height", 0, 1},
3734 {set_window_height, "set-win-height", 1, 2},
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003735 {get_window_width, "get-win-width", 0, 1},
3736 {set_window_width, "set-win-width", 1, 2},
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003737 {get_cursor, "get-cursor", 0, 1},
3738 {set_cursor, "set-cursor", 1, 2},
3739 {get_window_list, "get-win-list", 0, 1},
3740 /*
3741 * Vim-related commands
3742 */
3743 {vim_command, "command", 1, 1},
3744 {vim_eval, "eval", 1, 1},
3745 {get_range_start, "range-start", 0, 0},
3746 {get_range_end, "range-end", 0, 0},
3747 {mzscheme_beep, "beep", 0, 0},
3748 {get_option, "get-option", 1, 2},
3749 {set_option, "set-option", 1, 2},
3750 /*
3751 * small utilities
3752 */
3753 {vim_bufferp, "buff?", 1, 1},
3754 {vim_windowp, "win?", 1, 1},
3755 {vim_buffer_validp, "buff-valid?", 1, 1},
3756 {vim_window_validp, "win-valid?", 1, 1}
3757};
3758
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003759/*
3760 * return MzScheme wrapper for curbuf
3761 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003762 static vim_mz_buffer *
3763get_vim_curr_buffer(void)
3764{
Bram Moolenaare344bea2005-09-01 20:46:49 +00003765 if (curbuf->b_mzscheme_ref == NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003766 return (vim_mz_buffer *)buffer_new(curbuf);
3767 else
Bram Moolenaar75676462013-01-30 14:55:42 +01003768 return BUFFER_REF(curbuf);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003769}
3770
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003771/*
3772 * return MzScheme wrapper for curwin
3773 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003774 static vim_mz_window *
3775get_vim_curr_window(void)
3776{
Bram Moolenaare344bea2005-09-01 20:46:49 +00003777 if (curwin->w_mzscheme_ref == NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003778 return (vim_mz_window *)window_new(curwin);
3779 else
Bram Moolenaar75676462013-01-30 14:55:42 +01003780 return WINDOW_REF(curwin);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003781}
3782
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003783 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003784make_modules(void)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003785{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003786 int i;
3787 Scheme_Env *mod = NULL;
3788 Scheme_Object *vimext_symbol = NULL;
3789 Scheme_Object *closed_prim = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003790
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003791 MZ_GC_DECL_REG(3);
3792 MZ_GC_VAR_IN_REG(0, mod);
3793 MZ_GC_VAR_IN_REG(1, vimext_symbol);
3794 MZ_GC_VAR_IN_REG(2, closed_prim);
3795 MZ_GC_REG();
3796
3797 vimext_symbol = scheme_intern_symbol("vimext");
3798 MZ_GC_CHECK();
3799 mod = scheme_primitive_module(vimext_symbol, environment);
3800 MZ_GC_CHECK();
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003801 // all prims made closed so they can access their own names
K.Takataeeec2542021-06-02 13:28:16 +02003802 for (i = 0; i < (int)ARRAY_LENGTH(prims); i++)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003803 {
3804 Vim_Prim *prim = prims + i;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003805 closed_prim = scheme_make_closed_prim_w_arity(prim->prim, prim, prim->name,
3806 prim->mina, prim->maxa);
3807 scheme_add_global(prim->name, closed_prim, mod);
3808 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003809 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003810 scheme_finish_primitive_module(mod);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003811 MZ_GC_CHECK();
3812 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003813}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003814
Bram Moolenaar555b2802005-05-19 21:08:39 +00003815#ifdef HAVE_SANDBOX
3816static Scheme_Object *M_write = NULL;
3817static Scheme_Object *M_read = NULL;
3818static Scheme_Object *M_execute = NULL;
3819static Scheme_Object *M_delete = NULL;
3820
3821 static void
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00003822sandbox_check(void)
Bram Moolenaar555b2802005-05-19 21:08:39 +00003823{
3824 if (sandbox)
3825 raise_vim_exn(_("not allowed in the Vim sandbox"));
3826}
3827
Bram Moolenaar2ab2e862019-12-04 21:24:53 +01003828/*
3829 * security guards to force Vim's sandbox restrictions on MzScheme level
3830 */
Bram Moolenaar555b2802005-05-19 21:08:39 +00003831 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02003832sandbox_file_guard(int argc UNUSED, Scheme_Object **argv)
Bram Moolenaar555b2802005-05-19 21:08:39 +00003833{
3834 if (sandbox)
3835 {
3836 Scheme_Object *requested_access = argv[2];
3837
3838 if (M_write == NULL)
3839 {
3840 MZ_REGISTER_STATIC(M_write);
3841 M_write = scheme_intern_symbol("write");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003842 MZ_GC_CHECK();
Bram Moolenaar555b2802005-05-19 21:08:39 +00003843 }
3844 if (M_read == NULL)
3845 {
3846 MZ_REGISTER_STATIC(M_read);
3847 M_read = scheme_intern_symbol("read");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003848 MZ_GC_CHECK();
Bram Moolenaar555b2802005-05-19 21:08:39 +00003849 }
3850 if (M_execute == NULL)
3851 {
3852 MZ_REGISTER_STATIC(M_execute);
3853 M_execute = scheme_intern_symbol("execute");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003854 MZ_GC_CHECK();
Bram Moolenaar555b2802005-05-19 21:08:39 +00003855 }
3856 if (M_delete == NULL)
3857 {
3858 MZ_REGISTER_STATIC(M_delete);
3859 M_delete = scheme_intern_symbol("delete");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003860 MZ_GC_CHECK();
Bram Moolenaar555b2802005-05-19 21:08:39 +00003861 }
3862
3863 while (!SCHEME_NULLP(requested_access))
3864 {
3865 Scheme_Object *item = SCHEME_CAR(requested_access);
3866 if (scheme_eq(item, M_write) || scheme_eq(item, M_read)
3867 || scheme_eq(item, M_execute) || scheme_eq(item, M_delete))
Bram Moolenaar555b2802005-05-19 21:08:39 +00003868 raise_vim_exn(_("not allowed in the Vim sandbox"));
Bram Moolenaar555b2802005-05-19 21:08:39 +00003869 requested_access = SCHEME_CDR(requested_access);
3870 }
3871 }
3872 return scheme_void;
3873}
3874
3875 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02003876sandbox_network_guard(int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar555b2802005-05-19 21:08:39 +00003877{
3878 return scheme_void;
3879}
3880#endif
Bram Moolenaar76b92b22006-03-24 22:46:53 +00003881
3882#endif