blob: 23b67a99b22f6b9f09dec6fba0c21c74341923d7 [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 Moolenaar76b92b22006-03-24 22:46:53 +000028/* Only do the following when the feature is enabled. Needed for "make
29 * depend". */
30#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 */
50#if MZSCHEME_VERSION_MAJOR >= 500 && defined(WIN32) \
51 && 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 Moolenaar325b7a22004-07-05 15:58:32 +000066/* Base data structures */
67#define SCHEME_VIMBUFFERP(obj) SAME_TYPE(SCHEME_TYPE(obj), mz_buffer_type)
68#define SCHEME_VIMWINDOWP(obj) SAME_TYPE(SCHEME_TYPE(obj), mz_window_type)
69
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;
93 int mina; /* arity information */
94 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 Moolenaar325b7a22004-07-05 15:58:32 +0000118/* Buffer-related commands */
119static Scheme_Object *buffer_new(buf_T *buf);
120static Scheme_Object *get_buffer_by_name(void *, int, Scheme_Object **);
121static Scheme_Object *get_buffer_by_num(void *, int, Scheme_Object **);
122static Scheme_Object *get_buffer_count(void *, int, Scheme_Object **);
123static Scheme_Object *get_buffer_line(void *, int, Scheme_Object **);
124static Scheme_Object *get_buffer_line_list(void *, int, Scheme_Object **);
125static Scheme_Object *get_buffer_name(void *, int, Scheme_Object **);
126static Scheme_Object *get_buffer_num(void *, int, Scheme_Object **);
127static Scheme_Object *get_buffer_size(void *, int, Scheme_Object **);
128static Scheme_Object *get_curr_buffer(void *, int, Scheme_Object **);
129static Scheme_Object *get_next_buffer(void *, int, Scheme_Object **);
130static Scheme_Object *get_prev_buffer(void *, int, Scheme_Object **);
131static Scheme_Object *mzscheme_open_buffer(void *, int, Scheme_Object **);
132static Scheme_Object *set_buffer_line(void *, int, Scheme_Object **);
133static Scheme_Object *set_buffer_line_list(void *, int, Scheme_Object **);
134static Scheme_Object *insert_buffer_line_list(void *, int, Scheme_Object **);
135static Scheme_Object *get_range_start(void *, int, Scheme_Object **);
136static Scheme_Object *get_range_end(void *, int, Scheme_Object **);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000137static vim_mz_buffer *get_vim_curr_buffer(void);
138
139/* Window-related commands */
140static Scheme_Object *window_new(win_T *win);
141static Scheme_Object *get_curr_win(void *, int, Scheme_Object **);
142static Scheme_Object *get_window_count(void *, int, Scheme_Object **);
143static Scheme_Object *get_window_by_num(void *, int, Scheme_Object **);
144static Scheme_Object *get_window_num(void *, int, Scheme_Object **);
145static Scheme_Object *get_window_buffer(void *, int, Scheme_Object **);
146static Scheme_Object *get_window_height(void *, int, Scheme_Object **);
147static Scheme_Object *set_window_height(void *, int, Scheme_Object **);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000148static Scheme_Object *get_window_width(void *, int, Scheme_Object **);
149static Scheme_Object *set_window_width(void *, int, Scheme_Object **);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000150static Scheme_Object *get_cursor(void *, int, Scheme_Object **);
151static Scheme_Object *set_cursor(void *, int, Scheme_Object **);
152static Scheme_Object *get_window_list(void *, int, Scheme_Object **);
153static vim_mz_window *get_vim_curr_window(void);
154
155/* Vim-related commands */
156static Scheme_Object *mzscheme_beep(void *, int, Scheme_Object **);
157static Scheme_Object *get_option(void *, int, Scheme_Object **);
158static Scheme_Object *set_option(void *, int, Scheme_Object **);
159static Scheme_Object *vim_command(void *, int, Scheme_Object **);
160static Scheme_Object *vim_eval(void *, int, Scheme_Object **);
161static Scheme_Object *vim_bufferp(void *data, int, Scheme_Object **);
162static Scheme_Object *vim_windowp(void *data, int, Scheme_Object **);
163static Scheme_Object *vim_buffer_validp(void *data, int, Scheme_Object **);
164static Scheme_Object *vim_window_validp(void *data, int, Scheme_Object **);
165
166/*
167 *========================================================================
168 * Internal Function Prototypes
169 *========================================================================
170 */
171static int vim_error_check(void);
172static int do_mzscheme_command(exarg_T *, void *, Scheme_Closed_Prim *what);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100173static int startup_mzscheme(void);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000174static char *string_to_line(Scheme_Object *obj);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100175#if MZSCHEME_VERSION_MAJOR >= 501
Bram Moolenaar75676462013-01-30 14:55:42 +0100176# define OUTPUT_LEN_TYPE intptr_t
177#else
178# define OUTPUT_LEN_TYPE long
179#endif
180static void do_output(char *mesg, OUTPUT_LEN_TYPE len);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000181static void do_printf(char *format, ...);
182static void do_flush(void);
183static Scheme_Object *_apply_thunk_catch_exceptions(
184 Scheme_Object *, Scheme_Object **);
185static Scheme_Object *extract_exn_message(Scheme_Object *v);
186static Scheme_Object *do_eval(void *, int noargc, Scheme_Object **noargv);
187static Scheme_Object *do_load(void *, int noargc, Scheme_Object **noargv);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000188static void register_vim_exn(void);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000189static vim_mz_buffer *get_buffer_arg(const char *fname, int argnum,
190 int argc, Scheme_Object **argv);
191static vim_mz_window *get_window_arg(const char *fname, int argnum,
192 int argc, Scheme_Object **argv);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000193static int line_in_range(linenr_T, buf_T *);
194static void check_line_range(linenr_T, buf_T *);
195static void mz_fix_cursor(int lo, int hi, int extra);
196
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000197static int eval_with_exn_handling(void *, Scheme_Closed_Prim *,
198 Scheme_Object **ret);
199static void make_modules(void);
200static void init_exn_catching_apply(void);
201static int mzscheme_env_main(Scheme_Env *env, int argc, char **argv);
202static int mzscheme_init(void);
203#ifdef FEAT_EVAL
Bram Moolenaar75676462013-01-30 14:55:42 +0100204static Scheme_Object *vim_to_mzscheme(typval_T *vim_value);
205static Scheme_Object *vim_to_mzscheme_impl(typval_T *vim_value, int depth,
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000206 Scheme_Hash_Table *visited);
Bram Moolenaar75676462013-01-30 14:55:42 +0100207static int mzscheme_to_vim(Scheme_Object *obj, typval_T *tv);
208static int mzscheme_to_vim_impl(Scheme_Object *obj, typval_T *tv, int depth,
Bram Moolenaar7e506b62010-01-19 15:55:06 +0100209 Scheme_Hash_Table *visited);
Bram Moolenaar75676462013-01-30 14:55:42 +0100210static Scheme_Object *vim_funcref(void *data, int argc, Scheme_Object **argv);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000211#endif
212
213#ifdef MZ_PRECISE_GC
Bram Moolenaar64404472010-06-26 06:24:45 +0200214static int buffer_size_proc(void *obj UNUSED)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000215{
216 return gcBYTES_TO_WORDS(sizeof(vim_mz_buffer));
217}
218static int buffer_mark_proc(void *obj)
219{
220 return buffer_size_proc(obj);
221}
222static int buffer_fixup_proc(void *obj)
223{
Bram Moolenaar75676462013-01-30 14:55:42 +0100224 /* apparently not needed as the object will be uncollectable while
225 * the buffer is alive
226 */
227 /*
228 vim_mz_buffer* buf = (vim_mz_buffer*) obj;
229 buf->buf->b_mzscheme_ref = GC_fixup_self(obj);
230 */
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000231 return buffer_size_proc(obj);
232}
Bram Moolenaar64404472010-06-26 06:24:45 +0200233static int window_size_proc(void *obj UNUSED)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000234{
235 return gcBYTES_TO_WORDS(sizeof(vim_mz_window));
236}
237static int window_mark_proc(void *obj)
238{
239 return window_size_proc(obj);
240}
241static int window_fixup_proc(void *obj)
242{
Bram Moolenaar75676462013-01-30 14:55:42 +0100243 /* apparently not needed as the object will be uncollectable while
244 * the window is alive
245 */
246 /*
247 vim_mz_window* win = (vim_mz_window*) obj;
248 win->win->w_mzscheme_ref = GC_fixup_self(obj);
249 */
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000250 return window_size_proc(obj);
251}
Bram Moolenaar75676462013-01-30 14:55:42 +0100252/* with precise GC, w_mzscheme_ref and b_mzscheme_ref are immobile boxes
253 * containing pointers to a window/buffer
254 * with conservative GC these are simply pointers*/
255# define WINDOW_REF(win) *(vim_mz_window **)((win)->w_mzscheme_ref)
256# define BUFFER_REF(buf) *(vim_mz_buffer **)((buf)->b_mzscheme_ref)
257#else
258# define WINDOW_REF(win) (vim_mz_window *)((win)->w_mzscheme_ref)
259# define BUFFER_REF(buf) (vim_mz_buffer *)((buf)->b_mzscheme_ref)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000260#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000261
Bram Moolenaar4349c572016-01-30 13:28:28 +0100262#if defined(DYNAMIC_MZSCHEME) || defined(PROTO)
Bram Moolenaar33570922005-01-25 22:26:29 +0000263static Scheme_Object *dll_scheme_eof;
264static Scheme_Object *dll_scheme_false;
265static Scheme_Object *dll_scheme_void;
266static Scheme_Object *dll_scheme_null;
267static Scheme_Object *dll_scheme_true;
268
269static Scheme_Thread **dll_scheme_current_thread_ptr;
270
271static void (**dll_scheme_console_printf_ptr)(char *str, ...);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100272static void (**dll_scheme_console_output_ptr)(char *str, OUTPUT_LEN_TYPE len);
Bram Moolenaar33570922005-01-25 22:26:29 +0000273static void (**dll_scheme_notify_multithread_ptr)(int on);
274
275static void *(*dll_GC_malloc)(size_t size_in_bytes);
276static void *(*dll_GC_malloc_atomic)(size_t size_in_bytes);
277static Scheme_Env *(*dll_scheme_basic_env)(void);
278static void (*dll_scheme_check_threads)(void);
279static void (*dll_scheme_register_static)(void *ptr, long size);
280static void (*dll_scheme_set_stack_base)(void *base, int no_auto_statics);
281static void (*dll_scheme_add_global)(const char *name, Scheme_Object *val,
282 Scheme_Env *env);
283static void (*dll_scheme_add_global_symbol)(Scheme_Object *name,
284 Scheme_Object *val, Scheme_Env *env);
285static Scheme_Object *(*dll_scheme_apply)(Scheme_Object *rator, int num_rands,
286 Scheme_Object **rands);
287static Scheme_Object *(*dll_scheme_builtin_value)(const char *name);
Bram Moolenaar555b2802005-05-19 21:08:39 +0000288# if MZSCHEME_VERSION_MAJOR >= 299
289static Scheme_Object *(*dll_scheme_byte_string_to_char_string)(Scheme_Object *s);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100290static Scheme_Object *(*dll_scheme_make_path)(const char *chars);
Bram Moolenaar555b2802005-05-19 21:08:39 +0000291# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000292static void (*dll_scheme_close_input_port)(Scheme_Object *port);
293static void (*dll_scheme_count_lines)(Scheme_Object *port);
Bram Moolenaar049377e2007-05-12 15:32:12 +0000294#if MZSCHEME_VERSION_MAJOR < 360
Bram Moolenaar33570922005-01-25 22:26:29 +0000295static Scheme_Object *(*dll_scheme_current_continuation_marks)(void);
Bram Moolenaar049377e2007-05-12 15:32:12 +0000296#else
297static Scheme_Object *(*dll_scheme_current_continuation_marks)(Scheme_Object *prompt_tag);
298#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000299static void (*dll_scheme_display)(Scheme_Object *obj, Scheme_Object *port);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100300static char *(*dll_scheme_display_to_string)(Scheme_Object *obj, OUTPUT_LEN_TYPE *len);
Bram Moolenaar555b2802005-05-19 21:08:39 +0000301static int (*dll_scheme_eq)(Scheme_Object *obj1, Scheme_Object *obj2);
Bram Moolenaar33570922005-01-25 22:26:29 +0000302static Scheme_Object *(*dll_scheme_do_eval)(Scheme_Object *obj,
303 int _num_rands, Scheme_Object **rands, int val);
304static void (*dll_scheme_dont_gc_ptr)(void *p);
305static Scheme_Object *(*dll_scheme_eval)(Scheme_Object *obj, Scheme_Env *env);
306static Scheme_Object *(*dll_scheme_eval_string)(const char *str,
307 Scheme_Env *env);
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000308static Scheme_Object *(*dll_scheme_eval_string_all)(const char *str,
Bram Moolenaar33570922005-01-25 22:26:29 +0000309 Scheme_Env *env, int all);
310static void (*dll_scheme_finish_primitive_module)(Scheme_Env *env);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000311# if MZSCHEME_VERSION_MAJOR < 299
Bram Moolenaar33570922005-01-25 22:26:29 +0000312static char *(*dll_scheme_format)(char *format, int flen, int argc,
313 Scheme_Object **argv, long *rlen);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000314# else
315static char *(*dll_scheme_format_utf8)(char *format, int flen, int argc,
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100316 Scheme_Object **argv, OUTPUT_LEN_TYPE *rlen);
Bram Moolenaar555b2802005-05-19 21:08:39 +0000317static Scheme_Object *(*dll_scheme_get_param)(Scheme_Config *c, int pos);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000318# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000319static void (*dll_scheme_gc_ptr_ok)(void *p);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000320# if MZSCHEME_VERSION_MAJOR < 299
Bram Moolenaar33570922005-01-25 22:26:29 +0000321static char *(*dll_scheme_get_sized_string_output)(Scheme_Object *,
322 long *len);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000323# else
324static char *(*dll_scheme_get_sized_byte_string_output)(Scheme_Object *,
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100325 OUTPUT_LEN_TYPE *len);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000326# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000327static Scheme_Object *(*dll_scheme_intern_symbol)(const char *name);
328static Scheme_Object *(*dll_scheme_lookup_global)(Scheme_Object *symbol,
329 Scheme_Env *env);
330static Scheme_Object *(*dll_scheme_make_closed_prim_w_arity)
331 (Scheme_Closed_Prim *prim, void *data, const char *name, mzshort mina,
332 mzshort maxa);
333static Scheme_Object *(*dll_scheme_make_integer_value)(long i);
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000334static Scheme_Object *(*dll_scheme_make_pair)(Scheme_Object *car,
Bram Moolenaar33570922005-01-25 22:26:29 +0000335 Scheme_Object *cdr);
Bram Moolenaar555b2802005-05-19 21:08:39 +0000336static Scheme_Object *(*dll_scheme_make_prim_w_arity)(Scheme_Prim *prim,
337 const char *name, mzshort mina, mzshort maxa);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000338# if MZSCHEME_VERSION_MAJOR < 299
Bram Moolenaar33570922005-01-25 22:26:29 +0000339static Scheme_Object *(*dll_scheme_make_string)(const char *chars);
340static Scheme_Object *(*dll_scheme_make_string_output_port)();
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000341# else
342static Scheme_Object *(*dll_scheme_make_byte_string)(const char *chars);
343static Scheme_Object *(*dll_scheme_make_byte_string_output_port)();
344# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000345static Scheme_Object *(*dll_scheme_make_struct_instance)(Scheme_Object *stype,
346 int argc, Scheme_Object **argv);
347static Scheme_Object **(*dll_scheme_make_struct_names)(Scheme_Object *base,
348 Scheme_Object *field_names, int flags, int *count_out);
349static Scheme_Object *(*dll_scheme_make_struct_type)(Scheme_Object *base,
350 Scheme_Object *parent, Scheme_Object *inspector, int num_fields,
351 int num_uninit_fields, Scheme_Object *uninit_val,
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000352 Scheme_Object *properties
353# if MZSCHEME_VERSION_MAJOR >= 299
354 , Scheme_Object *guard
355# endif
356 );
Bram Moolenaar33570922005-01-25 22:26:29 +0000357static Scheme_Object **(*dll_scheme_make_struct_values)(
358 Scheme_Object *struct_type, Scheme_Object **names, int count,
359 int flags);
360static Scheme_Type (*dll_scheme_make_type)(const char *name);
361static Scheme_Object *(*dll_scheme_make_vector)(int size,
362 Scheme_Object *fill);
363static void *(*dll_scheme_malloc_fail_ok)(void *(*f)(size_t), size_t);
364static Scheme_Object *(*dll_scheme_open_input_file)(const char *name,
365 const char *who);
366static Scheme_Env *(*dll_scheme_primitive_module)(Scheme_Object *name,
367 Scheme_Env *for_env);
368static int (*dll_scheme_proper_list_length)(Scheme_Object *list);
369static void (*dll_scheme_raise)(Scheme_Object *exn);
370static Scheme_Object *(*dll_scheme_read)(Scheme_Object *port);
371static void (*dll_scheme_signal_error)(const char *msg, ...);
372static void (*dll_scheme_wrong_type)(const char *name, const char *expected,
373 int which, int argc, Scheme_Object **argv);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000374# if MZSCHEME_VERSION_MAJOR >= 299
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000375static void (*dll_scheme_set_param)(Scheme_Config *c, int pos,
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000376 Scheme_Object *o);
377static Scheme_Config *(*dll_scheme_current_config)(void);
378static Scheme_Object *(*dll_scheme_char_string_to_byte_string)
379 (Scheme_Object *s);
Bram Moolenaare2a49d82007-07-06 17:43:08 +0000380static Scheme_Object *(*dll_scheme_char_string_to_path)
381 (Scheme_Object *s);
Bram Moolenaar75676462013-01-30 14:55:42 +0100382static void *(*dll_scheme_set_collects_path)(Scheme_Object *p);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000383# endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000384static Scheme_Hash_Table *(*dll_scheme_make_hash_table)(int type);
385static void (*dll_scheme_hash_set)(Scheme_Hash_Table *table,
386 Scheme_Object *key, Scheme_Object *value);
387static Scheme_Object *(*dll_scheme_hash_get)(Scheme_Hash_Table *table,
388 Scheme_Object *key);
389static Scheme_Object *(*dll_scheme_make_double)(double d);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000390static Scheme_Object *(*dll_scheme_make_sized_byte_string)(char *chars,
391 long len, int copy);
392static Scheme_Object *(*dll_scheme_namespace_require)(Scheme_Object *req);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100393static 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);
394# ifdef MZ_PRECISE_GC
395static void *(*dll_GC_malloc_one_tagged)(size_t size_in_bytes);
396static void (*dll_GC_register_traversers)(short tag, Size_Proc size, Mark_Proc mark, Fixup_Proc fixup, int is_constant_size, int is_atomic);
397# endif
398# if MZSCHEME_VERSION_MAJOR >= 400
399static void (*dll_scheme_init_collection_paths)(Scheme_Env *global_env, Scheme_Object *extra_dirs);
400static void **(*dll_scheme_malloc_immobile_box)(void *p);
401static void (*dll_scheme_free_immobile_box)(void **b);
402# endif
403# if MZSCHEME_VERSION_MAJOR >= 500
404# ifdef TRAMPOLINED_MZVIM_STARTUP
405static int (*dll_scheme_main_setup)(int no_auto_statics, Scheme_Env_Main _main, int argc, char **argv);
406# if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || MZSCHEME_VERSION_MAJOR >= 603
407static void (*dll_scheme_register_tls_space)(void *tls_space, int _tls_index);
408# endif
409# endif
410# if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || defined(IMPLEMENT_THREAD_LOCAL_EXTERNALLY_VIA_PROC)
411static Thread_Local_Variables *(*dll_scheme_external_get_thread_local_variables)(void);
412# endif
413# endif
414# if MZSCHEME_VERSION_MAJOR >= 600
415static void (*dll_scheme_embedded_load)(intptr_t len, const char *s, int predefined);
416static void (*dll_scheme_register_embedded_load)(intptr_t len, const char *s);
417static void (*dll_scheme_set_config_path)(Scheme_Object *p);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000418# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000419
Bram Moolenaar4349c572016-01-30 13:28:28 +0100420#if defined(DYNAMIC_MZSCHEME) /* not when defined(PROTO) */
421
Bram Moolenaar33570922005-01-25 22:26:29 +0000422/* arrays are imported directly */
423# define scheme_eof dll_scheme_eof
424# define scheme_false dll_scheme_false
425# define scheme_void dll_scheme_void
426# define scheme_null dll_scheme_null
427# define scheme_true dll_scheme_true
428
429/* pointers are GetProceAddress'ed as pointers to pointer */
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100430#if !defined(USE_THREAD_LOCAL) && !defined(LINK_EXTENSIONS_BY_TABLE)
431# define scheme_current_thread (*dll_scheme_current_thread_ptr)
432# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000433# define scheme_console_printf (*dll_scheme_console_printf_ptr)
434# define scheme_console_output (*dll_scheme_console_output_ptr)
435# define scheme_notify_multithread (*dll_scheme_notify_multithread_ptr)
436
437/* and functions in a usual way */
438# define GC_malloc dll_GC_malloc
439# define GC_malloc_atomic dll_GC_malloc_atomic
440
441# define scheme_add_global dll_scheme_add_global
442# define scheme_add_global_symbol dll_scheme_add_global_symbol
443# define scheme_apply dll_scheme_apply
444# define scheme_basic_env dll_scheme_basic_env
445# define scheme_builtin_value dll_scheme_builtin_value
Bram Moolenaar555b2802005-05-19 21:08:39 +0000446# if MZSCHEME_VERSION_MAJOR >= 299
447# define scheme_byte_string_to_char_string dll_scheme_byte_string_to_char_string
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100448# define scheme_make_path dll_scheme_make_path
Bram Moolenaar555b2802005-05-19 21:08:39 +0000449# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000450# define scheme_check_threads dll_scheme_check_threads
451# define scheme_close_input_port dll_scheme_close_input_port
452# define scheme_count_lines dll_scheme_count_lines
453# define scheme_current_continuation_marks \
454 dll_scheme_current_continuation_marks
455# define scheme_display dll_scheme_display
456# define scheme_display_to_string dll_scheme_display_to_string
457# define scheme_do_eval dll_scheme_do_eval
458# define scheme_dont_gc_ptr dll_scheme_dont_gc_ptr
Bram Moolenaar555b2802005-05-19 21:08:39 +0000459# define scheme_eq dll_scheme_eq
Bram Moolenaar33570922005-01-25 22:26:29 +0000460# define scheme_eval dll_scheme_eval
461# define scheme_eval_string dll_scheme_eval_string
462# define scheme_eval_string_all dll_scheme_eval_string_all
463# define scheme_finish_primitive_module dll_scheme_finish_primitive_module
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000464# if MZSCHEME_VERSION_MAJOR < 299
465# define scheme_format dll_scheme_format
466# else
467# define scheme_format_utf8 dll_scheme_format_utf8
468# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000469# define scheme_gc_ptr_ok dll_scheme_gc_ptr_ok
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000470# if MZSCHEME_VERSION_MAJOR < 299
Bram Moolenaar75676462013-01-30 14:55:42 +0100471# define scheme_get_sized_byte_string_output dll_scheme_get_sized_string_output
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000472# else
473# define scheme_get_sized_byte_string_output \
474 dll_scheme_get_sized_byte_string_output
Bram Moolenaar75676462013-01-30 14:55:42 +0100475# define scheme_get_param dll_scheme_get_param
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000476# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000477# define scheme_intern_symbol dll_scheme_intern_symbol
478# define scheme_lookup_global dll_scheme_lookup_global
479# define scheme_make_closed_prim_w_arity dll_scheme_make_closed_prim_w_arity
480# define scheme_make_integer_value dll_scheme_make_integer_value
Bram Moolenaar33570922005-01-25 22:26:29 +0000481# define scheme_make_pair dll_scheme_make_pair
Bram Moolenaar555b2802005-05-19 21:08:39 +0000482# define scheme_make_prim_w_arity dll_scheme_make_prim_w_arity
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000483# if MZSCHEME_VERSION_MAJOR < 299
Bram Moolenaar75676462013-01-30 14:55:42 +0100484# define scheme_make_byte_string dll_scheme_make_string
485# define scheme_make_byte_string_output_port dll_scheme_make_string_output_port
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000486# else
487# define scheme_make_byte_string dll_scheme_make_byte_string
488# define scheme_make_byte_string_output_port \
489 dll_scheme_make_byte_string_output_port
490# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000491# define scheme_make_struct_instance dll_scheme_make_struct_instance
492# define scheme_make_struct_names dll_scheme_make_struct_names
493# define scheme_make_struct_type dll_scheme_make_struct_type
494# define scheme_make_struct_values dll_scheme_make_struct_values
495# define scheme_make_type dll_scheme_make_type
496# define scheme_make_vector dll_scheme_make_vector
497# define scheme_malloc_fail_ok dll_scheme_malloc_fail_ok
498# define scheme_open_input_file dll_scheme_open_input_file
499# define scheme_primitive_module dll_scheme_primitive_module
500# define scheme_proper_list_length dll_scheme_proper_list_length
501# define scheme_raise dll_scheme_raise
502# define scheme_read dll_scheme_read
503# define scheme_register_static dll_scheme_register_static
504# define scheme_set_stack_base dll_scheme_set_stack_base
505# define scheme_signal_error dll_scheme_signal_error
506# define scheme_wrong_type dll_scheme_wrong_type
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000507# if MZSCHEME_VERSION_MAJOR >= 299
508# define scheme_set_param dll_scheme_set_param
509# define scheme_current_config dll_scheme_current_config
510# define scheme_char_string_to_byte_string \
511 dll_scheme_char_string_to_byte_string
Bram Moolenaare2a49d82007-07-06 17:43:08 +0000512# define scheme_char_string_to_path \
513 dll_scheme_char_string_to_path
Bram Moolenaar75676462013-01-30 14:55:42 +0100514# define scheme_set_collects_path dll_scheme_set_collects_path
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000515# endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000516# define scheme_make_hash_table dll_scheme_make_hash_table
517# define scheme_hash_set dll_scheme_hash_set
518# define scheme_hash_get dll_scheme_hash_get
519# define scheme_make_double dll_scheme_make_double
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100520# define scheme_make_sized_byte_string dll_scheme_make_sized_byte_string
521# define scheme_namespace_require dll_scheme_namespace_require
522# define scheme_dynamic_wind dll_scheme_dynamic_wind
523# ifdef MZ_PRECISE_GC
524# define GC_malloc_one_tagged dll_GC_malloc_one_tagged
525# define GC_register_traversers dll_GC_register_traversers
526# endif
527# if MZSCHEME_VERSION_MAJOR >= 400
528# ifdef TRAMPOLINED_MZVIM_STARTUP
529# define scheme_main_setup dll_scheme_main_setup
530# if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || MZSCHEME_VERSION_MAJOR >= 603
531# define scheme_register_tls_space dll_scheme_register_tls_space
532# endif
533# endif
534# define scheme_init_collection_paths dll_scheme_init_collection_paths
535# define scheme_malloc_immobile_box dll_scheme_malloc_immobile_box
536# define scheme_free_immobile_box dll_scheme_free_immobile_box
537# endif
538# if MZSCHEME_VERSION_MAJOR >= 600
539# define scheme_embedded_load dll_scheme_embedded_load
540# define scheme_register_embedded_load dll_scheme_register_embedded_load
541# define scheme_set_config_path dll_scheme_set_config_path
542# endif
543
544# if MZSCHEME_VERSION_MAJOR >= 500
545# if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || defined(IMPLEMENT_THREAD_LOCAL_EXTERNALLY_VIA_PROC)
Bram Moolenaar9b0ac222016-06-01 20:31:43 +0200546/* define as function for macro in schthread.h */
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100547Thread_Local_Variables *
548scheme_external_get_thread_local_variables(void)
549{
550 return dll_scheme_external_get_thread_local_variables();
551}
552# endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000553# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000554
Bram Moolenaar4349c572016-01-30 13:28:28 +0100555#endif
556
Bram Moolenaar33570922005-01-25 22:26:29 +0000557typedef struct
558{
559 char *name;
560 void **ptr;
561} Thunk_Info;
562
563static Thunk_Info mzgc_imports[] = {
564 {"GC_malloc", (void **)&dll_GC_malloc},
565 {"GC_malloc_atomic", (void **)&dll_GC_malloc_atomic},
566 {NULL, NULL}};
567
568static Thunk_Info mzsch_imports[] = {
569 {"scheme_eof", (void **)&dll_scheme_eof},
570 {"scheme_false", (void **)&dll_scheme_false},
571 {"scheme_void", (void **)&dll_scheme_void},
572 {"scheme_null", (void **)&dll_scheme_null},
573 {"scheme_true", (void **)&dll_scheme_true},
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100574#if !defined(USE_THREAD_LOCAL) && !defined(LINK_EXTENSIONS_BY_TABLE)
Bram Moolenaar33570922005-01-25 22:26:29 +0000575 {"scheme_current_thread", (void **)&dll_scheme_current_thread_ptr},
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100576#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000577 {"scheme_console_printf", (void **)&dll_scheme_console_printf_ptr},
578 {"scheme_console_output", (void **)&dll_scheme_console_output_ptr},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000579 {"scheme_notify_multithread",
Bram Moolenaar33570922005-01-25 22:26:29 +0000580 (void **)&dll_scheme_notify_multithread_ptr},
581 {"scheme_add_global", (void **)&dll_scheme_add_global},
582 {"scheme_add_global_symbol", (void **)&dll_scheme_add_global_symbol},
583 {"scheme_apply", (void **)&dll_scheme_apply},
584 {"scheme_basic_env", (void **)&dll_scheme_basic_env},
Bram Moolenaar555b2802005-05-19 21:08:39 +0000585# if MZSCHEME_VERSION_MAJOR >= 299
586 {"scheme_byte_string_to_char_string", (void **)&dll_scheme_byte_string_to_char_string},
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100587 {"scheme_make_path", (void **)&dll_scheme_make_path},
Bram Moolenaar555b2802005-05-19 21:08:39 +0000588# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000589 {"scheme_builtin_value", (void **)&dll_scheme_builtin_value},
590 {"scheme_check_threads", (void **)&dll_scheme_check_threads},
591 {"scheme_close_input_port", (void **)&dll_scheme_close_input_port},
592 {"scheme_count_lines", (void **)&dll_scheme_count_lines},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000593 {"scheme_current_continuation_marks",
Bram Moolenaar33570922005-01-25 22:26:29 +0000594 (void **)&dll_scheme_current_continuation_marks},
595 {"scheme_display", (void **)&dll_scheme_display},
596 {"scheme_display_to_string", (void **)&dll_scheme_display_to_string},
597 {"scheme_do_eval", (void **)&dll_scheme_do_eval},
598 {"scheme_dont_gc_ptr", (void **)&dll_scheme_dont_gc_ptr},
Bram Moolenaar555b2802005-05-19 21:08:39 +0000599 {"scheme_eq", (void **)&dll_scheme_eq},
Bram Moolenaar33570922005-01-25 22:26:29 +0000600 {"scheme_eval", (void **)&dll_scheme_eval},
601 {"scheme_eval_string", (void **)&dll_scheme_eval_string},
602 {"scheme_eval_string_all", (void **)&dll_scheme_eval_string_all},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000603 {"scheme_finish_primitive_module",
Bram Moolenaar33570922005-01-25 22:26:29 +0000604 (void **)&dll_scheme_finish_primitive_module},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000605# if MZSCHEME_VERSION_MAJOR < 299
Bram Moolenaar33570922005-01-25 22:26:29 +0000606 {"scheme_format", (void **)&dll_scheme_format},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000607# else
608 {"scheme_format_utf8", (void **)&dll_scheme_format_utf8},
Bram Moolenaar555b2802005-05-19 21:08:39 +0000609 {"scheme_get_param", (void **)&dll_scheme_get_param},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000610#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000611 {"scheme_gc_ptr_ok", (void **)&dll_scheme_gc_ptr_ok},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000612# if MZSCHEME_VERSION_MAJOR < 299
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000613 {"scheme_get_sized_string_output",
Bram Moolenaar33570922005-01-25 22:26:29 +0000614 (void **)&dll_scheme_get_sized_string_output},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000615# else
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000616 {"scheme_get_sized_byte_string_output",
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000617 (void **)&dll_scheme_get_sized_byte_string_output},
618#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000619 {"scheme_intern_symbol", (void **)&dll_scheme_intern_symbol},
620 {"scheme_lookup_global", (void **)&dll_scheme_lookup_global},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000621 {"scheme_make_closed_prim_w_arity",
Bram Moolenaar33570922005-01-25 22:26:29 +0000622 (void **)&dll_scheme_make_closed_prim_w_arity},
623 {"scheme_make_integer_value", (void **)&dll_scheme_make_integer_value},
Bram Moolenaar33570922005-01-25 22:26:29 +0000624 {"scheme_make_pair", (void **)&dll_scheme_make_pair},
Bram Moolenaar555b2802005-05-19 21:08:39 +0000625 {"scheme_make_prim_w_arity", (void **)&dll_scheme_make_prim_w_arity},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000626# if MZSCHEME_VERSION_MAJOR < 299
Bram Moolenaar33570922005-01-25 22:26:29 +0000627 {"scheme_make_string", (void **)&dll_scheme_make_string},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000628 {"scheme_make_string_output_port",
Bram Moolenaar33570922005-01-25 22:26:29 +0000629 (void **)&dll_scheme_make_string_output_port},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000630# else
631 {"scheme_make_byte_string", (void **)&dll_scheme_make_byte_string},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000632 {"scheme_make_byte_string_output_port",
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000633 (void **)&dll_scheme_make_byte_string_output_port},
634# endif
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000635 {"scheme_make_struct_instance",
Bram Moolenaar33570922005-01-25 22:26:29 +0000636 (void **)&dll_scheme_make_struct_instance},
637 {"scheme_make_struct_names", (void **)&dll_scheme_make_struct_names},
638 {"scheme_make_struct_type", (void **)&dll_scheme_make_struct_type},
639 {"scheme_make_struct_values", (void **)&dll_scheme_make_struct_values},
640 {"scheme_make_type", (void **)&dll_scheme_make_type},
641 {"scheme_make_vector", (void **)&dll_scheme_make_vector},
642 {"scheme_malloc_fail_ok", (void **)&dll_scheme_malloc_fail_ok},
643 {"scheme_open_input_file", (void **)&dll_scheme_open_input_file},
644 {"scheme_primitive_module", (void **)&dll_scheme_primitive_module},
645 {"scheme_proper_list_length", (void **)&dll_scheme_proper_list_length},
646 {"scheme_raise", (void **)&dll_scheme_raise},
647 {"scheme_read", (void **)&dll_scheme_read},
648 {"scheme_register_static", (void **)&dll_scheme_register_static},
649 {"scheme_set_stack_base", (void **)&dll_scheme_set_stack_base},
650 {"scheme_signal_error", (void **)&dll_scheme_signal_error},
651 {"scheme_wrong_type", (void **)&dll_scheme_wrong_type},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000652# if MZSCHEME_VERSION_MAJOR >= 299
653 {"scheme_set_param", (void **)&dll_scheme_set_param},
654 {"scheme_current_config", (void **)&dll_scheme_current_config},
655 {"scheme_char_string_to_byte_string",
656 (void **)&dll_scheme_char_string_to_byte_string},
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000657 {"scheme_char_string_to_path", (void **)&dll_scheme_char_string_to_path},
Bram Moolenaar75676462013-01-30 14:55:42 +0100658 {"scheme_set_collects_path", (void **)&dll_scheme_set_collects_path},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000659# endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000660 {"scheme_make_hash_table", (void **)&dll_scheme_make_hash_table},
661 {"scheme_hash_set", (void **)&dll_scheme_hash_set},
662 {"scheme_hash_get", (void **)&dll_scheme_hash_get},
663 {"scheme_make_double", (void **)&dll_scheme_make_double},
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000664 {"scheme_make_sized_byte_string", (void **)&dll_scheme_make_sized_byte_string},
665 {"scheme_namespace_require", (void **)&dll_scheme_namespace_require},
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100666 {"scheme_dynamic_wind", (void **)&dll_scheme_dynamic_wind},
667# ifdef MZ_PRECISE_GC
668 {"GC_malloc_one_tagged", (void **)&dll_GC_malloc_one_tagged},
669 {"GC_register_traversers", (void **)&dll_GC_register_traversers},
670# endif
671# if MZSCHEME_VERSION_MAJOR >= 400
672# ifdef TRAMPOLINED_MZVIM_STARTUP
673 {"scheme_main_setup", (void **)&dll_scheme_main_setup},
674# if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || MZSCHEME_VERSION_MAJOR >= 603
675 {"scheme_register_tls_space", (void **)&dll_scheme_register_tls_space},
676# endif
677# endif
678 {"scheme_init_collection_paths", (void **)&dll_scheme_init_collection_paths},
679 {"scheme_malloc_immobile_box", (void **)&dll_scheme_malloc_immobile_box},
680 {"scheme_free_immobile_box", (void **)&dll_scheme_free_immobile_box},
681# endif
682# if MZSCHEME_VERSION_MAJOR >= 500
683# if defined(IMPLEMENT_THREAD_LOCAL_VIA_WIN_TLS) || defined(IMPLEMENT_THREAD_LOCAL_EXTERNALLY_VIA_PROC)
684 {"scheme_external_get_thread_local_variables", (void **)&dll_scheme_external_get_thread_local_variables},
685# endif
686# endif
687# if MZSCHEME_VERSION_MAJOR >= 600
688 {"scheme_embedded_load", (void **)&dll_scheme_embedded_load},
689 {"scheme_register_embedded_load", (void **)&dll_scheme_register_embedded_load},
690 {"scheme_set_config_path", (void **)&dll_scheme_set_config_path},
691# endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000692 {NULL, NULL}};
693
694static HINSTANCE hMzGC = 0;
695static HINSTANCE hMzSch = 0;
696
697static void dynamic_mzscheme_end(void);
698static int mzscheme_runtime_link_init(char *sch_dll, char *gc_dll,
699 int verbose);
700
701 static int
702mzscheme_runtime_link_init(char *sch_dll, char *gc_dll, int verbose)
703{
704 Thunk_Info *thunk = NULL;
705
706 if (hMzGC && hMzSch)
707 return OK;
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200708 hMzSch = vimLoadLib(sch_dll);
709 hMzGC = vimLoadLib(gc_dll);
Bram Moolenaar33570922005-01-25 22:26:29 +0000710
Bram Moolenaar33570922005-01-25 22:26:29 +0000711 if (!hMzGC)
712 {
713 if (verbose)
714 EMSG2(_(e_loadlib), gc_dll);
715 return FAIL;
716 }
717
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100718 if (!hMzSch)
719 {
720 if (verbose)
721 EMSG2(_(e_loadlib), sch_dll);
722 return FAIL;
723 }
724
Bram Moolenaar33570922005-01-25 22:26:29 +0000725 for (thunk = mzsch_imports; thunk->name; thunk++)
726 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000727 if ((*thunk->ptr =
Bram Moolenaar33570922005-01-25 22:26:29 +0000728 (void *)GetProcAddress(hMzSch, thunk->name)) == NULL)
729 {
730 FreeLibrary(hMzSch);
731 hMzSch = 0;
732 FreeLibrary(hMzGC);
733 hMzGC = 0;
734 if (verbose)
735 EMSG2(_(e_loadfunc), thunk->name);
736 return FAIL;
737 }
738 }
739 for (thunk = mzgc_imports; thunk->name; thunk++)
740 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000741 if ((*thunk->ptr =
Bram Moolenaar33570922005-01-25 22:26:29 +0000742 (void *)GetProcAddress(hMzGC, thunk->name)) == NULL)
743 {
744 FreeLibrary(hMzSch);
745 hMzSch = 0;
746 FreeLibrary(hMzGC);
747 hMzGC = 0;
748 if (verbose)
749 EMSG2(_(e_loadfunc), thunk->name);
750 return FAIL;
751 }
752 }
753 return OK;
754}
755
756 int
757mzscheme_enabled(int verbose)
758{
759 return mzscheme_runtime_link_init(
Bram Moolenaar0ab35b22017-10-08 17:41:37 +0200760 (char *)p_mzschemedll, (char *)p_mzschemegcdll, verbose) == OK;
Bram Moolenaar33570922005-01-25 22:26:29 +0000761}
762
763 static void
764dynamic_mzscheme_end(void)
765{
766 if (hMzSch)
767 {
768 FreeLibrary(hMzSch);
769 hMzSch = 0;
770 }
771 if (hMzGC)
772 {
773 FreeLibrary(hMzGC);
774 hMzGC = 0;
775 }
776}
777#endif /* DYNAMIC_MZSCHEME */
778
Bram Moolenaar75676462013-01-30 14:55:42 +0100779#if MZSCHEME_VERSION_MAJOR < 299
780# define GUARANTEED_STRING_ARG(proc, num) GUARANTEE_STRING(proc, num)
781#else
782 static Scheme_Object *
783guaranteed_byte_string_arg(char *proc, int num, int argc, Scheme_Object **argv)
784{
785 if (SCHEME_BYTE_STRINGP(argv[num]))
786 {
787 return argv[num];
788 }
789 else if (SCHEME_CHAR_STRINGP(argv[num]))
790 {
791 Scheme_Object *tmp = NULL;
792 MZ_GC_DECL_REG(2);
793 MZ_GC_VAR_IN_REG(0, argv[num]);
794 MZ_GC_VAR_IN_REG(1, tmp);
795 MZ_GC_REG();
796 tmp = scheme_char_string_to_byte_string(argv[num]);
797 MZ_GC_UNREG();
798 return tmp;
799 }
800 else
801 scheme_wrong_type(proc, "string", num, argc, argv);
802 /* unreachable */
803 return scheme_void;
804}
805# define GUARANTEED_STRING_ARG(proc, num) guaranteed_byte_string_arg(proc, num, argc, argv)
806#endif
807
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000808/* need to put it here for dynamic stuff to work */
Bram Moolenaare484c942009-09-11 10:21:41 +0000809#if defined(INCLUDE_MZSCHEME_BASE)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000810# include "mzscheme_base.c"
811#endif
812
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000813/*
814 *========================================================================
815 * 1. MzScheme interpreter startup
816 *========================================================================
817 */
818
819static Scheme_Type mz_buffer_type;
820static Scheme_Type mz_window_type;
821
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000822static int initialized = FALSE;
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100823#ifdef DYNAMIC_MZSCHEME
824static int disabled = FALSE;
825#endif
826static int load_base_module_failed = FALSE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000827
828/* global environment */
829static Scheme_Env *environment = NULL;
830/* output/error handlers */
831static Scheme_Object *curout = NULL;
832static Scheme_Object *curerr = NULL;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000833/* exn:vim exception */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000834static Scheme_Object *exn_catching_apply = NULL;
835static Scheme_Object *exn_p = NULL;
836static Scheme_Object *exn_message = NULL;
837static Scheme_Object *vim_exn = NULL; /* Vim Error exception */
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000838
839#if !defined(MZ_PRECISE_GC) || MZSCHEME_VERSION_MAJOR < 400
840static void *stack_base = NULL;
841#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000842
843static long range_start;
844static long range_end;
845
846/* MzScheme threads scheduling stuff */
847static int mz_threads_allow = 0;
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000848
849#if defined(FEAT_GUI_W32)
Bram Moolenaardec6c7b2016-06-02 11:57:38 +0200850static void CALLBACK timer_proc(HWND, UINT, UINT_PTR, DWORD);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000851static UINT timer_id = 0;
852#elif defined(FEAT_GUI_GTK)
Bram Moolenaar98921892016-02-23 17:14:37 +0100853# if GTK_CHECK_VERSION(3,0,0)
854static gboolean timer_proc(gpointer);
855# else
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000856static gint timer_proc(gpointer);
Bram Moolenaar98921892016-02-23 17:14:37 +0100857# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000858static guint timer_id = 0;
859#elif defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)
860static void timer_proc(XtPointer, XtIntervalId *);
861static XtIntervalId timer_id = (XtIntervalId)0;
862#elif defined(FEAT_GUI_MAC)
863pascal void timer_proc(EventLoopTimerRef, void *);
864static EventLoopTimerRef timer_id = NULL;
865static EventLoopTimerUPP timerUPP;
866#endif
867
868#ifndef FEAT_GUI_W32 /* Win32 console and Unix */
869 void
870mzvim_check_threads(void)
871{
872 /* Last time MzScheme threads were scheduled */
873 static time_t mz_last_time = 0;
874
875 if (mz_threads_allow && p_mzq > 0)
876 {
877 time_t now = time(NULL);
878
879 if ((now - mz_last_time) * 1000 > p_mzq)
880 {
881 mz_last_time = now;
882 scheme_check_threads();
883 }
884 }
885}
886#endif
887
Bram Moolenaar4349c572016-01-30 13:28:28 +0100888#if defined(MZSCHEME_GUI_THREADS) || defined(PROTO)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000889static void setup_timer(void);
890static void remove_timer(void);
891
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000892/* timers are presented in GUI only */
893# if defined(FEAT_GUI_W32)
894 static void CALLBACK
Bram Moolenaar9b0ac222016-06-01 20:31:43 +0200895timer_proc(HWND hwnd UNUSED, UINT uMsg UNUSED, UINT_PTR idEvent UNUSED, DWORD dwTime UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000896# elif defined(FEAT_GUI_GTK)
Bram Moolenaar98921892016-02-23 17:14:37 +0100897# if GTK_CHECK_VERSION(3,0,0)
898 static gboolean
899# else
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000900 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +0100901# endif
Bram Moolenaar64404472010-06-26 06:24:45 +0200902timer_proc(gpointer data UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000903# elif defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000904 static void
Bram Moolenaar64404472010-06-26 06:24:45 +0200905timer_proc(XtPointer timed_out UNUSED, XtIntervalId *interval_id UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000906# elif defined(FEAT_GUI_MAC)
907 pascal void
Bram Moolenaar64404472010-06-26 06:24:45 +0200908timer_proc(EventLoopTimerRef theTimer UNUSED, void *userData UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000909# endif
910{
911 scheme_check_threads();
912# if defined(FEAT_GUI_GTK)
913 return TRUE; /* continue receiving notifications */
914# elif defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)
915 /* renew timeout */
916 if (mz_threads_allow && p_mzq > 0)
917 timer_id = XtAppAddTimeOut(app_context, p_mzq,
918 timer_proc, NULL);
919# endif
920}
921
922 static void
923setup_timer(void)
924{
925# if defined(FEAT_GUI_W32)
926 timer_id = SetTimer(NULL, 0, p_mzq, timer_proc);
927# elif defined(FEAT_GUI_GTK)
Bram Moolenaar98921892016-02-23 17:14:37 +0100928# if GTK_CHECK_VERSION(3,0,0)
929 timer_id = g_timeout_add((guint)p_mzq, (GSourceFunc)timer_proc, NULL);
930# else
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000931 timer_id = gtk_timeout_add((guint32)p_mzq, (GtkFunction)timer_proc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100932# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000933# elif defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)
934 timer_id = XtAppAddTimeOut(app_context, p_mzq, timer_proc, NULL);
935# elif defined(FEAT_GUI_MAC)
936 timerUPP = NewEventLoopTimerUPP(timer_proc);
937 InstallEventLoopTimer(GetMainEventLoop(), p_mzq * kEventDurationMillisecond,
938 p_mzq * kEventDurationMillisecond, timerUPP, NULL, &timer_id);
939# endif
940}
941
942 static void
943remove_timer(void)
944{
945# if defined(FEAT_GUI_W32)
946 KillTimer(NULL, timer_id);
947# elif defined(FEAT_GUI_GTK)
Bram Moolenaar98921892016-02-23 17:14:37 +0100948# if GTK_CHECK_VERSION(3,0,0)
949 g_source_remove(timer_id);
950# else
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000951 gtk_timeout_remove(timer_id);
Bram Moolenaar98921892016-02-23 17:14:37 +0100952# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000953# elif defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)
954 XtRemoveTimeOut(timer_id);
955# elif defined(FEAT_GUI_MAC)
956 RemoveEventLoopTimer(timer_id);
957 DisposeEventLoopTimerUPP(timerUPP);
958# endif
959 timer_id = 0;
960}
961
962 void
963mzvim_reset_timer(void)
964{
965 if (timer_id != 0)
966 remove_timer();
967 if (mz_threads_allow && p_mzq > 0 && gui.in_use)
968 setup_timer();
969}
970
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000971#endif /* MZSCHEME_GUI_THREADS */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000972
973 static void
974notify_multithread(int on)
975{
976 mz_threads_allow = on;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000977#ifdef MZSCHEME_GUI_THREADS
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000978 if (on && timer_id == 0 && p_mzq > 0 && gui.in_use)
979 setup_timer();
980 if (!on && timer_id != 0)
981 remove_timer();
982#endif
983}
984
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000985 void
986mzscheme_end(void)
987{
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100988 /* We can not unload the DLL. Racket's thread might be still alive. */
989#if 0
Bram Moolenaar33570922005-01-25 22:26:29 +0000990#ifdef DYNAMIC_MZSCHEME
991 dynamic_mzscheme_end();
992#endif
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100993#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000994}
995
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100996#if HAVE_TLS_SPACE
997# if defined(_MSC_VER)
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100998static __declspec(thread) void *tls_space;
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100999extern intptr_t _tls_index;
1000# elif defined(__MINGW32__)
1001static __thread void *tls_space;
1002extern intptr_t _tls_index;
1003# else
1004static THREAD_LOCAL void *tls_space;
1005static intptr_t _tls_index = 0;
Bram Moolenaarbbc98db2012-02-12 01:55:55 +01001006# endif
Bram Moolenaarbbc98db2012-02-12 01:55:55 +01001007#endif
1008
Bram Moolenaar54b63522016-08-26 12:55:09 +02001009/*
1010 * mzscheme_main() is called early in main().
1011 * We may call scheme_main_setup() which calls mzscheme_env_main() which then
1012 * trampolines into vim_main2(), which never returns.
1013 */
Bram Moolenaarbbc98db2012-02-12 01:55:55 +01001014 int
Bram Moolenaar54b63522016-08-26 12:55:09 +02001015mzscheme_main(void)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001016{
Bram Moolenaara8e691d2016-08-07 15:19:26 +02001017 int argc = 0;
1018 char *argv = NULL;
1019
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001020#ifdef DYNAMIC_MZSCHEME
1021 /*
1022 * Racket requires trampolined startup. We can not load it later.
1023 * If dynamic dll loading is failed, disable it.
1024 */
1025 if (!mzscheme_enabled(FALSE))
1026 {
1027 disabled = TRUE;
Bram Moolenaara8e691d2016-08-07 15:19:26 +02001028 return vim_main2();
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001029 }
1030#endif
Bram Moolenaar5c5c9802015-07-10 16:12:48 +02001031#ifdef HAVE_TLS_SPACE
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001032 scheme_register_tls_space(&tls_space, _tls_index);
Bram Moolenaar2d0860d2010-11-03 21:59:30 +01001033#endif
Bram Moolenaarbbc98db2012-02-12 01:55:55 +01001034#ifdef TRAMPOLINED_MZVIM_STARTUP
Bram Moolenaara8e691d2016-08-07 15:19:26 +02001035 return scheme_main_setup(TRUE, mzscheme_env_main, argc, &argv);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001036#else
Bram Moolenaara8e691d2016-08-07 15:19:26 +02001037 return mzscheme_env_main(NULL, argc, &argv);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001038#endif
1039}
1040
1041 static int
Bram Moolenaar54b63522016-08-26 12:55:09 +02001042mzscheme_env_main(Scheme_Env *env, int argc UNUSED, char **argv UNUSED)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001043{
Bram Moolenaarbbc98db2012-02-12 01:55:55 +01001044#ifdef TRAMPOLINED_MZVIM_STARTUP
1045 /* Scheme has created the environment for us */
1046 environment = env;
1047#else
1048# ifdef MZ_PRECISE_GC
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001049 Scheme_Object *dummy = NULL;
1050 MZ_GC_DECL_REG(1);
1051 MZ_GC_VAR_IN_REG(0, dummy);
1052
1053 stack_base = &__gc_var_stack__;
1054# else
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001055 int dummy = 0;
1056 stack_base = (void *)&dummy;
Bram Moolenaarbbc98db2012-02-12 01:55:55 +01001057# endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001058#endif
Bram Moolenaarbbc98db2012-02-12 01:55:55 +01001059
Bram Moolenaar54b63522016-08-26 12:55:09 +02001060 vim_main2();
1061 /* not reached, vim_main2() will loop until exit() */
1062
1063 return 0;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001064}
1065
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001066 static Scheme_Object*
1067load_base_module(void *data)
1068{
1069 scheme_namespace_require(scheme_intern_symbol((char *)data));
1070 return scheme_null;
1071}
1072
1073 static Scheme_Object *
Bram Moolenaar8b29aba2016-03-28 22:17:16 +02001074load_base_module_on_error(void *data UNUSED)
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001075{
1076 load_base_module_failed = TRUE;
1077 return scheme_null;
1078}
1079
1080 static int
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001081startup_mzscheme(void)
1082{
Bram Moolenaarbbc98db2012-02-12 01:55:55 +01001083#ifndef TRAMPOLINED_MZVIM_STARTUP
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001084 scheme_set_stack_base(stack_base, 1);
1085#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001086
Bram Moolenaar75676462013-01-30 14:55:42 +01001087#ifndef TRAMPOLINED_MZVIM_STARTUP
1088 /* in newer versions of precise GC the initial env has been created */
1089 environment = scheme_basic_env();
1090#endif
1091
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001092 MZ_REGISTER_STATIC(environment);
1093 MZ_REGISTER_STATIC(curout);
1094 MZ_REGISTER_STATIC(curerr);
1095 MZ_REGISTER_STATIC(exn_catching_apply);
1096 MZ_REGISTER_STATIC(exn_p);
1097 MZ_REGISTER_STATIC(exn_message);
1098 MZ_REGISTER_STATIC(vim_exn);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001099
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001100 MZ_GC_CHECK();
1101
1102#ifdef INCLUDE_MZSCHEME_BASE
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001103 /* invoke function from generated and included mzscheme_base.c */
1104 declare_modules(environment);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001105#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001106
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001107 /* setup 'current-library-collection-paths' parameter */
Bram Moolenaare2a49d82007-07-06 17:43:08 +00001108# if MZSCHEME_VERSION_MAJOR >= 299
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001109 {
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001110 Scheme_Object *coll_path = NULL;
1111 int mustfree = FALSE;
1112 char_u *s;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001113
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001114 MZ_GC_DECL_REG(1);
1115 MZ_GC_VAR_IN_REG(0, coll_path);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001116 MZ_GC_REG();
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001117 /* workaround for dynamic loading on windows */
Bram Moolenaar74a97b12016-02-18 21:19:21 +01001118 s = vim_getenv((char_u *)"PLTCOLLECTS", &mustfree);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001119 if (s != NULL)
1120 {
Bram Moolenaar74a97b12016-02-18 21:19:21 +01001121 coll_path = scheme_make_path((char *)s);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001122 MZ_GC_CHECK();
1123 if (mustfree)
1124 vim_free(s);
1125 }
1126# ifdef MZSCHEME_COLLECTS
1127 if (coll_path == NULL)
1128 {
1129 coll_path = scheme_make_path(MZSCHEME_COLLECTS);
1130 MZ_GC_CHECK();
1131 }
Bram Moolenaar39d7d512013-01-31 21:09:15 +01001132# endif
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001133 if (coll_path != NULL)
1134 {
1135 scheme_set_collects_path(coll_path);
1136 MZ_GC_CHECK();
1137 }
1138 MZ_GC_UNREG();
1139 }
Bram Moolenaare2a49d82007-07-06 17:43:08 +00001140# else
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001141# ifdef MZSCHEME_COLLECTS
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001142 {
1143 Scheme_Object *coll_string = NULL;
1144 Scheme_Object *coll_pair = NULL;
1145 Scheme_Config *config = NULL;
1146
1147 MZ_GC_DECL_REG(3);
1148 MZ_GC_VAR_IN_REG(0, coll_string);
1149 MZ_GC_VAR_IN_REG(1, coll_pair);
1150 MZ_GC_VAR_IN_REG(2, config);
1151 MZ_GC_REG();
Bram Moolenaar75676462013-01-30 14:55:42 +01001152 coll_string = scheme_make_byte_string(MZSCHEME_COLLECTS);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001153 MZ_GC_CHECK();
1154 coll_pair = scheme_make_pair(coll_string, scheme_null);
1155 MZ_GC_CHECK();
Bram Moolenaar75676462013-01-30 14:55:42 +01001156 config = scheme_current_config();
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001157 MZ_GC_CHECK();
1158 scheme_set_param(config, MZCONFIG_COLLECTION_PATHS, coll_pair);
1159 MZ_GC_CHECK();
1160 MZ_GC_UNREG();
1161 }
Bram Moolenaare2a49d82007-07-06 17:43:08 +00001162# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001163#endif
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001164
1165# if MZSCHEME_VERSION_MAJOR >= 600
1166 {
1167 Scheme_Object *config_path = NULL;
1168 int mustfree = FALSE;
1169 char_u *s;
1170
1171 MZ_GC_DECL_REG(1);
1172 MZ_GC_VAR_IN_REG(0, config_path);
1173 MZ_GC_REG();
1174 /* workaround for dynamic loading on windows */
Bram Moolenaar5b7d1772016-06-13 19:54:22 +02001175 s = vim_getenv((char_u *)"PLTCONFIGDIR", &mustfree);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001176 if (s != NULL)
1177 {
Bram Moolenaar5b7d1772016-06-13 19:54:22 +02001178 config_path = scheme_make_path((char *)s);
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001179 MZ_GC_CHECK();
1180 if (mustfree)
1181 vim_free(s);
1182 }
1183#ifdef MZSCHEME_CONFIGDIR
1184 if (config_path == NULL)
1185 {
1186 config_path = scheme_make_path(MZSCHEME_CONFIGDIR);
1187 MZ_GC_CHECK();
1188 }
1189#endif
1190 if (config_path != NULL)
1191 {
1192 scheme_set_config_path(config_path);
1193 MZ_GC_CHECK();
1194 }
1195 MZ_GC_UNREG();
1196 }
1197# endif
1198
1199#if MZSCHEME_VERSION_MAJOR >= 400
1200 scheme_init_collection_paths(environment, scheme_null);
1201#endif
1202
1203 /*
1204 * versions 4.x do not provide Scheme bindings by default
1205 * we need to add them explicitly
1206 */
1207 {
1208 /* use error handler to avoid abort */
1209 scheme_dynamic_wind(NULL, load_base_module, NULL,
1210 load_base_module_on_error, "racket/base");
1211 if (load_base_module_failed)
1212 {
1213 load_base_module_failed = FALSE;
1214 scheme_dynamic_wind(NULL, load_base_module, NULL,
1215 load_base_module_on_error, "scheme/base");
1216 if (load_base_module_failed)
1217 return -1;
1218 }
1219 }
1220
1221 register_vim_exn();
1222 /* use new environment to initialise exception handling */
1223 init_exn_catching_apply();
1224
1225 /* redirect output */
1226 scheme_console_output = do_output;
1227 scheme_console_printf = do_printf;
1228
Bram Moolenaar555b2802005-05-19 21:08:39 +00001229#ifdef HAVE_SANDBOX
Bram Moolenaar555b2802005-05-19 21:08:39 +00001230 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001231 Scheme_Object *make_security_guard = NULL;
1232 MZ_GC_DECL_REG(1);
1233 MZ_GC_VAR_IN_REG(0, make_security_guard);
1234 MZ_GC_REG();
1235
1236#if MZSCHEME_VERSION_MAJOR < 400
1237 {
1238 Scheme_Object *make_security_guard_symbol = NULL;
1239 MZ_GC_DECL_REG(1);
1240 MZ_GC_VAR_IN_REG(0, make_security_guard_symbol);
1241 MZ_GC_REG();
1242 make_security_guard_symbol = scheme_intern_symbol("make-security-guard");
1243 MZ_GC_CHECK();
1244 make_security_guard = scheme_lookup_global(
1245 make_security_guard_symbol, environment);
1246 MZ_GC_UNREG();
1247 }
1248#else
1249 make_security_guard = scheme_builtin_value("make-security-guard");
1250 MZ_GC_CHECK();
1251#endif
1252
1253 /* setup sandbox guards */
1254 if (make_security_guard != NULL)
1255 {
1256 Scheme_Object *args[3] = {NULL, NULL, NULL};
1257 Scheme_Object *guard = NULL;
1258 Scheme_Config *config = NULL;
1259 MZ_GC_DECL_REG(5);
1260 MZ_GC_ARRAY_VAR_IN_REG(0, args, 3);
1261 MZ_GC_VAR_IN_REG(3, guard);
1262 MZ_GC_VAR_IN_REG(4, config);
1263 MZ_GC_REG();
Bram Moolenaar75676462013-01-30 14:55:42 +01001264 config = scheme_current_config();
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001265 MZ_GC_CHECK();
1266 args[0] = scheme_get_param(config, MZCONFIG_SECURITY_GUARD);
1267 MZ_GC_CHECK();
1268 args[1] = scheme_make_prim_w_arity(sandbox_file_guard,
1269 "sandbox-file-guard", 3, 3);
1270 args[2] = scheme_make_prim_w_arity(sandbox_network_guard,
1271 "sandbox-network-guard", 4, 4);
1272 guard = scheme_apply(make_security_guard, 3, args);
1273 MZ_GC_CHECK();
1274 scheme_set_param(config, MZCONFIG_SECURITY_GUARD, guard);
1275 MZ_GC_CHECK();
1276 MZ_GC_UNREG();
1277 }
1278 MZ_GC_UNREG();
Bram Moolenaar555b2802005-05-19 21:08:39 +00001279 }
1280#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001281 /* Create buffer and window types for use in Scheme code */
1282 mz_buffer_type = scheme_make_type("<vim-buffer>");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001283 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001284 mz_window_type = scheme_make_type("<vim-window>");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001285 MZ_GC_CHECK();
1286#ifdef MZ_PRECISE_GC
1287 GC_register_traversers(mz_buffer_type,
1288 buffer_size_proc, buffer_mark_proc, buffer_fixup_proc,
1289 TRUE, TRUE);
1290 GC_register_traversers(mz_window_type,
1291 window_size_proc, window_mark_proc, window_fixup_proc,
1292 TRUE, TRUE);
1293#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001294
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001295 make_modules();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001296
1297 /*
1298 * setup callback to receive notifications
1299 * whether thread scheduling is (or not) required
1300 */
1301 scheme_notify_multithread = notify_multithread;
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001302
1303 return 0;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001304}
1305
1306/*
1307 * This routine is called for each new invocation of MzScheme
1308 * to make sure things are properly initialized.
1309 */
1310 static int
1311mzscheme_init(void)
1312{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001313 if (!initialized)
1314 {
Bram Moolenaar33570922005-01-25 22:26:29 +00001315#ifdef DYNAMIC_MZSCHEME
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001316 if (disabled || !mzscheme_enabled(TRUE))
Bram Moolenaar33570922005-01-25 22:26:29 +00001317 {
Bram Moolenaarb849e712009-06-24 15:51:37 +00001318 EMSG(_("E815: Sorry, this command is disabled, the MzScheme libraries could not be loaded."));
Bram Moolenaar33570922005-01-25 22:26:29 +00001319 return -1;
1320 }
1321#endif
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001322 if (load_base_module_failed || startup_mzscheme())
1323 {
Bram Moolenaar9e3be262016-01-24 13:58:40 +01001324 EMSG(_("E895: Sorry, this command is disabled, the MzScheme's racket/base module could not be loaded."));
Bram Moolenaar4e640bd2016-01-16 16:20:38 +01001325 return -1;
1326 }
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001327 initialized = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001328 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001329 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001330 Scheme_Config *config = NULL;
1331 MZ_GC_DECL_REG(1);
1332 MZ_GC_VAR_IN_REG(0, config);
1333 MZ_GC_REG();
Bram Moolenaar75676462013-01-30 14:55:42 +01001334 config = scheme_current_config();
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001335 MZ_GC_CHECK();
Bram Moolenaar0a1c0ec2009-12-16 18:02:47 +00001336 /* recreate ports each call effectively clearing these ones */
Bram Moolenaar75676462013-01-30 14:55:42 +01001337 curout = scheme_make_byte_string_output_port();
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001338 MZ_GC_CHECK();
Bram Moolenaar75676462013-01-30 14:55:42 +01001339 curerr = scheme_make_byte_string_output_port();
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001340 MZ_GC_CHECK();
1341 scheme_set_param(config, MZCONFIG_OUTPUT_PORT, curout);
1342 MZ_GC_CHECK();
1343 scheme_set_param(config, MZCONFIG_ERROR_PORT, curerr);
1344 MZ_GC_CHECK();
1345 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001346 }
1347
1348 return 0;
1349}
1350
1351/*
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001352 *========================================================================
1353 * 2. External Interface
1354 *========================================================================
1355 */
1356
1357/*
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001358 * Evaluate command with exception handling
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001359 */
1360 static int
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001361eval_with_exn_handling(void *data, Scheme_Closed_Prim *what, Scheme_Object **ret)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001362{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001363 Scheme_Object *value = NULL;
1364 Scheme_Object *exn = NULL;
1365 Scheme_Object *prim = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001366
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001367 MZ_GC_DECL_REG(3);
1368 MZ_GC_VAR_IN_REG(0, value);
1369 MZ_GC_VAR_IN_REG(1, exn);
1370 MZ_GC_VAR_IN_REG(2, prim);
1371 MZ_GC_REG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001372
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001373 prim = scheme_make_closed_prim_w_arity(what, data, "mzvim", 0, 0);
1374 MZ_GC_CHECK();
1375 value = _apply_thunk_catch_exceptions(prim, &exn);
1376 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001377
1378 if (!value)
1379 {
1380 value = extract_exn_message(exn);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001381 /* Got an exn? */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001382 if (value)
1383 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001384 scheme_display(value, curerr); /* Send to stderr-vim */
1385 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001386 do_flush();
1387 }
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001388 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001389 /* `raise' was called on some arbitrary value */
1390 return FAIL;
1391 }
1392
1393 if (ret != NULL) /* if pointer to retval supported give it up */
1394 *ret = value;
1395 /* Print any result, as long as it's not a void */
1396 else if (!SCHEME_VOIDP(value))
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001397 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001398 scheme_display(value, curout); /* Send to stdout-vim */
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001399 MZ_GC_CHECK();
1400 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001401
1402 do_flush();
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001403 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001404 return OK;
1405}
1406
1407/* :mzscheme */
1408 static int
1409do_mzscheme_command(exarg_T *eap, void *data, Scheme_Closed_Prim *what)
1410{
1411 if (mzscheme_init())
1412 return FAIL;
1413
1414 range_start = eap->line1;
1415 range_end = eap->line2;
1416
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001417 return eval_with_exn_handling(data, what, NULL);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001418}
1419
1420/*
1421 * Routine called by VIM when deleting a buffer
1422 */
1423 void
1424mzscheme_buffer_free(buf_T *buf)
1425{
Bram Moolenaare344bea2005-09-01 20:46:49 +00001426 if (buf->b_mzscheme_ref)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001427 {
Bram Moolenaar75676462013-01-30 14:55:42 +01001428 vim_mz_buffer *bp = NULL;
1429 MZ_GC_DECL_REG(1);
1430 MZ_GC_VAR_IN_REG(0, bp);
1431 MZ_GC_REG();
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001432
Bram Moolenaar75676462013-01-30 14:55:42 +01001433 bp = BUFFER_REF(buf);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001434 bp->buf = INVALID_BUFFER_VALUE;
Bram Moolenaar75676462013-01-30 14:55:42 +01001435#ifndef MZ_PRECISE_GC
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001436 scheme_gc_ptr_ok(bp);
Bram Moolenaar75676462013-01-30 14:55:42 +01001437#else
1438 scheme_free_immobile_box(buf->b_mzscheme_ref);
1439#endif
1440 buf->b_mzscheme_ref = NULL;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001441 MZ_GC_CHECK();
Bram Moolenaar75676462013-01-30 14:55:42 +01001442 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001443 }
1444}
1445
1446/*
1447 * Routine called by VIM when deleting a Window
1448 */
1449 void
1450mzscheme_window_free(win_T *win)
1451{
Bram Moolenaare344bea2005-09-01 20:46:49 +00001452 if (win->w_mzscheme_ref)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001453 {
Bram Moolenaar75676462013-01-30 14:55:42 +01001454 vim_mz_window *wp = NULL;
1455 MZ_GC_DECL_REG(1);
1456 MZ_GC_VAR_IN_REG(0, wp);
1457 MZ_GC_REG();
1458 wp = WINDOW_REF(win);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001459 wp->win = INVALID_WINDOW_VALUE;
Bram Moolenaar75676462013-01-30 14:55:42 +01001460#ifndef MZ_PRECISE_GC
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001461 scheme_gc_ptr_ok(wp);
Bram Moolenaar75676462013-01-30 14:55:42 +01001462#else
1463 scheme_free_immobile_box(win->w_mzscheme_ref);
1464#endif
1465 win->w_mzscheme_ref = NULL;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001466 MZ_GC_CHECK();
Bram Moolenaar75676462013-01-30 14:55:42 +01001467 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001468 }
1469}
1470
1471/*
1472 * ":mzscheme" (or ":mz")
1473 */
1474 void
1475ex_mzscheme(exarg_T *eap)
1476{
1477 char_u *script;
1478
1479 script = script_get(eap, eap->arg);
1480 if (!eap->skip)
1481 {
1482 if (script == NULL)
1483 do_mzscheme_command(eap, eap->arg, do_eval);
1484 else
1485 {
1486 do_mzscheme_command(eap, script, do_eval);
1487 vim_free(script);
1488 }
1489 }
1490}
1491
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001492 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02001493do_load(void *data, int noargc UNUSED, Scheme_Object **noargv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001494{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001495 Scheme_Object *expr = NULL;
1496 Scheme_Object *result = NULL;
1497 char *file = NULL;
1498 Port_Info *pinfo = (Port_Info *)data;
1499
1500 MZ_GC_DECL_REG(3);
1501 MZ_GC_VAR_IN_REG(0, expr);
1502 MZ_GC_VAR_IN_REG(1, result);
1503 MZ_GC_VAR_IN_REG(2, file);
1504 MZ_GC_REG();
1505
1506 file = (char *)scheme_malloc_fail_ok(scheme_malloc_atomic, MAXPATHL + 1);
1507 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001508
1509 /* make Vim expansion */
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001510 expand_env((char_u *)pinfo->name, (char_u *)file, MAXPATHL);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001511 pinfo->port = scheme_open_input_file(file, "mzfile");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001512 MZ_GC_CHECK();
1513 scheme_count_lines(pinfo->port); /* to get accurate read error location*/
1514 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001515
1516 /* Like REPL but print only last result */
1517 while (!SCHEME_EOFP(expr = scheme_read(pinfo->port)))
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001518 {
1519 result = scheme_eval(expr, environment);
1520 MZ_GC_CHECK();
1521 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001522
Bram Moolenaar0a1c0ec2009-12-16 18:02:47 +00001523 /* errors will be caught in do_mzscheme_command and ex_mzfile */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001524 scheme_close_input_port(pinfo->port);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001525 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001526 pinfo->port = NULL;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001527 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001528 return result;
1529}
1530
1531/* :mzfile */
1532 void
1533ex_mzfile(exarg_T *eap)
1534{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001535 Port_Info pinfo = {NULL, NULL};
1536
1537 MZ_GC_DECL_REG(1);
1538 MZ_GC_VAR_IN_REG(0, pinfo.port);
1539 MZ_GC_REG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001540
1541 pinfo.name = (char *)eap->arg;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001542 if (do_mzscheme_command(eap, &pinfo, do_load) != OK
1543 && pinfo.port != NULL) /* looks like port was not closed */
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001544 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001545 scheme_close_input_port(pinfo.port);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001546 MZ_GC_CHECK();
1547 }
1548 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001549}
1550
1551
1552/*
1553 *========================================================================
1554 * Exception handling code -- cribbed form the MzScheme sources and
1555 * Matthew Flatt's "Inside PLT MzScheme" document.
1556 *========================================================================
1557 */
1558 static void
1559init_exn_catching_apply(void)
1560{
1561 if (!exn_catching_apply)
1562 {
1563 char *e =
1564 "(lambda (thunk) "
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001565 "(with-handlers ([void (lambda (exn) (cons #f exn))]) "
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001566 "(cons #t (thunk))))";
1567
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001568 exn_catching_apply = scheme_eval_string(e, environment);
1569 MZ_GC_CHECK();
1570 exn_p = scheme_builtin_value("exn?");
1571 MZ_GC_CHECK();
1572 exn_message = scheme_builtin_value("exn-message");
1573 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001574 }
1575}
1576
1577/*
1578 * This function applies a thunk, returning the Scheme value if there's
1579 * no exception, otherwise returning NULL and setting *exn to the raised
1580 * value (usually an exn structure).
1581 */
1582 static Scheme_Object *
1583_apply_thunk_catch_exceptions(Scheme_Object *f, Scheme_Object **exn)
1584{
1585 Scheme_Object *v;
1586
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001587 v = _scheme_apply(exn_catching_apply, 1, &f);
1588 /* v is a pair: (cons #t value) or (cons #f exn) */
1589
1590 if (SCHEME_TRUEP(SCHEME_CAR(v)))
1591 return SCHEME_CDR(v);
1592 else
1593 {
1594 *exn = SCHEME_CDR(v);
1595 return NULL;
1596 }
1597}
1598
1599 static Scheme_Object *
1600extract_exn_message(Scheme_Object *v)
1601{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001602 if (SCHEME_TRUEP(_scheme_apply(exn_p, 1, &v)))
1603 return _scheme_apply(exn_message, 1, &v);
1604 else
1605 return NULL; /* Not an exn structure */
1606}
1607
1608 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02001609do_eval(void *s, int noargc UNUSED, Scheme_Object **noargv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001610{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001611 return scheme_eval_string_all((char *)s, environment, TRUE);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001612}
1613
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001614/*
1615 *========================================================================
1616 * 3. MzScheme I/O Handlers
1617 *========================================================================
1618 */
1619 static void
Bram Moolenaar64404472010-06-26 06:24:45 +02001620do_intrnl_output(char *mesg, int error)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001621{
1622 char *p, *prev;
1623
1624 prev = mesg;
1625 p = strchr(prev, '\n');
1626 while (p)
1627 {
1628 *p = '\0';
1629 if (error)
1630 EMSG(prev);
1631 else
1632 MSG(prev);
1633 prev = p + 1;
1634 p = strchr(prev, '\n');
1635 }
1636
1637 if (error)
1638 EMSG(prev);
1639 else
1640 MSG(prev);
1641}
1642
1643 static void
Bram Moolenaar75676462013-01-30 14:55:42 +01001644do_output(char *mesg, OUTPUT_LEN_TYPE len UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001645{
Bram Moolenaar02e14d62012-11-28 15:37:51 +01001646 /* TODO: use len, the string may not be NUL terminated */
Bram Moolenaar64404472010-06-26 06:24:45 +02001647 do_intrnl_output(mesg, 0);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001648}
1649
1650 static void
Bram Moolenaar64404472010-06-26 06:24:45 +02001651do_err_output(char *mesg)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001652{
Bram Moolenaar64404472010-06-26 06:24:45 +02001653 do_intrnl_output(mesg, 1);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001654}
1655
1656 static void
1657do_printf(char *format, ...)
1658{
Bram Moolenaar64404472010-06-26 06:24:45 +02001659 do_intrnl_output(format, 1);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001660}
1661
1662 static void
1663do_flush(void)
1664{
1665 char *buff;
Bram Moolenaar75676462013-01-30 14:55:42 +01001666 OUTPUT_LEN_TYPE length;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001667
Bram Moolenaar75676462013-01-30 14:55:42 +01001668 buff = scheme_get_sized_byte_string_output(curerr, &length);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001669 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001670 if (length)
1671 {
Bram Moolenaar64404472010-06-26 06:24:45 +02001672 do_err_output(buff);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001673 return;
1674 }
1675
Bram Moolenaar75676462013-01-30 14:55:42 +01001676 buff = scheme_get_sized_byte_string_output(curout, &length);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001677 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001678 if (length)
1679 do_output(buff, length);
1680}
1681
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001682/*
1683 *========================================================================
1684 * 4. Implementation of the Vim Features for MzScheme
1685 *========================================================================
1686 */
1687
1688/* (command {command-string}) */
1689 static Scheme_Object *
1690vim_command(void *data, int argc, Scheme_Object **argv)
1691{
1692 Vim_Prim *prim = (Vim_Prim *)data;
Bram Moolenaar75676462013-01-30 14:55:42 +01001693 Scheme_Object *cmd = NULL;
1694 MZ_GC_DECL_REG(1);
1695 MZ_GC_VAR_IN_REG(0, cmd);
1696 MZ_GC_REG();
1697 cmd = GUARANTEED_STRING_ARG(prim->name, 0);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001698
1699 /* may be use do_cmdline_cmd? */
Bram Moolenaar75676462013-01-30 14:55:42 +01001700 do_cmdline(BYTE_STRING_VALUE(cmd), NULL, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001701 update_screen(VALID);
1702
Bram Moolenaar75676462013-01-30 14:55:42 +01001703 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001704 raise_if_error();
1705 return scheme_void;
1706}
1707
1708/* (eval {expr-string}) */
1709 static Scheme_Object *
Bram Moolenaard2142212013-01-30 17:41:50 +01001710vim_eval(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001711{
1712#ifdef FEAT_EVAL
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001713 Vim_Prim *prim = (Vim_Prim *)data;
Bram Moolenaar75676462013-01-30 14:55:42 +01001714 Scheme_Object *result = NULL;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001715 typval_T *vim_result;
Bram Moolenaar75676462013-01-30 14:55:42 +01001716 Scheme_Object *expr = NULL;
1717 MZ_GC_DECL_REG(2);
1718 MZ_GC_VAR_IN_REG(0, result);
1719 MZ_GC_VAR_IN_REG(1, expr);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001720 MZ_GC_REG();
Bram Moolenaar75676462013-01-30 14:55:42 +01001721 expr = GUARANTEED_STRING_ARG(prim->name, 0);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001722
Bram Moolenaar75676462013-01-30 14:55:42 +01001723 vim_result = eval_expr(BYTE_STRING_VALUE(expr), NULL);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001724
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001725 if (vim_result == NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001726 raise_vim_exn(_("invalid expression"));
1727
Bram Moolenaar75676462013-01-30 14:55:42 +01001728 result = vim_to_mzscheme(vim_result);
1729 MZ_GC_CHECK();
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001730 free_tv(vim_result);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001731
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001732 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001733 return result;
1734#else
1735 raise_vim_exn(_("expressions disabled at compile time"));
1736 /* unreachable */
1737 return scheme_false;
1738#endif
1739}
1740
1741/* (range-start) */
1742 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02001743get_range_start(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001744{
1745 return scheme_make_integer(range_start);
1746}
1747
1748/* (range-end) */
1749 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02001750get_range_end(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001751{
1752 return scheme_make_integer(range_end);
1753}
1754
1755/* (beep) */
1756 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02001757mzscheme_beep(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001758{
Bram Moolenaar165bc692015-07-21 17:53:25 +02001759 vim_beep(BO_LANG);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001760 return scheme_void;
1761}
1762
1763static Scheme_Object *M_global = NULL;
1764
1765/* (get-option {option-name}) [buffer/window] */
1766 static Scheme_Object *
1767get_option(void *data, int argc, Scheme_Object **argv)
1768{
1769 Vim_Prim *prim = (Vim_Prim *)data;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001770 long value;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001771 char *strval;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001772 int rc;
Bram Moolenaar75676462013-01-30 14:55:42 +01001773 Scheme_Object *rval = NULL;
1774 Scheme_Object *name = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001775 int opt_flags = 0;
1776 buf_T *save_curb = curbuf;
1777 win_T *save_curw = curwin;
1778
Bram Moolenaar75676462013-01-30 14:55:42 +01001779 MZ_GC_DECL_REG(2);
1780 MZ_GC_VAR_IN_REG(0, rval);
1781 MZ_GC_VAR_IN_REG(1, name);
1782 MZ_GC_REG();
1783
1784 name = GUARANTEED_STRING_ARG(prim->name, 0);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001785
1786 if (argc > 1)
1787 {
1788 if (M_global == NULL)
1789 {
1790 MZ_REGISTER_STATIC(M_global);
1791 M_global = scheme_intern_symbol("global");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001792 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001793 }
1794
1795 if (argv[1] == M_global)
1796 opt_flags = OPT_GLOBAL;
1797 else if (SCHEME_VIMBUFFERP(argv[1]))
1798 {
1799 curbuf = get_valid_buffer(argv[1]);
1800 opt_flags = OPT_LOCAL;
1801 }
1802 else if (SCHEME_VIMWINDOWP(argv[1]))
1803 {
1804 win_T *win = get_valid_window(argv[1]);
1805
1806 curwin = win;
1807 curbuf = win->w_buffer;
1808 opt_flags = OPT_LOCAL;
1809 }
1810 else
1811 scheme_wrong_type(prim->name, "vim-buffer/window", 1, argc, argv);
1812 }
1813
Bram Moolenaar75676462013-01-30 14:55:42 +01001814 rc = get_option_value(BYTE_STRING_VALUE(name), &value, (char_u **)&strval, opt_flags);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001815 curbuf = save_curb;
1816 curwin = save_curw;
1817
1818 switch (rc)
1819 {
1820 case 1:
Bram Moolenaar75676462013-01-30 14:55:42 +01001821 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001822 return scheme_make_integer_value(value);
1823 case 0:
Bram Moolenaar75676462013-01-30 14:55:42 +01001824 rval = scheme_make_byte_string(strval);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001825 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001826 vim_free(strval);
Bram Moolenaar75676462013-01-30 14:55:42 +01001827 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001828 return rval;
1829 case -1:
1830 case -2:
Bram Moolenaar75676462013-01-30 14:55:42 +01001831 MZ_GC_UNREG();
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001832 raise_vim_exn(_("hidden option"));
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001833 case -3:
Bram Moolenaar75676462013-01-30 14:55:42 +01001834 MZ_GC_UNREG();
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001835 raise_vim_exn(_("unknown option"));
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001836 }
1837 /* unreachable */
1838 return scheme_void;
1839}
1840
1841/* (set-option {option-changing-string} [buffer/window]) */
1842 static Scheme_Object *
1843set_option(void *data, int argc, Scheme_Object **argv)
1844{
Bram Moolenaar75676462013-01-30 14:55:42 +01001845 char_u *command = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001846 int opt_flags = 0;
1847 buf_T *save_curb = curbuf;
1848 win_T *save_curw = curwin;
1849 Vim_Prim *prim = (Vim_Prim *)data;
Bram Moolenaar75676462013-01-30 14:55:42 +01001850 Scheme_Object *cmd = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001851
Bram Moolenaar75676462013-01-30 14:55:42 +01001852 MZ_GC_DECL_REG(1);
1853 MZ_GC_VAR_IN_REG(0, cmd);
1854 MZ_GC_REG();
1855 cmd = GUARANTEED_STRING_ARG(prim->name, 0);
1856
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001857 if (argc > 1)
1858 {
1859 if (M_global == NULL)
1860 {
1861 MZ_REGISTER_STATIC(M_global);
1862 M_global = scheme_intern_symbol("global");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001863 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001864 }
1865
1866 if (argv[1] == M_global)
1867 opt_flags = OPT_GLOBAL;
1868 else if (SCHEME_VIMBUFFERP(argv[1]))
1869 {
1870 curbuf = get_valid_buffer(argv[1]);
1871 opt_flags = OPT_LOCAL;
1872 }
1873 else if (SCHEME_VIMWINDOWP(argv[1]))
1874 {
1875 win_T *win = get_valid_window(argv[1]);
1876 curwin = win;
1877 curbuf = win->w_buffer;
1878 opt_flags = OPT_LOCAL;
1879 }
1880 else
1881 scheme_wrong_type(prim->name, "vim-buffer/window", 1, argc, argv);
1882 }
1883
1884 /* do_set can modify cmd, make copy */
Bram Moolenaar75676462013-01-30 14:55:42 +01001885 command = vim_strsave(BYTE_STRING_VALUE(cmd));
1886 MZ_GC_UNREG();
1887 do_set(command, opt_flags);
1888 vim_free(command);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001889 update_screen(NOT_VALID);
1890 curbuf = save_curb;
1891 curwin = save_curw;
1892 raise_if_error();
1893 return scheme_void;
1894}
1895
1896/*
1897 *===========================================================================
1898 * 5. Vim Window-related Manipulation Functions
1899 *===========================================================================
1900 */
1901
1902/* (curr-win) */
1903 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02001904get_curr_win(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001905{
1906 return (Scheme_Object *)get_vim_curr_window();
1907}
1908
1909/* (win-count) */
1910 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02001911get_window_count(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001912{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001913 int n = 0;
Bram Moolenaard2142212013-01-30 17:41:50 +01001914 win_T *w;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001915
Bram Moolenaar29323592016-07-24 22:04:11 +02001916 FOR_ALL_WINDOWS(w)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001917 ++n;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001918 return scheme_make_integer(n);
1919}
1920
1921/* (get-win-list [buffer]) */
1922 static Scheme_Object *
1923get_window_list(void *data, int argc, Scheme_Object **argv)
1924{
1925 Vim_Prim *prim = (Vim_Prim *)data;
1926 vim_mz_buffer *buf;
1927 Scheme_Object *list;
Bram Moolenaard2142212013-01-30 17:41:50 +01001928 win_T *w = firstwin;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001929
1930 buf = get_buffer_arg(prim->name, 0, argc, argv);
1931 list = scheme_null;
1932
Bram Moolenaard2142212013-01-30 17:41:50 +01001933 for ( ; w != NULL; w = w->w_next)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001934 if (w->w_buffer == buf->buf)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001935 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001936 list = scheme_make_pair(window_new(w), list);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001937 MZ_GC_CHECK();
1938 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001939
1940 return list;
1941}
1942
1943 static Scheme_Object *
1944window_new(win_T *win)
1945{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001946 vim_mz_window *self = NULL;
1947
1948 MZ_GC_DECL_REG(1);
1949 MZ_GC_VAR_IN_REG(0, self);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001950
1951 /* We need to handle deletion of windows underneath us.
Bram Moolenaare344bea2005-09-01 20:46:49 +00001952 * If we add a "w_mzscheme_ref" field to the win_T structure,
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001953 * then we can get at it in win_free() in vim.
1954 *
1955 * On a win_free() we set the Scheme object's win_T *field
1956 * to an invalid value. We trap all uses of a window
1957 * object, and reject them if the win_T *field is invalid.
1958 */
Bram Moolenaare344bea2005-09-01 20:46:49 +00001959 if (win->w_mzscheme_ref != NULL)
Bram Moolenaar75676462013-01-30 14:55:42 +01001960 return (Scheme_Object *)WINDOW_REF(win);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001961
Bram Moolenaar75676462013-01-30 14:55:42 +01001962 MZ_GC_REG();
1963 self = scheme_malloc_fail_ok(scheme_malloc_tagged, sizeof(vim_mz_window));
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001964 vim_memset(self, 0, sizeof(vim_mz_window));
Bram Moolenaar75676462013-01-30 14:55:42 +01001965#ifndef MZ_PRECISE_GC
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001966 scheme_dont_gc_ptr(self); /* because win isn't visible to GC */
Bram Moolenaar75676462013-01-30 14:55:42 +01001967#else
1968 win->w_mzscheme_ref = scheme_malloc_immobile_box(NULL);
1969#endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001970 MZ_GC_CHECK();
Bram Moolenaar75676462013-01-30 14:55:42 +01001971 WINDOW_REF(win) = self;
1972 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001973 self->win = win;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001974 self->so.type = mz_window_type;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001975
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001976 MZ_GC_UNREG();
Bram Moolenaar75676462013-01-30 14:55:42 +01001977 return (Scheme_Object *)self;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001978}
1979
1980/* (get-win-num [window]) */
1981 static Scheme_Object *
Bram Moolenaard2142212013-01-30 17:41:50 +01001982get_window_num(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001983{
Bram Moolenaard2142212013-01-30 17:41:50 +01001984 int nr = 1;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001985 Vim_Prim *prim = (Vim_Prim *)data;
1986 win_T *win = get_window_arg(prim->name, 0, argc, argv)->win;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001987 win_T *wp;
1988
1989 for (wp = firstwin; wp != win; wp = wp->w_next)
1990 ++nr;
1991
1992 return scheme_make_integer(nr);
1993}
1994
1995/* (get-win-by-num {windownum}) */
1996 static Scheme_Object *
1997get_window_by_num(void *data, int argc, Scheme_Object **argv)
1998{
1999 Vim_Prim *prim = (Vim_Prim *)data;
Bram Moolenaard2142212013-01-30 17:41:50 +01002000 win_T *win = firstwin;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002001 int fnum;
2002
2003 fnum = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0));
2004 if (fnum < 1)
2005 scheme_signal_error(_("window index is out of range"));
2006
Bram Moolenaard2142212013-01-30 17:41:50 +01002007 for ( ; win != NULL; win = win->w_next, --fnum)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002008 if (fnum == 1) /* to be 1-based */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002009 return window_new(win);
2010
2011 return scheme_false;
2012}
2013
2014/* (get-win-buffer [window]) */
2015 static Scheme_Object *
2016get_window_buffer(void *data, int argc, Scheme_Object **argv)
2017{
2018 Vim_Prim *prim = (Vim_Prim *)data;
2019 vim_mz_window *win = get_window_arg(prim->name, 0, argc, argv);
2020
2021 return buffer_new(win->win->w_buffer);
2022}
2023
2024/* (get-win-height [window]) */
2025 static Scheme_Object *
2026get_window_height(void *data, int argc, Scheme_Object **argv)
2027{
2028 Vim_Prim *prim = (Vim_Prim *)data;
2029 vim_mz_window *win = get_window_arg(prim->name, 0, argc, argv);
2030
2031 return scheme_make_integer(win->win->w_height);
2032}
2033
2034/* (set-win-height {height} [window]) */
2035 static Scheme_Object *
2036set_window_height(void *data, int argc, Scheme_Object **argv)
2037{
2038 Vim_Prim *prim = (Vim_Prim *)data;
2039 vim_mz_window *win;
2040 win_T *savewin;
2041 int height;
2042
2043 win = get_window_arg(prim->name, 1, argc, argv);
2044 height = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0));
2045
2046#ifdef FEAT_GUI
2047 need_mouse_correct = TRUE;
2048#endif
2049
2050 savewin = curwin;
2051 curwin = win->win;
2052 win_setheight(height);
2053 curwin = savewin;
2054
2055 raise_if_error();
2056 return scheme_void;
2057}
2058
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002059/* (get-win-width [window]) */
2060 static Scheme_Object *
2061get_window_width(void *data, int argc, Scheme_Object **argv)
2062{
2063 Vim_Prim *prim = (Vim_Prim *)data;
2064 vim_mz_window *win = get_window_arg(prim->name, 0, argc, argv);
2065
Bram Moolenaar02631462017-09-22 15:20:32 +02002066 return scheme_make_integer(win->win->w_width);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002067}
2068
2069/* (set-win-width {width} [window]) */
2070 static Scheme_Object *
2071set_window_width(void *data, int argc, Scheme_Object **argv)
2072{
2073 Vim_Prim *prim = (Vim_Prim *)data;
2074 vim_mz_window *win;
2075 win_T *savewin;
2076 int width = 0;
2077
2078 win = get_window_arg(prim->name, 1, argc, argv);
2079 width = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0));
2080
2081# ifdef FEAT_GUI
2082 need_mouse_correct = TRUE;
2083# endif
2084
2085 savewin = curwin;
2086 curwin = win->win;
2087 win_setwidth(width);
2088 curwin = savewin;
2089
2090 raise_if_error();
2091 return scheme_void;
2092}
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002093
2094/* (get-cursor [window]) -> (line . col) */
2095 static Scheme_Object *
2096get_cursor(void *data, int argc, Scheme_Object **argv)
2097{
2098 Vim_Prim *prim = (Vim_Prim *)data;
2099 vim_mz_window *win;
2100 pos_T pos;
2101
2102 win = get_window_arg(prim->name, 0, argc, argv);
2103 pos = win->win->w_cursor;
2104 return scheme_make_pair(scheme_make_integer_value((long)pos.lnum),
2105 scheme_make_integer_value((long)pos.col + 1));
2106}
2107
2108/* (set-cursor (line . col) [window]) */
2109 static Scheme_Object *
2110set_cursor(void *data, int argc, Scheme_Object **argv)
2111{
2112 Vim_Prim *prim = (Vim_Prim *)data;
2113 vim_mz_window *win;
2114 long lnum = 0;
2115 long col = 0;
2116
Bram Moolenaar555b2802005-05-19 21:08:39 +00002117#ifdef HAVE_SANDBOX
2118 sandbox_check();
2119#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002120 win = get_window_arg(prim->name, 1, argc, argv);
2121 GUARANTEE_PAIR(prim->name, 0);
2122
2123 if (!SCHEME_INTP(SCHEME_CAR(argv[0]))
2124 || !SCHEME_INTP(SCHEME_CDR(argv[0])))
2125 scheme_wrong_type(prim->name, "integer pair", 0, argc, argv);
2126
2127 lnum = SCHEME_INT_VAL(SCHEME_CAR(argv[0]));
2128 col = SCHEME_INT_VAL(SCHEME_CDR(argv[0])) - 1;
2129
2130 check_line_range(lnum, win->win->w_buffer);
2131 /* don't know how to catch invalid column value */
2132
2133 win->win->w_cursor.lnum = lnum;
2134 win->win->w_cursor.col = col;
Bram Moolenaar53901442018-07-25 22:02:36 +02002135 win->win->w_set_curswant = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002136 update_screen(VALID);
2137
2138 raise_if_error();
2139 return scheme_void;
2140}
2141/*
2142 *===========================================================================
2143 * 6. Vim Buffer-related Manipulation Functions
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002144 *===========================================================================
2145 */
2146
2147/* (open-buff {filename}) */
2148 static Scheme_Object *
2149mzscheme_open_buffer(void *data, int argc, Scheme_Object **argv)
2150{
2151 Vim_Prim *prim = (Vim_Prim *)data;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002152 int num = 0;
Bram Moolenaar75676462013-01-30 14:55:42 +01002153 Scheme_Object *onum = NULL;
2154 Scheme_Object *buf = NULL;
2155 Scheme_Object *fname;
2156
2157 MZ_GC_DECL_REG(3);
2158 MZ_GC_VAR_IN_REG(0, onum);
2159 MZ_GC_VAR_IN_REG(1, buf);
2160 MZ_GC_VAR_IN_REG(2, fname);
2161 MZ_GC_REG();
2162 fname = GUARANTEED_STRING_ARG(prim->name, 0);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002163
Bram Moolenaar555b2802005-05-19 21:08:39 +00002164#ifdef HAVE_SANDBOX
2165 sandbox_check();
2166#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002167 /* TODO make open existing file */
Bram Moolenaar75676462013-01-30 14:55:42 +01002168 num = buflist_add(BYTE_STRING_VALUE(fname), BLN_LISTED | BLN_CURBUF);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002169
2170 if (num == 0)
2171 raise_vim_exn(_("couldn't open buffer"));
2172
2173 onum = scheme_make_integer(num);
Bram Moolenaar75676462013-01-30 14:55:42 +01002174 buf = get_buffer_by_num(data, 1, &onum);
2175 MZ_GC_UNREG();
2176 return buf;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002177}
2178
2179/* (get-buff-by-num {buffernum}) */
2180 static Scheme_Object *
2181get_buffer_by_num(void *data, int argc, Scheme_Object **argv)
2182{
2183 Vim_Prim *prim = (Vim_Prim *)data;
2184 buf_T *buf;
2185 int fnum;
2186
2187 fnum = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0));
2188
Bram Moolenaar29323592016-07-24 22:04:11 +02002189 FOR_ALL_BUFFERS(buf)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002190 if (buf->b_fnum == fnum)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002191 return buffer_new(buf);
2192
2193 return scheme_false;
2194}
2195
2196/* (get-buff-by-name {buffername}) */
2197 static Scheme_Object *
2198get_buffer_by_name(void *data, int argc, Scheme_Object **argv)
2199{
2200 Vim_Prim *prim = (Vim_Prim *)data;
2201 buf_T *buf;
Bram Moolenaar75676462013-01-30 14:55:42 +01002202 Scheme_Object *buffer = NULL;
2203 Scheme_Object *fname = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002204
Bram Moolenaar75676462013-01-30 14:55:42 +01002205 MZ_GC_DECL_REG(2);
2206 MZ_GC_VAR_IN_REG(0, buffer);
2207 MZ_GC_VAR_IN_REG(1, fname);
2208 MZ_GC_REG();
2209 fname = GUARANTEED_STRING_ARG(prim->name, 0);
2210 buffer = scheme_false;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002211
Bram Moolenaar29323592016-07-24 22:04:11 +02002212 FOR_ALL_BUFFERS(buf)
Bram Moolenaar75676462013-01-30 14:55:42 +01002213 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002214 if (buf->b_ffname == NULL || buf->b_sfname == NULL)
2215 /* empty string */
2216 {
Bram Moolenaar75676462013-01-30 14:55:42 +01002217 if (BYTE_STRING_VALUE(fname)[0] == NUL)
2218 buffer = buffer_new(buf);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002219 }
Bram Moolenaar75676462013-01-30 14:55:42 +01002220 else if (!fnamecmp(buf->b_ffname, BYTE_STRING_VALUE(fname))
2221 || !fnamecmp(buf->b_sfname, BYTE_STRING_VALUE(fname)))
2222 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002223 /* either short or long filename matches */
Bram Moolenaar75676462013-01-30 14:55:42 +01002224 buffer = buffer_new(buf);
2225 }
2226 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002227
Bram Moolenaar75676462013-01-30 14:55:42 +01002228 MZ_GC_UNREG();
2229 return buffer;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002230}
2231
2232/* (get-next-buff [buffer]) */
2233 static Scheme_Object *
2234get_next_buffer(void *data, int argc, Scheme_Object **argv)
2235{
2236 Vim_Prim *prim = (Vim_Prim *)data;
2237 buf_T *buf = get_buffer_arg(prim->name, 0, argc, argv)->buf;
2238
2239 if (buf->b_next == NULL)
2240 return scheme_false;
2241 else
2242 return buffer_new(buf->b_next);
2243}
2244
2245/* (get-prev-buff [buffer]) */
2246 static Scheme_Object *
2247get_prev_buffer(void *data, int argc, Scheme_Object **argv)
2248{
2249 Vim_Prim *prim = (Vim_Prim *)data;
2250 buf_T *buf = get_buffer_arg(prim->name, 0, argc, argv)->buf;
2251
2252 if (buf->b_prev == NULL)
2253 return scheme_false;
2254 else
2255 return buffer_new(buf->b_prev);
2256}
2257
2258/* (get-buff-num [buffer]) */
2259 static Scheme_Object *
2260get_buffer_num(void *data, int argc, Scheme_Object **argv)
2261{
2262 Vim_Prim *prim = (Vim_Prim *)data;
2263 vim_mz_buffer *buf = get_buffer_arg(prim->name, 0, argc, argv);
2264
2265 return scheme_make_integer(buf->buf->b_fnum);
2266}
2267
2268/* (buff-count) */
2269 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02002270get_buffer_count(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002271{
2272 buf_T *b;
2273 int n = 0;
2274
Bram Moolenaar29323592016-07-24 22:04:11 +02002275 FOR_ALL_BUFFERS(b) ++n;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002276 return scheme_make_integer(n);
2277}
2278
2279/* (get-buff-name [buffer]) */
2280 static Scheme_Object *
2281get_buffer_name(void *data, int argc, Scheme_Object **argv)
2282{
2283 Vim_Prim *prim = (Vim_Prim *)data;
2284 vim_mz_buffer *buf = get_buffer_arg(prim->name, 0, argc, argv);
2285
Bram Moolenaar75676462013-01-30 14:55:42 +01002286 return scheme_make_byte_string((char *)buf->buf->b_ffname);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002287}
2288
2289/* (curr-buff) */
2290 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02002291get_curr_buffer(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002292{
2293 return (Scheme_Object *)get_vim_curr_buffer();
2294}
2295
2296 static Scheme_Object *
2297buffer_new(buf_T *buf)
2298{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002299 vim_mz_buffer *self = NULL;
2300
2301 MZ_GC_DECL_REG(1);
2302 MZ_GC_VAR_IN_REG(0, self);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002303
2304 /* We need to handle deletion of buffers underneath us.
Bram Moolenaare344bea2005-09-01 20:46:49 +00002305 * If we add a "b_mzscheme_ref" field to the buf_T structure,
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002306 * then we can get at it in buf_freeall() in vim.
2307 */
Bram Moolenaare344bea2005-09-01 20:46:49 +00002308 if (buf->b_mzscheme_ref)
Bram Moolenaar75676462013-01-30 14:55:42 +01002309 return (Scheme_Object *)BUFFER_REF(buf);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002310
Bram Moolenaar75676462013-01-30 14:55:42 +01002311 MZ_GC_REG();
2312 self = scheme_malloc_fail_ok(scheme_malloc_tagged, sizeof(vim_mz_buffer));
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002313 vim_memset(self, 0, sizeof(vim_mz_buffer));
Bram Moolenaar75676462013-01-30 14:55:42 +01002314#ifndef MZ_PRECISE_GC
2315 scheme_dont_gc_ptr(self); /* because buf isn't visible to GC */
2316#else
2317 buf->b_mzscheme_ref = scheme_malloc_immobile_box(NULL);
2318#endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002319 MZ_GC_CHECK();
Bram Moolenaar75676462013-01-30 14:55:42 +01002320 BUFFER_REF(buf) = self;
2321 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002322 self->buf = buf;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002323 self->so.type = mz_buffer_type;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002324
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002325 MZ_GC_UNREG();
Bram Moolenaar75676462013-01-30 14:55:42 +01002326 return (Scheme_Object *)self;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002327}
2328
2329/*
2330 * (get-buff-size [buffer])
2331 *
2332 * Get the size (number of lines) in the current buffer.
2333 */
2334 static Scheme_Object *
2335get_buffer_size(void *data, int argc, Scheme_Object **argv)
2336{
2337 Vim_Prim *prim = (Vim_Prim *)data;
2338 vim_mz_buffer *buf = get_buffer_arg(prim->name, 0, argc, argv);
2339
2340 return scheme_make_integer(buf->buf->b_ml.ml_line_count);
2341}
2342
2343/*
2344 * (get-buff-line {linenr} [buffer])
2345 *
2346 * Get a line from the specified buffer. The line number is
2347 * in Vim format (1-based). The line is returned as a MzScheme
2348 * string object.
2349 */
2350 static Scheme_Object *
2351get_buffer_line(void *data, int argc, Scheme_Object **argv)
2352{
2353 Vim_Prim *prim = (Vim_Prim *)data;
2354 vim_mz_buffer *buf;
2355 int linenr;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002356 char_u *line;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002357
2358 buf = get_buffer_arg(prim->name, 1, argc, argv);
2359 linenr = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0));
2360 line = ml_get_buf(buf->buf, (linenr_T)linenr, FALSE);
2361
2362 raise_if_error();
Bram Moolenaar75676462013-01-30 14:55:42 +01002363 return scheme_make_byte_string((char *)line);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002364}
2365
2366
2367/*
2368 * (get-buff-line-list {start} {end} [buffer])
2369 *
2370 * Get a list of lines from the specified buffer. The line numbers
2371 * are in Vim format (1-based). The range is from lo up to, but not
2372 * including, hi. The list is returned as a list of string objects.
2373 */
2374 static Scheme_Object *
2375get_buffer_line_list(void *data, int argc, Scheme_Object **argv)
2376{
2377 Vim_Prim *prim = (Vim_Prim *)data;
2378 vim_mz_buffer *buf;
2379 int i, hi, lo, n;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002380 Scheme_Object *list = NULL;
2381
2382 MZ_GC_DECL_REG(1);
2383 MZ_GC_VAR_IN_REG(0, list);
2384 MZ_GC_REG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002385
2386 buf = get_buffer_arg(prim->name, 2, argc, argv);
2387 list = scheme_null;
2388 hi = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 1));
2389 lo = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0));
2390
2391 /*
2392 * Handle some error conditions
2393 */
2394 if (lo < 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002395 lo = 0;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002396
2397 if (hi < 0)
2398 hi = 0;
2399 if (hi < lo)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002400 hi = lo;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002401
2402 n = hi - lo;
2403
2404 for (i = n; i >= 0; --i)
2405 {
Bram Moolenaar75676462013-01-30 14:55:42 +01002406 Scheme_Object *str = scheme_make_byte_string(
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002407 (char *)ml_get_buf(buf->buf, (linenr_T)(lo+i), FALSE));
2408 raise_if_error();
2409
2410 /* Set the list item */
2411 list = scheme_make_pair(str, list);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002412 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002413 }
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002414 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002415 return list;
2416}
2417
2418/*
2419 * (set-buff-line {linenr} {string/#f} [buffer])
2420 *
2421 * Replace a line in the specified buffer. The line number is
2422 * in Vim format (1-based). The replacement line is given as
2423 * an MzScheme string object. The object is checked for validity
2424 * and correct format. An exception is thrown if the values are not
2425 * the correct format.
2426 *
2427 * It returns a Scheme Object that indicates the length of the
2428 * string changed.
2429 */
2430 static Scheme_Object *
2431set_buffer_line(void *data, int argc, Scheme_Object **argv)
2432{
Bram Moolenaar0a1c0ec2009-12-16 18:02:47 +00002433 /* First of all, we check the value of the supplied MzScheme object.
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002434 * There are three cases:
2435 * 1. #f - this is a deletion.
2436 * 2. A string - this is a replacement.
2437 * 3. Anything else - this is an error.
2438 */
2439 Vim_Prim *prim = (Vim_Prim *)data;
2440 vim_mz_buffer *buf;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002441 Scheme_Object *line = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002442 char *save;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002443 int n;
2444
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002445 MZ_GC_DECL_REG(1);
2446 MZ_GC_VAR_IN_REG(0, line);
2447 MZ_GC_REG();
2448
Bram Moolenaar555b2802005-05-19 21:08:39 +00002449#ifdef HAVE_SANDBOX
2450 sandbox_check();
2451#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002452 n = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0));
2453 if (!SCHEME_STRINGP(argv[1]) && !SCHEME_FALSEP(argv[1]))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002454 scheme_wrong_type(prim->name, "string or #f", 1, argc, argv);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002455 line = argv[1];
2456 buf = get_buffer_arg(prim->name, 2, argc, argv);
2457
2458 check_line_range(n, buf->buf);
2459
2460 if (SCHEME_FALSEP(line))
2461 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002462 buf_T *savebuf = curbuf;
2463
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002464 curbuf = buf->buf;
2465
2466 if (u_savedel((linenr_T)n, 1L) == FAIL)
2467 {
2468 curbuf = savebuf;
2469 raise_vim_exn(_("cannot save undo information"));
2470 }
2471 else if (ml_delete((linenr_T)n, FALSE) == FAIL)
2472 {
2473 curbuf = savebuf;
2474 raise_vim_exn(_("cannot delete line"));
2475 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002476 if (buf->buf == curwin->w_buffer)
2477 mz_fix_cursor(n, n + 1, -1);
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002478 deleted_lines_mark((linenr_T)n, 1L);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002479
2480 curbuf = savebuf;
2481
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002482 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002483 raise_if_error();
2484 return scheme_void;
2485 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002486 else
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002487 {
2488 /* Otherwise it's a line */
2489 buf_T *savebuf = curbuf;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002490
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002491 save = string_to_line(line);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002492
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002493 curbuf = buf->buf;
2494
2495 if (u_savesub((linenr_T)n) == FAIL)
2496 {
2497 curbuf = savebuf;
2498 vim_free(save);
2499 raise_vim_exn(_("cannot save undo information"));
2500 }
2501 else if (ml_replace((linenr_T)n, (char_u *)save, TRUE) == FAIL)
2502 {
2503 curbuf = savebuf;
2504 vim_free(save);
2505 raise_vim_exn(_("cannot replace line"));
2506 }
2507 else
2508 {
2509 vim_free(save);
2510 changed_bytes((linenr_T)n, 0);
2511 }
2512
2513 curbuf = savebuf;
2514
2515 /* Check that the cursor is not beyond the end of the line now. */
2516 if (buf->buf == curwin->w_buffer)
2517 check_cursor_col();
2518
2519 MZ_GC_UNREG();
2520 raise_if_error();
2521 return scheme_void;
2522 }
2523}
2524
2525 static void
2526free_array(char **array)
2527{
2528 char **curr = array;
2529 while (*curr != NULL)
2530 vim_free(*curr++);
2531 vim_free(array);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002532}
2533
2534/*
2535 * (set-buff-line-list {start} {end} {string-list/#f/null} [buffer])
2536 *
2537 * Replace a range of lines in the specified buffer. The line numbers are in
2538 * Vim format (1-based). The range is from lo up to, but not including, hi.
2539 * The replacement lines are given as a Scheme list of string objects. The
2540 * list is checked for validity and correct format.
2541 *
2542 * Errors are returned as a value of FAIL. The return value is OK on success.
2543 * If OK is returned and len_change is not NULL, *len_change is set to the
2544 * change in the buffer length.
2545 */
2546 static Scheme_Object *
2547set_buffer_line_list(void *data, int argc, Scheme_Object **argv)
2548{
2549 /* First of all, we check the type of the supplied MzScheme object.
2550 * There are three cases:
2551 * 1. #f - this is a deletion.
2552 * 2. A list - this is a replacement.
2553 * 3. Anything else - this is an error.
2554 */
2555 Vim_Prim *prim = (Vim_Prim *)data;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002556 vim_mz_buffer *buf = NULL;
2557 Scheme_Object *line_list = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002558 int i, old_len, new_len, hi, lo;
2559 long extra;
2560
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002561 MZ_GC_DECL_REG(1);
2562 MZ_GC_VAR_IN_REG(0, line_list);
2563 MZ_GC_REG();
2564
Bram Moolenaar555b2802005-05-19 21:08:39 +00002565#ifdef HAVE_SANDBOX
2566 sandbox_check();
2567#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002568 lo = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0));
2569 hi = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 1));
2570 if (!SCHEME_PAIRP(argv[2])
2571 && !SCHEME_FALSEP(argv[2]) && !SCHEME_NULLP(argv[2]))
2572 scheme_wrong_type(prim->name, "list or #f", 2, argc, argv);
2573 line_list = argv[2];
2574 buf = get_buffer_arg(prim->name, 3, argc, argv);
2575 old_len = hi - lo;
2576 if (old_len < 0) /* process inverse values wisely */
2577 {
2578 i = lo;
2579 lo = hi;
2580 hi = i;
2581 old_len = -old_len;
2582 }
2583 extra = 0;
2584
2585 check_line_range(lo, buf->buf); /* inclusive */
Bram Moolenaarbae0c162007-05-10 19:30:25 +00002586 check_line_range(hi - 1, buf->buf); /* exclusive */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002587
2588 if (SCHEME_FALSEP(line_list) || SCHEME_NULLP(line_list))
2589 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002590 buf_T *savebuf = curbuf;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002591 curbuf = buf->buf;
2592
2593 if (u_savedel((linenr_T)lo, (long)old_len) == FAIL)
2594 {
2595 curbuf = savebuf;
2596 raise_vim_exn(_("cannot save undo information"));
2597 }
2598 else
2599 {
2600 for (i = 0; i < old_len; i++)
2601 if (ml_delete((linenr_T)lo, FALSE) == FAIL)
2602 {
2603 curbuf = savebuf;
2604 raise_vim_exn(_("cannot delete line"));
2605 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002606 if (buf->buf == curwin->w_buffer)
2607 mz_fix_cursor(lo, hi, -old_len);
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002608 deleted_lines_mark((linenr_T)lo, (long)old_len);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002609 }
2610
2611 curbuf = savebuf;
2612
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002613 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002614 raise_if_error();
2615 return scheme_void;
2616 }
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002617 else
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002618 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002619 buf_T *savebuf = curbuf;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002620
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002621 /* List */
2622 new_len = scheme_proper_list_length(line_list);
2623 MZ_GC_CHECK();
2624 if (new_len < 0) /* improper or cyclic list */
2625 scheme_wrong_type(prim->name, "proper list",
2626 2, argc, argv);
2627 else
2628 {
2629 char **array = NULL;
2630 Scheme_Object *line = NULL;
2631 Scheme_Object *rest = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002632
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002633 MZ_GC_DECL_REG(2);
2634 MZ_GC_VAR_IN_REG(0, line);
2635 MZ_GC_VAR_IN_REG(1, rest);
2636 MZ_GC_REG();
2637
Bram Moolenaar75676462013-01-30 14:55:42 +01002638 array = (char **)alloc((new_len+1)* sizeof(char *));
2639 vim_memset(array, 0, (new_len+1) * sizeof(char *));
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002640
2641 rest = line_list;
2642 for (i = 0; i < new_len; ++i)
2643 {
2644 line = SCHEME_CAR(rest);
2645 rest = SCHEME_CDR(rest);
2646 if (!SCHEME_STRINGP(line))
2647 {
2648 free_array(array);
2649 scheme_wrong_type(prim->name, "string-list", 2, argc, argv);
2650 }
2651 array[i] = string_to_line(line);
2652 }
2653
2654 curbuf = buf->buf;
2655
2656 if (u_save((linenr_T)(lo-1), (linenr_T)hi) == FAIL)
2657 {
2658 curbuf = savebuf;
2659 free_array(array);
2660 raise_vim_exn(_("cannot save undo information"));
2661 }
2662
2663 /*
2664 * If the size of the range is reducing (ie, new_len < old_len) we
2665 * need to delete some old_len. We do this at the start, by
2666 * repeatedly deleting line "lo".
2667 */
2668 for (i = 0; i < old_len - new_len; ++i)
2669 {
2670 if (ml_delete((linenr_T)lo, FALSE) == FAIL)
2671 {
2672 curbuf = savebuf;
2673 free_array(array);
2674 raise_vim_exn(_("cannot delete line"));
2675 }
2676 extra--;
2677 }
2678
2679 /*
2680 * For as long as possible, replace the existing old_len with the
2681 * new old_len. This is a more efficient operation, as it requires
2682 * less memory allocation and freeing.
2683 */
2684 for (i = 0; i < old_len && i < new_len; i++)
2685 if (ml_replace((linenr_T)(lo+i), (char_u *)array[i], TRUE) == FAIL)
2686 {
2687 curbuf = savebuf;
2688 free_array(array);
2689 raise_vim_exn(_("cannot replace line"));
2690 }
2691
2692 /*
2693 * Now we may need to insert the remaining new_len. We don't need to
2694 * free the string passed back because MzScheme has control of that
2695 * memory.
2696 */
2697 while (i < new_len)
2698 {
2699 if (ml_append((linenr_T)(lo + i - 1),
2700 (char_u *)array[i], 0, FALSE) == FAIL)
2701 {
2702 curbuf = savebuf;
2703 free_array(array);
2704 raise_vim_exn(_("cannot insert line"));
2705 }
2706 ++i;
2707 ++extra;
2708 }
2709 MZ_GC_UNREG();
2710 free_array(array);
2711 }
2712
2713 /*
2714 * Adjust marks. Invalidate any which lie in the
2715 * changed range, and move any in the remainder of the buffer.
2716 */
Bram Moolenaarfd89d7e2016-06-04 20:25:05 +02002717 mark_adjust((linenr_T)lo, (linenr_T)(hi - 1),
2718 (long)MAXLNUM, (long)extra);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002719 changed_lines((linenr_T)lo, 0, (linenr_T)hi, (long)extra);
2720
2721 if (buf->buf == curwin->w_buffer)
2722 mz_fix_cursor(lo, hi, extra);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002723 curbuf = savebuf;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002724
2725 MZ_GC_UNREG();
2726 raise_if_error();
2727 return scheme_void;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002728 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002729}
2730
2731/*
2732 * (insert-buff-line-list {linenr} {string/string-list} [buffer])
2733 *
Bram Moolenaar0a1c0ec2009-12-16 18:02:47 +00002734 * Insert a number of lines into the specified buffer after the specified line.
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002735 * The line number is in Vim format (1-based). The lines to be inserted are
2736 * given as an MzScheme list of string objects or as a single string. The lines
2737 * to be added are checked for validity and correct format. Errors are
2738 * returned as a value of FAIL. The return value is OK on success.
2739 * If OK is returned and len_change is not NULL, *len_change
2740 * is set to the change in the buffer length.
2741 */
2742 static Scheme_Object *
2743insert_buffer_line_list(void *data, int argc, Scheme_Object **argv)
2744{
2745 Vim_Prim *prim = (Vim_Prim *)data;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002746 vim_mz_buffer *buf = NULL;
2747 Scheme_Object *list = NULL;
2748 char *str = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002749 int i, n, size;
2750
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002751 MZ_GC_DECL_REG(1);
2752 MZ_GC_VAR_IN_REG(0, list);
2753 MZ_GC_REG();
2754
Bram Moolenaar555b2802005-05-19 21:08:39 +00002755#ifdef HAVE_SANDBOX
2756 sandbox_check();
2757#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002758 /*
2759 * First of all, we check the type of the supplied MzScheme object.
2760 * It must be a string or a list, or the call is in error.
2761 */
2762 n = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0));
2763 list = argv[1];
2764
2765 if (!SCHEME_STRINGP(list) && !SCHEME_PAIRP(list))
2766 scheme_wrong_type(prim->name, "string or list", 1, argc, argv);
2767 buf = get_buffer_arg(prim->name, 2, argc, argv);
2768
2769 if (n != 0) /* 0 can be used in insert */
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002770 check_line_range(n, buf->buf);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002771 if (SCHEME_STRINGP(list))
2772 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002773 buf_T *savebuf = curbuf;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002774
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002775 str = string_to_line(list);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002776 curbuf = buf->buf;
2777
2778 if (u_save((linenr_T)n, (linenr_T)(n+1)) == FAIL)
2779 {
2780 curbuf = savebuf;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002781 vim_free(str);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002782 raise_vim_exn(_("cannot save undo information"));
2783 }
2784 else if (ml_append((linenr_T)n, (char_u *)str, 0, FALSE) == FAIL)
2785 {
2786 curbuf = savebuf;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002787 vim_free(str);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002788 raise_vim_exn(_("cannot insert line"));
2789 }
2790 else
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002791 {
2792 vim_free(str);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002793 appended_lines_mark((linenr_T)n, 1L);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002794 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002795
2796 curbuf = savebuf;
2797 update_screen(VALID);
2798
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002799 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002800 raise_if_error();
2801 return scheme_void;
2802 }
2803
2804 /* List */
2805 size = scheme_proper_list_length(list);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002806 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002807 if (size < 0) /* improper or cyclic list */
2808 scheme_wrong_type(prim->name, "proper list",
2809 2, argc, argv);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002810 else
2811 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002812 Scheme_Object *line = NULL;
2813 Scheme_Object *rest = NULL;
2814 char **array;
2815 buf_T *savebuf = curbuf;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002816
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002817 MZ_GC_DECL_REG(2);
2818 MZ_GC_VAR_IN_REG(0, line);
2819 MZ_GC_VAR_IN_REG(1, rest);
2820 MZ_GC_REG();
2821
Bram Moolenaar75676462013-01-30 14:55:42 +01002822 array = (char **)alloc((size+1) * sizeof(char *));
2823 vim_memset(array, 0, (size+1) * sizeof(char *));
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002824
2825 rest = list;
2826 for (i = 0; i < size; ++i)
2827 {
2828 line = SCHEME_CAR(rest);
2829 rest = SCHEME_CDR(rest);
2830 array[i] = string_to_line(line);
2831 }
2832
2833 curbuf = buf->buf;
2834
2835 if (u_save((linenr_T)n, (linenr_T)(n + 1)) == FAIL)
2836 {
2837 curbuf = savebuf;
2838 free_array(array);
2839 raise_vim_exn(_("cannot save undo information"));
2840 }
2841 else
2842 {
2843 for (i = 0; i < size; ++i)
2844 if (ml_append((linenr_T)(n + i), (char_u *)array[i],
2845 0, FALSE) == FAIL)
2846 {
2847 curbuf = savebuf;
2848 free_array(array);
2849 raise_vim_exn(_("cannot insert line"));
2850 }
2851
2852 if (i > 0)
2853 appended_lines_mark((linenr_T)n, (long)i);
2854 }
2855 free_array(array);
2856 MZ_GC_UNREG();
2857 curbuf = savebuf;
2858 update_screen(VALID);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002859 }
2860
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002861 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002862 raise_if_error();
2863 return scheme_void;
2864}
2865
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002866/*
2867 * Predicates
2868 */
2869/* (buff? obj) */
2870 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02002871vim_bufferp(void *data UNUSED, int argc UNUSED, Scheme_Object **argv)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002872{
2873 if (SCHEME_VIMBUFFERP(argv[0]))
2874 return scheme_true;
2875 else
2876 return scheme_false;
2877}
2878
2879/* (win? obj) */
2880 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02002881vim_windowp(void *data UNUSED, int argc UNUSED, Scheme_Object **argv)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002882{
2883 if (SCHEME_VIMWINDOWP(argv[0]))
2884 return scheme_true;
2885 else
2886 return scheme_false;
2887}
2888
2889/* (buff-valid? obj) */
2890 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02002891vim_buffer_validp(void *data UNUSED, int argc UNUSED, Scheme_Object **argv)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002892{
2893 if (SCHEME_VIMBUFFERP(argv[0])
2894 && ((vim_mz_buffer *)argv[0])->buf != INVALID_BUFFER_VALUE)
2895 return scheme_true;
2896 else
2897 return scheme_false;
2898}
2899
2900/* (win-valid? obj) */
2901 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02002902vim_window_validp(void *data UNUSED, int argc UNUSED, Scheme_Object **argv)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002903{
2904 if (SCHEME_VIMWINDOWP(argv[0])
2905 && ((vim_mz_window *)argv[0])->win != INVALID_WINDOW_VALUE)
2906 return scheme_true;
2907 else
2908 return scheme_false;
2909}
2910
2911/*
2912 *===========================================================================
2913 * Utilities
2914 *===========================================================================
2915 */
2916
2917/*
2918 * Convert an MzScheme string into a Vim line.
2919 *
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002920 * All internal nulls are replaced by newline characters.
2921 * It is an error for the string to contain newline characters.
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002922 *
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002923 * Returns pointer to Vim allocated memory
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002924 */
2925 static char *
2926string_to_line(Scheme_Object *obj)
2927{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002928 char *scheme_str = NULL;
2929 char *vim_str = NULL;
Bram Moolenaar75676462013-01-30 14:55:42 +01002930 OUTPUT_LEN_TYPE len;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002931 int i;
2932
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002933 scheme_str = scheme_display_to_string(obj, &len);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002934
2935 /* Error checking: String must not contain newlines, as we
2936 * are replacing a single line, and we must replace it with
2937 * a single line.
2938 */
Bram Moolenaar75676462013-01-30 14:55:42 +01002939 if (memchr(scheme_str, '\n', len))
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002940 scheme_signal_error(_("string cannot contain newlines"));
2941
Bram Moolenaar75676462013-01-30 14:55:42 +01002942 vim_str = (char *)alloc(len + 1);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002943
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002944 /* Create a copy of the string, with internal nulls replaced by
2945 * newline characters, as is the vim convention.
2946 */
2947 for (i = 0; i < len; ++i)
2948 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002949 if (scheme_str[i] == '\0')
2950 vim_str[i] = '\n';
2951 else
2952 vim_str[i] = scheme_str[i];
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002953 }
2954
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002955 vim_str[i] = '\0';
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002956
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002957 MZ_GC_CHECK();
2958 return vim_str;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002959}
2960
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002961#ifdef FEAT_EVAL
2962/*
2963 * Convert Vim value into MzScheme, adopted from if_python.c
2964 */
2965 static Scheme_Object *
Bram Moolenaar75676462013-01-30 14:55:42 +01002966vim_to_mzscheme(typval_T *vim_value)
2967{
2968 Scheme_Object *result = NULL;
2969 /* hash table to store visited values to avoid infinite loops */
2970 Scheme_Hash_Table *visited = NULL;
2971
2972 MZ_GC_DECL_REG(2);
2973 MZ_GC_VAR_IN_REG(0, result);
2974 MZ_GC_VAR_IN_REG(1, visited);
2975 MZ_GC_REG();
2976
2977 visited = scheme_make_hash_table(SCHEME_hash_ptr);
2978 MZ_GC_CHECK();
2979
2980 result = vim_to_mzscheme_impl(vim_value, 1, visited);
2981
2982 MZ_GC_UNREG();
2983 return result;
2984}
2985
2986 static Scheme_Object *
2987vim_to_mzscheme_impl(typval_T *vim_value, int depth, Scheme_Hash_Table *visited)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002988{
2989 Scheme_Object *result = NULL;
2990 int new_value = TRUE;
2991
Bram Moolenaar75676462013-01-30 14:55:42 +01002992 MZ_GC_DECL_REG(2);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002993 MZ_GC_VAR_IN_REG(0, result);
Bram Moolenaar75676462013-01-30 14:55:42 +01002994 MZ_GC_VAR_IN_REG(1, visited);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00002995 MZ_GC_REG();
2996
2997 /* Avoid infinite recursion */
2998 if (depth > 100)
2999 {
3000 MZ_GC_UNREG();
3001 return scheme_void;
3002 }
3003
3004 /* Check if we run into a recursive loop. The item must be in visited
3005 * then and we can use it again.
3006 */
3007 result = scheme_hash_get(visited, (Scheme_Object *)vim_value);
3008 MZ_GC_CHECK();
3009 if (result != NULL) /* found, do nothing */
3010 new_value = FALSE;
3011 else if (vim_value->v_type == VAR_STRING)
3012 {
Bram Moolenaar75676462013-01-30 14:55:42 +01003013 result = scheme_make_byte_string((char *)vim_value->vval.v_string);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003014 MZ_GC_CHECK();
3015 }
3016 else if (vim_value->v_type == VAR_NUMBER)
3017 {
3018 result = scheme_make_integer((long)vim_value->vval.v_number);
3019 MZ_GC_CHECK();
3020 }
3021# ifdef FEAT_FLOAT
3022 else if (vim_value->v_type == VAR_FLOAT)
3023 {
3024 result = scheme_make_double((double)vim_value->vval.v_float);
3025 MZ_GC_CHECK();
3026 }
3027# endif
3028 else if (vim_value->v_type == VAR_LIST)
3029 {
3030 list_T *list = vim_value->vval.v_list;
3031 listitem_T *curr;
3032
3033 if (list == NULL || list->lv_first == NULL)
3034 result = scheme_null;
3035 else
3036 {
3037 Scheme_Object *obj = NULL;
3038
3039 MZ_GC_DECL_REG(1);
3040 MZ_GC_VAR_IN_REG(0, obj);
3041 MZ_GC_REG();
3042
3043 curr = list->lv_last;
Bram Moolenaar75676462013-01-30 14:55:42 +01003044 obj = vim_to_mzscheme_impl(&curr->li_tv, depth + 1, visited);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003045 result = scheme_make_pair(obj, scheme_null);
3046 MZ_GC_CHECK();
3047
3048 while (curr != list->lv_first)
3049 {
3050 curr = curr->li_prev;
Bram Moolenaar75676462013-01-30 14:55:42 +01003051 obj = vim_to_mzscheme_impl(&curr->li_tv, depth + 1, visited);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003052 result = scheme_make_pair(obj, result);
3053 MZ_GC_CHECK();
3054 }
3055 }
3056 MZ_GC_UNREG();
3057 }
3058 else if (vim_value->v_type == VAR_DICT)
3059 {
3060 Scheme_Object *key = NULL;
3061 Scheme_Object *obj = NULL;
3062
3063 MZ_GC_DECL_REG(2);
3064 MZ_GC_VAR_IN_REG(0, key);
3065 MZ_GC_VAR_IN_REG(1, obj);
3066 MZ_GC_REG();
3067
3068 result = (Scheme_Object *)scheme_make_hash_table(SCHEME_hash_ptr);
3069 MZ_GC_CHECK();
3070 if (vim_value->vval.v_dict != NULL)
3071 {
3072 hashtab_T *ht = &vim_value->vval.v_dict->dv_hashtab;
3073 long_u todo = ht->ht_used;
3074 hashitem_T *hi;
3075 dictitem_T *di;
3076
3077 for (hi = ht->ht_array; todo > 0; ++hi)
3078 {
3079 if (!HASHITEM_EMPTY(hi))
3080 {
3081 --todo;
3082
3083 di = dict_lookup(hi);
Bram Moolenaar75676462013-01-30 14:55:42 +01003084 obj = vim_to_mzscheme_impl(&di->di_tv, depth + 1, visited);
3085 key = scheme_make_byte_string((char *)hi->hi_key);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003086 MZ_GC_CHECK();
3087 scheme_hash_set((Scheme_Hash_Table *)result, key, obj);
3088 MZ_GC_CHECK();
3089 }
3090 }
3091 }
3092 MZ_GC_UNREG();
3093 }
Bram Moolenaar75676462013-01-30 14:55:42 +01003094 else if (vim_value->v_type == VAR_FUNC)
3095 {
3096 Scheme_Object *funcname = NULL;
3097
3098 MZ_GC_DECL_REG(1);
3099 MZ_GC_VAR_IN_REG(0, funcname);
3100 MZ_GC_REG();
3101
Bram Moolenaar67c2c052016-03-30 22:03:02 +02003102 /* FIXME: func_ref() and func_unref() are needed. */
Bram Moolenaar75676462013-01-30 14:55:42 +01003103 funcname = scheme_make_byte_string((char *)vim_value->vval.v_string);
3104 MZ_GC_CHECK();
3105 result = scheme_make_closed_prim_w_arity(vim_funcref, funcname,
3106 (const char *)BYTE_STRING_VALUE(funcname), 0, -1);
3107 MZ_GC_CHECK();
3108
3109 MZ_GC_UNREG();
3110 }
Bram Moolenaar67c2c052016-03-30 22:03:02 +02003111 else if (vim_value->v_type == VAR_PARTIAL)
3112 {
3113 if (vim_value->vval.v_partial == NULL)
3114 result = scheme_null;
3115 else
3116 {
3117 Scheme_Object *funcname = NULL;
3118
3119 MZ_GC_DECL_REG(1);
3120 MZ_GC_VAR_IN_REG(0, funcname);
3121 MZ_GC_REG();
3122
3123 /* FIXME: func_ref() and func_unref() are needed. */
3124 /* TODO: Support pt_dict and pt_argv. */
3125 funcname = scheme_make_byte_string(
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003126 (char *)partial_name(vim_value->vval.v_partial));
Bram Moolenaar67c2c052016-03-30 22:03:02 +02003127 MZ_GC_CHECK();
3128 result = scheme_make_closed_prim_w_arity(vim_funcref, funcname,
3129 (const char *)BYTE_STRING_VALUE(funcname), 0, -1);
3130 MZ_GC_CHECK();
3131
3132 MZ_GC_UNREG();
3133 }
3134 }
Bram Moolenaar520e1e42016-01-23 19:46:28 +01003135 else if (vim_value->v_type == VAR_SPECIAL)
3136 {
3137 if (vim_value->vval.v_number <= VVAL_TRUE)
3138 result = scheme_make_integer((long)vim_value->vval.v_number);
3139 else
3140 result = scheme_null;
3141 MZ_GC_CHECK();
3142 }
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003143 else
3144 {
3145 result = scheme_void;
3146 new_value = FALSE;
3147 }
3148 if (new_value)
3149 {
3150 scheme_hash_set(visited, (Scheme_Object *)vim_value, result);
3151 MZ_GC_CHECK();
3152 }
3153 MZ_GC_UNREG();
3154 return result;
3155}
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003156
3157 static int
Bram Moolenaar75676462013-01-30 14:55:42 +01003158mzscheme_to_vim(Scheme_Object *obj, typval_T *tv)
3159{
3160 int i, status;
3161 Scheme_Hash_Table *visited = NULL;
3162
3163 MZ_GC_DECL_REG(2);
3164 MZ_GC_VAR_IN_REG(0, obj);
3165 MZ_GC_VAR_IN_REG(1, visited);
3166 MZ_GC_REG();
3167
3168 visited = scheme_make_hash_table(SCHEME_hash_ptr);
3169 MZ_GC_CHECK();
3170
3171 status = mzscheme_to_vim_impl(obj, tv, 1, visited);
3172 for (i = 0; i < visited->size; ++i)
3173 {
3174 /* free up remembered objects */
3175 if (visited->vals[i] != NULL)
3176 free_tv((typval_T *)visited->vals[i]);
3177 }
3178
3179 MZ_GC_UNREG();
3180 return status;
3181}
3182 static int
3183mzscheme_to_vim_impl(Scheme_Object *obj, typval_T *tv, int depth,
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003184 Scheme_Hash_Table *visited)
3185{
3186 int status = OK;
3187 typval_T *found;
Bram Moolenaar75676462013-01-30 14:55:42 +01003188
3189 MZ_GC_DECL_REG(2);
3190 MZ_GC_VAR_IN_REG(0, obj);
3191 MZ_GC_VAR_IN_REG(1, visited);
3192 MZ_GC_REG();
3193
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003194 MZ_GC_CHECK();
3195 if (depth > 100) /* limit the deepest recursion level */
3196 {
3197 tv->v_type = VAR_NUMBER;
3198 tv->vval.v_number = 0;
3199 return FAIL;
3200 }
3201
3202 found = (typval_T *)scheme_hash_get(visited, obj);
3203 if (found != NULL)
3204 copy_tv(found, tv);
3205 else if (SCHEME_VOIDP(obj))
3206 {
Bram Moolenaar520e1e42016-01-23 19:46:28 +01003207 tv->v_type = VAR_SPECIAL;
3208 tv->vval.v_number = VVAL_NULL;
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003209 }
3210 else if (SCHEME_INTP(obj))
3211 {
3212 tv->v_type = VAR_NUMBER;
3213 tv->vval.v_number = SCHEME_INT_VAL(obj);
3214 }
3215 else if (SCHEME_BOOLP(obj))
3216 {
Bram Moolenaar520e1e42016-01-23 19:46:28 +01003217 tv->v_type = VAR_SPECIAL;
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003218 tv->vval.v_number = SCHEME_TRUEP(obj);
3219 }
3220# ifdef FEAT_FLOAT
3221 else if (SCHEME_DBLP(obj))
3222 {
3223 tv->v_type = VAR_FLOAT;
3224 tv->vval.v_float = SCHEME_DBL_VAL(obj);
3225 }
3226# endif
Bram Moolenaar75676462013-01-30 14:55:42 +01003227 else if (SCHEME_BYTE_STRINGP(obj))
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003228 {
3229 tv->v_type = VAR_STRING;
Bram Moolenaar75676462013-01-30 14:55:42 +01003230 tv->vval.v_string = vim_strsave(BYTE_STRING_VALUE(obj));
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003231 }
Bram Moolenaar75676462013-01-30 14:55:42 +01003232# if MZSCHEME_VERSION_MAJOR >= 299
3233 else if (SCHEME_CHAR_STRINGP(obj))
3234 {
3235 Scheme_Object *tmp = NULL;
3236 MZ_GC_DECL_REG(1);
3237 MZ_GC_VAR_IN_REG(0, tmp);
3238 MZ_GC_REG();
3239
3240 tmp = scheme_char_string_to_byte_string(obj);
3241 tv->v_type = VAR_STRING;
3242 tv->vval.v_string = vim_strsave(BYTE_STRING_VALUE(tmp));
3243 MZ_GC_UNREG();
3244 }
3245#endif
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003246 else if (SCHEME_VECTORP(obj) || SCHEME_NULLP(obj)
3247 || SCHEME_PAIRP(obj) || SCHEME_MUTABLE_PAIRP(obj))
3248 {
3249 list_T *list = list_alloc();
3250 if (list == NULL)
3251 status = FAIL;
3252 else
3253 {
3254 int i;
3255 Scheme_Object *curr = NULL;
3256 Scheme_Object *cval = NULL;
3257 /* temporary var to hold current element of vectors and pairs */
3258 typval_T *v;
3259
3260 MZ_GC_DECL_REG(2);
3261 MZ_GC_VAR_IN_REG(0, curr);
3262 MZ_GC_VAR_IN_REG(1, cval);
3263 MZ_GC_REG();
3264
3265 tv->v_type = VAR_LIST;
3266 tv->vval.v_list = list;
3267 ++list->lv_refcount;
3268
3269 v = (typval_T *)alloc(sizeof(typval_T));
3270 if (v == NULL)
3271 status = FAIL;
3272 else
3273 {
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003274 /* add the value in advance to allow handling of self-referential
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003275 * data structures */
3276 typval_T *visited_tv = (typval_T *)alloc(sizeof(typval_T));
3277 copy_tv(tv, visited_tv);
3278 scheme_hash_set(visited, obj, (Scheme_Object *)visited_tv);
3279
3280 if (SCHEME_VECTORP(obj))
3281 {
3282 for (i = 0; i < SCHEME_VEC_SIZE(obj); ++i)
3283 {
3284 cval = SCHEME_VEC_ELS(obj)[i];
Bram Moolenaar75676462013-01-30 14:55:42 +01003285 status = mzscheme_to_vim_impl(cval, v, depth + 1, visited);
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003286 if (status == FAIL)
3287 break;
3288 status = list_append_tv(list, v);
3289 clear_tv(v);
3290 if (status == FAIL)
3291 break;
3292 }
3293 }
3294 else if (SCHEME_PAIRP(obj) || SCHEME_MUTABLE_PAIRP(obj))
3295 {
3296 for (curr = obj;
3297 SCHEME_PAIRP(curr) || SCHEME_MUTABLE_PAIRP(curr);
3298 curr = SCHEME_CDR(curr))
3299 {
3300 cval = SCHEME_CAR(curr);
Bram Moolenaar75676462013-01-30 14:55:42 +01003301 status = mzscheme_to_vim_impl(cval, v, depth + 1, visited);
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003302 if (status == FAIL)
3303 break;
3304 status = list_append_tv(list, v);
3305 clear_tv(v);
3306 if (status == FAIL)
3307 break;
3308 }
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003309 /* improper list not terminated with null
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003310 * need to handle the last element */
3311 if (status == OK && !SCHEME_NULLP(curr))
3312 {
Bram Moolenaar75676462013-01-30 14:55:42 +01003313 status = mzscheme_to_vim_impl(cval, v, depth + 1, visited);
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003314 if (status == OK)
3315 {
3316 status = list_append_tv(list, v);
3317 clear_tv(v);
3318 }
3319 }
3320 }
3321 /* nothing to do for scheme_null */
3322 vim_free(v);
3323 }
3324 MZ_GC_UNREG();
3325 }
3326 }
3327 else if (SCHEME_HASHTP(obj))
3328 {
3329 int i;
3330 dict_T *dict;
3331 Scheme_Object *key = NULL;
3332 Scheme_Object *val = NULL;
3333
3334 MZ_GC_DECL_REG(2);
3335 MZ_GC_VAR_IN_REG(0, key);
3336 MZ_GC_VAR_IN_REG(1, val);
3337 MZ_GC_REG();
3338
3339 dict = dict_alloc();
3340 if (dict == NULL)
3341 status = FAIL;
3342 else
3343 {
3344 typval_T *visited_tv = (typval_T *)alloc(sizeof(typval_T));
3345
3346 tv->v_type = VAR_DICT;
3347 tv->vval.v_dict = dict;
3348 ++dict->dv_refcount;
3349
3350 copy_tv(tv, visited_tv);
3351 scheme_hash_set(visited, obj, (Scheme_Object *)visited_tv);
3352
3353 for (i = 0; i < ((Scheme_Hash_Table *)obj)->size; ++i)
3354 {
3355 if (((Scheme_Hash_Table *) obj)->vals[i] != NULL)
3356 {
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003357 /* generate item for `display'ed Scheme key */
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003358 dictitem_T *item = dictitem_alloc((char_u *)string_to_line(
3359 ((Scheme_Hash_Table *) obj)->keys[i]));
3360 /* convert Scheme val to Vim and add it to the dict */
Bram Moolenaar75676462013-01-30 14:55:42 +01003361 if (mzscheme_to_vim_impl(((Scheme_Hash_Table *) obj)->vals[i],
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003362 &item->di_tv, depth + 1, visited) == FAIL
3363 || dict_add(dict, item) == FAIL)
3364 {
3365 dictitem_free(item);
3366 status = FAIL;
3367 break;
3368 }
3369 }
3370
3371 }
3372 }
3373 MZ_GC_UNREG();
3374 }
3375 else
3376 {
3377 /* `display' any other value to string */
3378 tv->v_type = VAR_STRING;
3379 tv->vval.v_string = (char_u *)string_to_line(obj);
3380 }
Bram Moolenaar75676462013-01-30 14:55:42 +01003381 MZ_GC_UNREG();
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003382 return status;
3383}
3384
Bram Moolenaar75676462013-01-30 14:55:42 +01003385/* Scheme prim procedure wrapping Vim funcref */
3386 static Scheme_Object *
3387vim_funcref(void *name, int argc, Scheme_Object **argv)
3388{
3389 int i;
3390 typval_T args;
3391 int status = OK;
3392 Scheme_Object *result = NULL;
3393 list_T *list = list_alloc();
3394
3395 MZ_GC_DECL_REG(1);
3396 MZ_GC_VAR_IN_REG(0, result);
3397 MZ_GC_REG();
3398
3399 result = scheme_void;
3400 if (list == NULL)
3401 status = FAIL;
3402 else
3403 {
3404 args.v_type = VAR_LIST;
3405 args.vval.v_list = list;
3406 ++list->lv_refcount;
3407 for (i = 0; status == OK && i < argc; ++i)
3408 {
3409 typval_T *v = (typval_T *)alloc(sizeof(typval_T));
3410 if (v == NULL)
3411 status = FAIL;
3412 else
3413 {
3414 status = mzscheme_to_vim(argv[i], v);
3415 if (status == OK)
3416 {
3417 status = list_append_tv(list, v);
3418 clear_tv(v);
3419 }
3420 vim_free(v);
3421 }
3422 }
3423 if (status == OK)
3424 {
3425 typval_T ret;
3426 ret.v_type = VAR_UNKNOWN;
3427
3428 mzscheme_call_vim(BYTE_STRING_VALUE((Scheme_Object *)name), &args, &ret);
3429 MZ_GC_CHECK();
3430 result = vim_to_mzscheme(&ret);
3431 clear_tv(&ret);
3432 MZ_GC_CHECK();
3433 }
3434 }
3435 clear_tv(&args);
3436 MZ_GC_UNREG();
3437 if (status != OK)
3438 raise_vim_exn(_("error converting Scheme values to Vim"));
3439 else
3440 raise_if_error();
3441 return result;
3442}
3443
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003444 void
3445do_mzeval(char_u *str, typval_T *rettv)
3446{
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003447 Scheme_Object *ret = NULL;
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003448
Bram Moolenaar75676462013-01-30 14:55:42 +01003449 MZ_GC_DECL_REG(1);
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003450 MZ_GC_VAR_IN_REG(0, ret);
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003451 MZ_GC_REG();
3452
3453 if (mzscheme_init())
3454 {
3455 MZ_GC_UNREG();
3456 return;
3457 }
3458
3459 MZ_GC_CHECK();
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003460 if (eval_with_exn_handling(str, do_eval, &ret) == OK)
Bram Moolenaar75676462013-01-30 14:55:42 +01003461 mzscheme_to_vim(ret, rettv);
Bram Moolenaar7e506b62010-01-19 15:55:06 +01003462
3463 MZ_GC_UNREG();
3464}
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003465#endif
3466
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003467/*
3468 * Check to see whether a Vim error has been reported, or a keyboard
3469 * interrupt (from vim --> got_int) has been detected.
3470 */
3471 static int
3472vim_error_check(void)
3473{
3474 return (got_int || did_emsg);
3475}
3476
3477/*
3478 * register Scheme exn:vim
3479 */
3480 static void
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003481register_vim_exn(void)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003482{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003483 int nc = 0;
3484 int i;
3485 Scheme_Object *struct_exn = NULL;
3486 Scheme_Object *exn_name = NULL;
3487
3488 MZ_GC_DECL_REG(2);
3489 MZ_GC_VAR_IN_REG(0, struct_exn);
3490 MZ_GC_VAR_IN_REG(1, exn_name);
3491 MZ_GC_REG();
3492
3493 exn_name = scheme_intern_symbol("exn:vim");
3494 MZ_GC_CHECK();
3495 struct_exn = scheme_builtin_value("struct:exn");
3496 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003497
3498 if (vim_exn == NULL)
3499 vim_exn = scheme_make_struct_type(exn_name,
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003500 struct_exn, NULL, 0, 0, NULL, NULL
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003501#if MZSCHEME_VERSION_MAJOR >= 299
3502 , NULL
3503#endif
3504 );
3505
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003506
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003507 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003508 Scheme_Object **tmp = NULL;
3509 Scheme_Object *exn_names[5] = {NULL, NULL, NULL, NULL, NULL};
3510 Scheme_Object *exn_values[5] = {NULL, NULL, NULL, NULL, NULL};
3511 MZ_GC_DECL_REG(6);
3512 MZ_GC_ARRAY_VAR_IN_REG(0, exn_names, 5);
3513 MZ_GC_ARRAY_VAR_IN_REG(3, exn_values, 5);
3514 MZ_GC_REG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003515
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003516 tmp = scheme_make_struct_names(exn_name, scheme_null, 0, &nc);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003517 mch_memmove(exn_names, tmp, nc * sizeof(Scheme_Object *));
3518 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003519
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003520 tmp = scheme_make_struct_values(vim_exn, exn_names, nc, 0);
3521 mch_memmove(exn_values, tmp, nc * sizeof(Scheme_Object *));
3522 MZ_GC_CHECK();
3523
3524 for (i = 0; i < nc; i++)
3525 {
3526 scheme_add_global_symbol(exn_names[i],
3527 exn_values[i], environment);
3528 MZ_GC_CHECK();
3529 }
3530 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003531 }
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003532 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003533}
3534
3535/*
3536 * raise exn:vim, may be with additional info string
3537 */
3538 void
3539raise_vim_exn(const char *add_info)
3540{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003541 char *fmt = _("Vim error: ~a");
3542 Scheme_Object *argv[2] = {NULL, NULL};
3543 Scheme_Object *exn = NULL;
Bram Moolenaar75676462013-01-30 14:55:42 +01003544 Scheme_Object *byte_string = NULL;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003545
Bram Moolenaar75676462013-01-30 14:55:42 +01003546 MZ_GC_DECL_REG(5);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003547 MZ_GC_ARRAY_VAR_IN_REG(0, argv, 2);
3548 MZ_GC_VAR_IN_REG(3, exn);
Bram Moolenaar75676462013-01-30 14:55:42 +01003549 MZ_GC_VAR_IN_REG(4, byte_string);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003550 MZ_GC_REG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003551
3552 if (add_info != NULL)
3553 {
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003554 char *c_string = NULL;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003555 Scheme_Object *info = NULL;
3556
3557 MZ_GC_DECL_REG(3);
3558 MZ_GC_VAR_IN_REG(0, c_string);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003559 MZ_GC_VAR_IN_REG(2, info);
3560 MZ_GC_REG();
3561
Bram Moolenaar75676462013-01-30 14:55:42 +01003562 info = scheme_make_byte_string(add_info);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003563 MZ_GC_CHECK();
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02003564 c_string = scheme_format_utf8(fmt, (int)STRLEN(fmt), 1, &info, NULL);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003565 MZ_GC_CHECK();
Bram Moolenaar75676462013-01-30 14:55:42 +01003566 byte_string = scheme_make_byte_string(c_string);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003567 MZ_GC_CHECK();
3568 argv[0] = scheme_byte_string_to_char_string(byte_string);
Bram Moolenaar555b2802005-05-19 21:08:39 +00003569 SCHEME_SET_IMMUTABLE(argv[0]);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003570 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003571 }
3572 else
Bram Moolenaar75676462013-01-30 14:55:42 +01003573 {
3574 byte_string = scheme_make_byte_string(_("Vim error"));
3575 MZ_GC_CHECK();
3576 argv[0] = scheme_byte_string_to_char_string(byte_string);
3577 MZ_GC_CHECK();
3578 }
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003579 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003580
Bram Moolenaar049377e2007-05-12 15:32:12 +00003581#if MZSCHEME_VERSION_MAJOR < 360
3582 argv[1] = scheme_current_continuation_marks();
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003583 MZ_GC_CHECK();
Bram Moolenaar049377e2007-05-12 15:32:12 +00003584#else
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00003585 argv[1] = scheme_current_continuation_marks(NULL);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003586 MZ_GC_CHECK();
Bram Moolenaar049377e2007-05-12 15:32:12 +00003587#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003588
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003589 exn = scheme_make_struct_instance(vim_exn, 2, argv);
3590 MZ_GC_CHECK();
3591 scheme_raise(exn);
3592 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003593}
3594
3595 void
3596raise_if_error(void)
3597{
3598 if (vim_error_check())
3599 raise_vim_exn(NULL);
3600}
3601
3602/* get buffer:
3603 * either current
3604 * or passed as argv[argnum] with checks
3605 */
3606 static vim_mz_buffer *
3607get_buffer_arg(const char *fname, int argnum, int argc, Scheme_Object **argv)
3608{
3609 vim_mz_buffer *b;
3610
3611 if (argc < argnum + 1)
3612 return get_vim_curr_buffer();
3613 if (!SCHEME_VIMBUFFERP(argv[argnum]))
3614 scheme_wrong_type(fname, "vim-buffer", argnum, argc, argv);
3615 b = (vim_mz_buffer *)argv[argnum];
3616 (void)get_valid_buffer(argv[argnum]);
3617 return b;
3618}
3619
3620/* get window:
3621 * either current
3622 * or passed as argv[argnum] with checks
3623 */
3624 static vim_mz_window *
3625get_window_arg(const char *fname, int argnum, int argc, Scheme_Object **argv)
3626{
3627 vim_mz_window *w;
3628
3629 if (argc < argnum + 1)
3630 return get_vim_curr_window();
3631 w = (vim_mz_window *)argv[argnum];
3632 if (!SCHEME_VIMWINDOWP(argv[argnum]))
3633 scheme_wrong_type(fname, "vim-window", argnum, argc, argv);
3634 (void)get_valid_window(argv[argnum]);
3635 return w;
3636}
3637
3638/* get valid Vim buffer from Scheme_Object* */
3639buf_T *get_valid_buffer(void *obj)
3640{
3641 buf_T *buf = ((vim_mz_buffer *)obj)->buf;
3642
3643 if (buf == INVALID_BUFFER_VALUE)
3644 scheme_signal_error(_("buffer is invalid"));
3645 return buf;
3646}
3647
3648/* get valid Vim window from Scheme_Object* */
3649win_T *get_valid_window(void *obj)
3650{
3651 win_T *win = ((vim_mz_window *)obj)->win;
3652 if (win == INVALID_WINDOW_VALUE)
3653 scheme_signal_error(_("window is invalid"));
3654 return win;
3655}
3656
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003657 int
3658mzthreads_allowed(void)
3659{
3660 return mz_threads_allow;
3661}
3662
3663 static int
3664line_in_range(linenr_T lnum, buf_T *buf)
3665{
3666 return (lnum > 0 && lnum <= buf->b_ml.ml_line_count);
3667}
3668
3669 static void
3670check_line_range(linenr_T lnum, buf_T *buf)
3671{
3672 if (!line_in_range(lnum, buf))
3673 scheme_signal_error(_("linenr out of range"));
3674}
3675
3676/*
3677 * Check if deleting lines made the cursor position invalid
3678 * (or you'll get msg from Vim about invalid linenr).
3679 * Changed the lines from "lo" to "hi" and added "extra" lines (negative if
3680 * deleted). Got from if_python.c
3681 */
3682 static void
3683mz_fix_cursor(int lo, int hi, int extra)
3684{
3685 if (curwin->w_cursor.lnum >= lo)
3686 {
3687 /* Adjust the cursor position if it's in/after the changed
3688 * lines. */
3689 if (curwin->w_cursor.lnum >= hi)
3690 {
3691 curwin->w_cursor.lnum += extra;
3692 check_cursor_col();
3693 }
3694 else if (extra < 0)
3695 {
3696 curwin->w_cursor.lnum = lo;
3697 check_cursor();
3698 }
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003699 else
3700 check_cursor_col();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003701 changed_cline_bef_curs();
3702 }
3703 invalidate_botline();
3704}
3705
3706static Vim_Prim prims[]=
3707{
3708 /*
3709 * Buffer-related commands
3710 */
3711 {get_buffer_line, "get-buff-line", 1, 2},
3712 {set_buffer_line, "set-buff-line", 2, 3},
3713 {get_buffer_line_list, "get-buff-line-list", 2, 3},
3714 {get_buffer_name, "get-buff-name", 0, 1},
3715 {get_buffer_num, "get-buff-num", 0, 1},
3716 {get_buffer_size, "get-buff-size", 0, 1},
3717 {set_buffer_line_list, "set-buff-line-list", 3, 4},
3718 {insert_buffer_line_list, "insert-buff-line-list", 2, 3},
3719 {get_curr_buffer, "curr-buff", 0, 0},
3720 {get_buffer_count, "buff-count", 0, 0},
3721 {get_next_buffer, "get-next-buff", 0, 1},
3722 {get_prev_buffer, "get-prev-buff", 0, 1},
3723 {mzscheme_open_buffer, "open-buff", 1, 1},
3724 {get_buffer_by_name, "get-buff-by-name", 1, 1},
3725 {get_buffer_by_num, "get-buff-by-num", 1, 1},
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003726 /*
3727 * Window-related commands
3728 */
3729 {get_curr_win, "curr-win", 0, 0},
3730 {get_window_count, "win-count", 0, 0},
3731 {get_window_by_num, "get-win-by-num", 1, 1},
3732 {get_window_num, "get-win-num", 0, 1},
3733 {get_window_buffer, "get-win-buffer", 0, 1},
3734 {get_window_height, "get-win-height", 0, 1},
3735 {set_window_height, "set-win-height", 1, 2},
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003736 {get_window_width, "get-win-width", 0, 1},
3737 {set_window_width, "set-win-width", 1, 2},
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003738 {get_cursor, "get-cursor", 0, 1},
3739 {set_cursor, "set-cursor", 1, 2},
3740 {get_window_list, "get-win-list", 0, 1},
3741 /*
3742 * Vim-related commands
3743 */
3744 {vim_command, "command", 1, 1},
3745 {vim_eval, "eval", 1, 1},
3746 {get_range_start, "range-start", 0, 0},
3747 {get_range_end, "range-end", 0, 0},
3748 {mzscheme_beep, "beep", 0, 0},
3749 {get_option, "get-option", 1, 2},
3750 {set_option, "set-option", 1, 2},
3751 /*
3752 * small utilities
3753 */
3754 {vim_bufferp, "buff?", 1, 1},
3755 {vim_windowp, "win?", 1, 1},
3756 {vim_buffer_validp, "buff-valid?", 1, 1},
3757 {vim_window_validp, "win-valid?", 1, 1}
3758};
3759
3760/* return MzScheme wrapper for curbuf */
3761 static vim_mz_buffer *
3762get_vim_curr_buffer(void)
3763{
Bram Moolenaare344bea2005-09-01 20:46:49 +00003764 if (curbuf->b_mzscheme_ref == NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003765 return (vim_mz_buffer *)buffer_new(curbuf);
3766 else
Bram Moolenaar75676462013-01-30 14:55:42 +01003767 return BUFFER_REF(curbuf);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003768}
3769
3770/* return MzScheme wrapper for curwin */
3771 static vim_mz_window *
3772get_vim_curr_window(void)
3773{
Bram Moolenaare344bea2005-09-01 20:46:49 +00003774 if (curwin->w_mzscheme_ref == NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003775 return (vim_mz_window *)window_new(curwin);
3776 else
Bram Moolenaar75676462013-01-30 14:55:42 +01003777 return WINDOW_REF(curwin);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003778}
3779
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003780 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003781make_modules(void)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003782{
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003783 int i;
3784 Scheme_Env *mod = NULL;
3785 Scheme_Object *vimext_symbol = NULL;
3786 Scheme_Object *closed_prim = NULL;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003787
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003788 MZ_GC_DECL_REG(3);
3789 MZ_GC_VAR_IN_REG(0, mod);
3790 MZ_GC_VAR_IN_REG(1, vimext_symbol);
3791 MZ_GC_VAR_IN_REG(2, closed_prim);
3792 MZ_GC_REG();
3793
3794 vimext_symbol = scheme_intern_symbol("vimext");
3795 MZ_GC_CHECK();
3796 mod = scheme_primitive_module(vimext_symbol, environment);
3797 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003798 /* all prims made closed so they can access their own names */
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003799 for (i = 0; i < (int)(sizeof(prims)/sizeof(prims[0])); i++)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003800 {
3801 Vim_Prim *prim = prims + i;
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003802 closed_prim = scheme_make_closed_prim_w_arity(prim->prim, prim, prim->name,
3803 prim->mina, prim->maxa);
3804 scheme_add_global(prim->name, closed_prim, mod);
3805 MZ_GC_CHECK();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003806 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003807 scheme_finish_primitive_module(mod);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003808 MZ_GC_CHECK();
3809 MZ_GC_UNREG();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003810}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003811
Bram Moolenaar555b2802005-05-19 21:08:39 +00003812#ifdef HAVE_SANDBOX
3813static Scheme_Object *M_write = NULL;
3814static Scheme_Object *M_read = NULL;
3815static Scheme_Object *M_execute = NULL;
3816static Scheme_Object *M_delete = NULL;
3817
3818 static void
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00003819sandbox_check(void)
Bram Moolenaar555b2802005-05-19 21:08:39 +00003820{
3821 if (sandbox)
3822 raise_vim_exn(_("not allowed in the Vim sandbox"));
3823}
3824
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003825/* security guards to force Vim's sandbox restrictions on MzScheme level */
Bram Moolenaar555b2802005-05-19 21:08:39 +00003826 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02003827sandbox_file_guard(int argc UNUSED, Scheme_Object **argv)
Bram Moolenaar555b2802005-05-19 21:08:39 +00003828{
3829 if (sandbox)
3830 {
3831 Scheme_Object *requested_access = argv[2];
3832
3833 if (M_write == NULL)
3834 {
3835 MZ_REGISTER_STATIC(M_write);
3836 M_write = scheme_intern_symbol("write");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003837 MZ_GC_CHECK();
Bram Moolenaar555b2802005-05-19 21:08:39 +00003838 }
3839 if (M_read == NULL)
3840 {
3841 MZ_REGISTER_STATIC(M_read);
3842 M_read = scheme_intern_symbol("read");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003843 MZ_GC_CHECK();
Bram Moolenaar555b2802005-05-19 21:08:39 +00003844 }
3845 if (M_execute == NULL)
3846 {
3847 MZ_REGISTER_STATIC(M_execute);
3848 M_execute = scheme_intern_symbol("execute");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003849 MZ_GC_CHECK();
Bram Moolenaar555b2802005-05-19 21:08:39 +00003850 }
3851 if (M_delete == NULL)
3852 {
3853 MZ_REGISTER_STATIC(M_delete);
3854 M_delete = scheme_intern_symbol("delete");
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003855 MZ_GC_CHECK();
Bram Moolenaar555b2802005-05-19 21:08:39 +00003856 }
3857
3858 while (!SCHEME_NULLP(requested_access))
3859 {
3860 Scheme_Object *item = SCHEME_CAR(requested_access);
3861 if (scheme_eq(item, M_write) || scheme_eq(item, M_read)
3862 || scheme_eq(item, M_execute) || scheme_eq(item, M_delete))
3863 {
3864 raise_vim_exn(_("not allowed in the Vim sandbox"));
3865 }
3866 requested_access = SCHEME_CDR(requested_access);
3867 }
3868 }
3869 return scheme_void;
3870}
3871
3872 static Scheme_Object *
Bram Moolenaar64404472010-06-26 06:24:45 +02003873sandbox_network_guard(int argc UNUSED, Scheme_Object **argv UNUSED)
Bram Moolenaar555b2802005-05-19 21:08:39 +00003874{
3875 return scheme_void;
3876}
3877#endif
Bram Moolenaar76b92b22006-03-24 22:46:53 +00003878
3879#endif