blob: fa03359f01f8d85d4427e2a4ed95dd4e861b4324 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004 *
5 * Ruby interface by Shugo Maeda
6 * with improvements by SegPhault (Ryan Paul)
Bram Moolenaarf9b5ef82010-09-29 13:02:53 +02007 * with improvements by Jon Maken
Bram Moolenaar071d4272004-06-13 20:20:40 +00008 *
9 * Do ":help uganda" in Vim to read copying and usage conditions.
10 * Do ":help credits" in Vim to see a list of people who contributed.
11 * See README.txt for an overview of the Vim source code.
12 */
13
Bram Moolenaar2d73ff42010-10-27 17:40:59 +020014#ifdef HAVE_CONFIG_H
15# include "auto/config.h"
16#endif
Bram Moolenaar3ca71f12010-10-27 16:49:47 +020017
Bram Moolenaare2793352011-01-17 19:53:27 +010018#include <stdio.h>
19#include <string.h>
20
Bram Moolenaar071d4272004-06-13 20:20:40 +000021#ifdef _WIN32
22# if !defined(DYNAMIC_RUBY_VER) || (DYNAMIC_RUBY_VER < 18)
23# define NT
24# endif
25# ifndef DYNAMIC_RUBY
26# define IMPORT /* For static dll usage __declspec(dllimport) */
27# define RUBYEXTERN __declspec(dllimport)
28# endif
29#endif
30#ifndef RUBYEXTERN
31# define RUBYEXTERN extern
32#endif
33
Bram Moolenaarf9b5ef82010-09-29 13:02:53 +020034#ifdef DYNAMIC_RUBY
Bram Moolenaar071d4272004-06-13 20:20:40 +000035/*
36 * This is tricky. In ruby.h there is (inline) function rb_class_of()
37 * definition. This function use these variables. But we want function to
38 * use dll_* variables.
39 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000040# define rb_cFalseClass (*dll_rb_cFalseClass)
41# define rb_cFixnum (*dll_rb_cFixnum)
Bram Moolenaardb3fbe52013-03-07 15:16:21 +010042# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20
43# define rb_cFloat (*dll_rb_cFloat)
44# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000045# define rb_cNilClass (*dll_rb_cNilClass)
46# define rb_cSymbol (*dll_rb_cSymbol)
47# define rb_cTrueClass (*dll_rb_cTrueClass)
48# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18
49/*
Bram Moolenaar42d57f02010-03-10 12:47:00 +010050 * On ver 1.8, all Ruby functions are exported with "__declspec(dllimport)"
51 * in ruby.h. But it causes trouble for these variables, because it is
Bram Moolenaar071d4272004-06-13 20:20:40 +000052 * defined in this file. When defined this RUBY_EXPORT it modified to
53 * "extern" and be able to avoid this problem.
54 */
55# define RUBY_EXPORT
56# endif
Bram Moolenaarf9b5ef82010-09-29 13:02:53 +020057
Bram Moolenaar2d73ff42010-10-27 17:40:59 +020058#if !(defined(WIN32) || defined(_WIN64))
Bram Moolenaarf9b5ef82010-09-29 13:02:53 +020059# include <dlfcn.h>
Bram Moolenaar3ca71f12010-10-27 16:49:47 +020060# define HINSTANCE void*
61# define RUBY_PROC void*
Bram Moolenaarf9b5ef82010-09-29 13:02:53 +020062# define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
63# define symbol_from_dll dlsym
64# define close_dll dlclose
65#else
Bram Moolenaar3ca71f12010-10-27 16:49:47 +020066# define RUBY_PROC FARPROC
Bram Moolenaarebbcb822010-10-23 14:02:54 +020067# define load_dll vimLoadLib
Bram Moolenaarf9b5ef82010-09-29 13:02:53 +020068# define symbol_from_dll GetProcAddress
69# define close_dll FreeLibrary
Bram Moolenaar071d4272004-06-13 20:20:40 +000070#endif
71
Bram Moolenaarf9b5ef82010-09-29 13:02:53 +020072#endif /* ifdef DYNAMIC_RUBY */
73
Bram Moolenaar0b69c732010-02-17 15:11:50 +010074/* suggested by Ariya Mizutani */
75#if (_MSC_VER == 1200)
76# undef _WIN32_WINNT
77#endif
78
Bram Moolenaar639a2552010-03-17 18:15:23 +010079#if (defined(RUBY_VERSION) && RUBY_VERSION >= 19) \
80 || (defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 19)
81# define RUBY19_OR_LATER 1
82#endif
83
Bram Moolenaar0d27f642015-12-28 22:05:28 +010084#if (defined(RUBY_VERSION) && RUBY_VERSION >= 20) \
85 || (defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20)
86# define RUBY20_OR_LATER 1
87#endif
88
Bram Moolenaar42d57f02010-03-10 12:47:00 +010089#if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 19
90/* Ruby 1.9 defines a number of static functions which use rb_num2long and
91 * rb_int2big */
92# define rb_num2long rb_num2long_stub
93# define rb_int2big rb_int2big_stub
94#endif
95
Bram Moolenaar498af702014-03-28 21:58:21 +010096#if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 19 \
97 && VIM_SIZEOF_INT < VIM_SIZEOF_LONG
98/* Ruby 1.9 defines a number of static functions which use rb_fix2int and
Bram Moolenaara2aa31a2014-02-23 22:52:40 +010099 * rb_num2int if VIM_SIZEOF_INT < VIM_SIZEOF_LONG (64bit) */
Bram Moolenaar0bcdd6e2013-04-14 16:19:03 +0200100# define rb_fix2int rb_fix2int_stub
101# define rb_num2int rb_num2int_stub
102#endif
103
Bram Moolenaar0c7485f2015-01-14 14:04:10 +0100104#if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER == 21
Bram Moolenaara1a118b2014-02-05 22:41:15 +0100105/* Ruby 2.1 adds new GC called RGenGC and RARRAY_PTR uses
106 * rb_gc_writebarrier_unprotect_promoted if USE_RGENGC */
Bram Moolenaar90140742014-11-27 17:44:08 +0100107# define rb_gc_writebarrier_unprotect_promoted rb_gc_writebarrier_unprotect_promoted_stub
108#endif
Bram Moolenaar0c7485f2015-01-14 14:04:10 +0100109#if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 22
110# define rb_gc_writebarrier_unprotect rb_gc_writebarrier_unprotect_stub
Bram Moolenaar0c7485f2015-01-14 14:04:10 +0100111#endif
Bram Moolenaara1a118b2014-02-05 22:41:15 +0100112
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113#include <ruby.h>
Bram Moolenaar639a2552010-03-17 18:15:23 +0100114#ifdef RUBY19_OR_LATER
Bram Moolenaar165641d2010-02-17 16:23:09 +0100115# include <ruby/encoding.h>
116#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117
Bram Moolenaar7a8ef142010-12-24 13:39:35 +0100118#undef off_t /* ruby defines off_t as _int64, Mingw uses long */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119#undef EXTERN
120#undef _
121
122/* T_DATA defined both by Ruby and Mac header files, hack around it... */
Bram Moolenaarcb635362007-05-12 13:02:42 +0000123#if defined(MACOS_X_UNIX) || defined(macintosh)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124# define __OPENTRANSPORT__
125# define __OPENTRANSPORTPROTOCOL__
126# define __OPENTRANSPORTPROVIDERS__
127#endif
128
Bram Moolenaar165641d2010-02-17 16:23:09 +0100129/*
Bram Moolenaar0d27f642015-12-28 22:05:28 +0100130 * The TypedData_XXX macro family can be used since Ruby 1.9.2 but
131 * rb_data_type_t changed in 1.9.3, therefore require at least 2.0.
132 * The old Data_XXX macro family was deprecated on Ruby 2.2.
Bram Moolenaarf2f6d292015-12-28 20:57:10 +0100133 * Use TypedData_XXX if available.
134 */
Bram Moolenaar0d27f642015-12-28 22:05:28 +0100135#if defined(TypedData_Wrap_Struct) && defined(RUBY20_OR_LATER)
Bram Moolenaarf2f6d292015-12-28 20:57:10 +0100136# define USE_TYPEDDATA 1
137#endif
138
139/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200140 * Backward compatibility for Ruby 1.8 and earlier.
Bram Moolenaar165641d2010-02-17 16:23:09 +0100141 * Ruby 1.9 does not provide STR2CSTR, instead StringValuePtr is provided.
142 * Ruby 1.9 does not provide RXXX(s)->len and RXXX(s)->ptr, instead
143 * RXXX_LEN(s) and RXXX_PTR(s) are provided.
144 */
145#ifndef StringValuePtr
146# define StringValuePtr(s) STR2CSTR(s)
147#endif
148#ifndef RARRAY_LEN
149# define RARRAY_LEN(s) RARRAY(s)->len
150#endif
151#ifndef RARRAY_PTR
152# define RARRAY_PTR(s) RARRAY(s)->ptr
153#endif
154#ifndef RSTRING_LEN
155# define RSTRING_LEN(s) RSTRING(s)->len
156#endif
157#ifndef RSTRING_PTR
158# define RSTRING_PTR(s) RSTRING(s)->ptr
159#endif
160
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161#include "vim.h"
162#include "version.h"
163
164#if defined(PROTO) && !defined(FEAT_RUBY)
165/* Define these to be able to generate the function prototypes. */
166# define VALUE int
167# define RUBY_DATA_FUNC int
168#endif
169
170static int ruby_initialized = 0;
Bram Moolenaar99685e62013-05-11 13:56:18 +0200171static void *ruby_stack_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172static VALUE objtbl;
173
174static VALUE mVIM;
175static VALUE cBuffer;
176static VALUE cVimWindow;
177static VALUE eDeletedBufferError;
178static VALUE eDeletedWindowError;
179
180static int ensure_ruby_initialized(void);
181static void error_print(int);
182static void ruby_io_init(void);
183static void ruby_vim_init(void);
184
Bram Moolenaar10f3a792013-05-20 12:52:29 +0200185#if defined(RUBY19_OR_LATER) || defined(RUBY_INIT_STACK)
186# if defined(__ia64) && !defined(ruby_init_stack)
187# define ruby_init_stack(addr) ruby_init_stack((addr), rb_ia64_bsp())
188# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189#endif
190
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200191#if defined(DYNAMIC_RUBY) || defined(PROTO)
192# ifdef PROTO
193# define HINSTANCE int /* for generating prototypes */
194# endif
195
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196/*
197 * Wrapper defines
198 */
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200199# define rb_assoc_new dll_rb_assoc_new
200# define rb_cObject (*dll_rb_cObject)
Bram Moolenaarf2f6d292015-12-28 20:57:10 +0100201# define rb_check_type dll_rb_check_type
202# ifdef USE_TYPEDDATA
203# define rb_check_typeddata dll_rb_check_typeddata
Bram Moolenaar0c7485f2015-01-14 14:04:10 +0100204# endif
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200205# define rb_class_path dll_rb_class_path
Bram Moolenaarf2f6d292015-12-28 20:57:10 +0100206# ifdef USE_TYPEDDATA
207# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 23
208# define rb_data_typed_object_wrap dll_rb_data_typed_object_wrap
209# else
210# define rb_data_typed_object_alloc dll_rb_data_typed_object_alloc
211# endif
212# else
213# define rb_data_object_alloc dll_rb_data_object_alloc
214# endif
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200215# define rb_define_class_under dll_rb_define_class_under
216# define rb_define_const dll_rb_define_const
217# define rb_define_global_function dll_rb_define_global_function
218# define rb_define_method dll_rb_define_method
219# define rb_define_module dll_rb_define_module
220# define rb_define_module_function dll_rb_define_module_function
221# define rb_define_singleton_method dll_rb_define_singleton_method
222# define rb_define_virtual_variable dll_rb_define_virtual_variable
223# define rb_stdout (*dll_rb_stdout)
224# define rb_eArgError (*dll_rb_eArgError)
225# define rb_eIndexError (*dll_rb_eIndexError)
226# define rb_eRuntimeError (*dll_rb_eRuntimeError)
227# define rb_eStandardError (*dll_rb_eStandardError)
228# define rb_eval_string_protect dll_rb_eval_string_protect
229# define rb_global_variable dll_rb_global_variable
230# define rb_hash_aset dll_rb_hash_aset
231# define rb_hash_new dll_rb_hash_new
232# define rb_inspect dll_rb_inspect
233# define rb_int2inum dll_rb_int2inum
Bram Moolenaara2aa31a2014-02-23 22:52:40 +0100234# if VIM_SIZEOF_INT < VIM_SIZEOF_LONG /* 64 bits only */
Bram Moolenaar498af702014-03-28 21:58:21 +0100235# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER <= 18
236# define rb_fix2int dll_rb_fix2int
237# define rb_num2int dll_rb_num2int
238# endif
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200239# define rb_num2uint dll_rb_num2uint
240# endif
241# define rb_lastline_get dll_rb_lastline_get
242# define rb_lastline_set dll_rb_lastline_set
243# define rb_load_protect dll_rb_load_protect
244# ifndef RUBY19_OR_LATER
245# define rb_num2long dll_rb_num2long
246# endif
247# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER <= 19
248# define rb_num2ulong dll_rb_num2ulong
249# endif
250# define rb_obj_alloc dll_rb_obj_alloc
251# define rb_obj_as_string dll_rb_obj_as_string
252# define rb_obj_id dll_rb_obj_id
253# define rb_raise dll_rb_raise
254# define rb_str_cat dll_rb_str_cat
255# define rb_str_concat dll_rb_str_concat
256# define rb_str_new dll_rb_str_new
257# ifdef rb_str_new2
Bram Moolenaar1d2beae2010-05-22 21:56:55 +0200258/* Ruby may #define rb_str_new2 to use rb_str_new_cstr. */
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200259# define need_rb_str_new_cstr 1
Bram Moolenaar3ca71f12010-10-27 16:49:47 +0200260/* Ruby's headers #define rb_str_new_cstr to make use of GCC's
261 * __builtin_constant_p extension. */
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200262# undef rb_str_new_cstr
263# define rb_str_new_cstr dll_rb_str_new_cstr
Bram Moolenaar76a86062013-05-11 17:45:48 +0200264# else
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200265# define rb_str_new2 dll_rb_str_new2
Bram Moolenaar76a86062013-05-11 17:45:48 +0200266# endif
Bram Moolenaar3ca71f12010-10-27 16:49:47 +0200267# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200268# define rb_string_value dll_rb_string_value
269# define rb_string_value_ptr dll_rb_string_value_ptr
270# define rb_float_new dll_rb_float_new
271# define rb_ary_new dll_rb_ary_new
272# define rb_ary_push dll_rb_ary_push
Bram Moolenaar10f3a792013-05-20 12:52:29 +0200273# if defined(RUBY19_OR_LATER) || defined(RUBY_INIT_STACK)
274# ifdef __ia64
275# define rb_ia64_bsp dll_rb_ia64_bsp
276# undef ruby_init_stack
277# define ruby_init_stack(addr) dll_ruby_init_stack((addr), rb_ia64_bsp())
278# else
279# define ruby_init_stack dll_ruby_init_stack
280# endif
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200281# endif
282# else
283# define rb_str2cstr dll_rb_str2cstr
Bram Moolenaar3ca71f12010-10-27 16:49:47 +0200284# endif
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200285# ifdef RUBY19_OR_LATER
286# define rb_errinfo dll_rb_errinfo
287# else
288# define ruby_errinfo (*dll_ruby_errinfo)
289# endif
290# define ruby_init dll_ruby_init
291# define ruby_init_loadpath dll_ruby_init_loadpath
292# ifdef WIN3264
293# define NtInitialize dll_NtInitialize
294# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18
295# define rb_w32_snprintf dll_rb_w32_snprintf
296# endif
297# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200299# ifdef RUBY19_OR_LATER
300# define ruby_script dll_ruby_script
301# define rb_enc_find_index dll_rb_enc_find_index
302# define rb_enc_find dll_rb_enc_find
303# define rb_enc_str_new dll_rb_enc_str_new
304# define rb_sprintf dll_rb_sprintf
305# define rb_require dll_rb_require
Bram Moolenaar9b1067e2015-11-19 19:33:15 +0100306# define ruby_options dll_ruby_options
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200307# endif
Bram Moolenaar165641d2010-02-17 16:23:09 +0100308
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309/*
310 * Pointers for dynamic link
311 */
312static VALUE (*dll_rb_assoc_new) (VALUE, VALUE);
Bram Moolenaarba52cde2010-06-25 04:29:11 +0200313VALUE *dll_rb_cFalseClass;
314VALUE *dll_rb_cFixnum;
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200315# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20
Bram Moolenaardb3fbe52013-03-07 15:16:21 +0100316VALUE *dll_rb_cFloat;
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200317# endif
Bram Moolenaarba52cde2010-06-25 04:29:11 +0200318VALUE *dll_rb_cNilClass;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319static VALUE *dll_rb_cObject;
Bram Moolenaarba52cde2010-06-25 04:29:11 +0200320VALUE *dll_rb_cSymbol;
321VALUE *dll_rb_cTrueClass;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322static void (*dll_rb_check_type) (VALUE,int);
Bram Moolenaarf2f6d292015-12-28 20:57:10 +0100323# ifdef USE_TYPEDDATA
324static void *(*dll_rb_check_typeddata) (VALUE,const rb_data_type_t *);
325# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326static VALUE (*dll_rb_class_path) (VALUE);
Bram Moolenaarf2f6d292015-12-28 20:57:10 +0100327# ifdef USE_TYPEDDATA
328# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 23
329static VALUE (*dll_rb_data_typed_object_wrap) (VALUE, void*, const rb_data_type_t *);
330# else
331static VALUE (*dll_rb_data_typed_object_alloc) (VALUE, void*, const rb_data_type_t *);
332# endif
333# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334static VALUE (*dll_rb_data_object_alloc) (VALUE, void*, RUBY_DATA_FUNC, RUBY_DATA_FUNC);
Bram Moolenaarf2f6d292015-12-28 20:57:10 +0100335# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336static VALUE (*dll_rb_define_class_under) (VALUE, const char*, VALUE);
337static void (*dll_rb_define_const) (VALUE,const char*,VALUE);
338static void (*dll_rb_define_global_function) (const char*,VALUE(*)(),int);
339static void (*dll_rb_define_method) (VALUE,const char*,VALUE(*)(),int);
340static VALUE (*dll_rb_define_module) (const char*);
341static void (*dll_rb_define_module_function) (VALUE,const char*,VALUE(*)(),int);
342static void (*dll_rb_define_singleton_method) (VALUE,const char*,VALUE(*)(),int);
343static void (*dll_rb_define_virtual_variable) (const char*,VALUE(*)(),void(*)());
344static VALUE *dll_rb_stdout;
345static VALUE *dll_rb_eArgError;
346static VALUE *dll_rb_eIndexError;
347static VALUE *dll_rb_eRuntimeError;
348static VALUE *dll_rb_eStandardError;
349static VALUE (*dll_rb_eval_string_protect) (const char*, int*);
350static void (*dll_rb_global_variable) (VALUE*);
351static VALUE (*dll_rb_hash_aset) (VALUE, VALUE, VALUE);
352static VALUE (*dll_rb_hash_new) (void);
353static VALUE (*dll_rb_inspect) (VALUE);
354static VALUE (*dll_rb_int2inum) (long);
Bram Moolenaara2aa31a2014-02-23 22:52:40 +0100355# if VIM_SIZEOF_INT < VIM_SIZEOF_LONG /* 64 bits only */
Bram Moolenaar2623b4f2012-09-18 16:36:32 +0200356static long (*dll_rb_fix2int) (VALUE);
357static long (*dll_rb_num2int) (VALUE);
358static unsigned long (*dll_rb_num2uint) (VALUE);
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200359# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360static VALUE (*dll_rb_lastline_get) (void);
361static void (*dll_rb_lastline_set) (VALUE);
362static void (*dll_rb_load_protect) (VALUE, int, int*);
363static long (*dll_rb_num2long) (VALUE);
364static unsigned long (*dll_rb_num2ulong) (VALUE);
365static VALUE (*dll_rb_obj_alloc) (VALUE);
366static VALUE (*dll_rb_obj_as_string) (VALUE);
367static VALUE (*dll_rb_obj_id) (VALUE);
368static void (*dll_rb_raise) (VALUE, const char*, ...);
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200369# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18
Bram Moolenaarf9b5ef82010-09-29 13:02:53 +0200370static VALUE (*dll_rb_string_value) (volatile VALUE*);
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200371# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372static char *(*dll_rb_str2cstr) (VALUE,int*);
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200373# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374static VALUE (*dll_rb_str_cat) (VALUE, const char*, long);
375static VALUE (*dll_rb_str_concat) (VALUE, VALUE);
376static VALUE (*dll_rb_str_new) (const char*, long);
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200377# ifdef need_rb_str_new_cstr
Bram Moolenaar1d2beae2010-05-22 21:56:55 +0200378/* Ruby may #define rb_str_new2 to use rb_str_new_cstr. */
379static VALUE (*dll_rb_str_new_cstr) (const char*);
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200380# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381static VALUE (*dll_rb_str_new2) (const char*);
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200382# endif
383# ifdef RUBY19_OR_LATER
Bram Moolenaar165641d2010-02-17 16:23:09 +0100384static VALUE (*dll_rb_errinfo) (void);
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200385# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386static VALUE *dll_ruby_errinfo;
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200387# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388static void (*dll_ruby_init) (void);
389static void (*dll_ruby_init_loadpath) (void);
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200390# ifdef WIN3264
Bram Moolenaar0b69c732010-02-17 15:11:50 +0100391static void (*dll_NtInitialize) (int*, char***);
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200392# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18
Bram Moolenaar3ca71f12010-10-27 16:49:47 +0200393static int (*dll_rb_w32_snprintf)(char*, size_t, const char*, ...);
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200394# endif
Bram Moolenaar3ca71f12010-10-27 16:49:47 +0200395# endif
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200396# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18
Bram Moolenaar42d57f02010-03-10 12:47:00 +0100397static char * (*dll_rb_string_value_ptr) (volatile VALUE*);
398static VALUE (*dll_rb_float_new) (double);
399static VALUE (*dll_rb_ary_new) (void);
400static VALUE (*dll_rb_ary_push) (VALUE, VALUE);
Bram Moolenaar10f3a792013-05-20 12:52:29 +0200401# if defined(RUBY19_OR_LATER) || defined(RUBY_INIT_STACK)
402# ifdef __ia64
Bram Moolenaar76a86062013-05-11 17:45:48 +0200403static void * (*dll_rb_ia64_bsp) (void);
404static void (*dll_ruby_init_stack)(VALUE*, void*);
Bram Moolenaar10f3a792013-05-20 12:52:29 +0200405# else
Bram Moolenaar76a86062013-05-11 17:45:48 +0200406static void (*dll_ruby_init_stack)(VALUE*);
Bram Moolenaar10f3a792013-05-20 12:52:29 +0200407# endif
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200408# endif
Bram Moolenaar76a86062013-05-11 17:45:48 +0200409# endif
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200410# ifdef RUBY19_OR_LATER
Bram Moolenaar42d57f02010-03-10 12:47:00 +0100411static VALUE (*dll_rb_int2big)(SIGNED_VALUE);
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200412# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200414# ifdef RUBY19_OR_LATER
Bram Moolenaar165641d2010-02-17 16:23:09 +0100415static void (*dll_ruby_script) (const char*);
416static int (*dll_rb_enc_find_index) (const char*);
417static rb_encoding* (*dll_rb_enc_find) (const char*);
418static VALUE (*dll_rb_enc_str_new) (const char*, long, rb_encoding*);
419static VALUE (*dll_rb_sprintf) (const char*, ...);
Bram Moolenaar7a8ef142010-12-24 13:39:35 +0100420static VALUE (*dll_rb_require) (const char*);
Bram Moolenaar9b1067e2015-11-19 19:33:15 +0100421static void* (*ruby_options)(int, char**);
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200422# endif
Bram Moolenaar165641d2010-02-17 16:23:09 +0100423
Bram Moolenaara1a118b2014-02-05 22:41:15 +0100424# if defined(USE_RGENGC) && USE_RGENGC
Bram Moolenaar0c7485f2015-01-14 14:04:10 +0100425# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER == 21
Bram Moolenaara1a118b2014-02-05 22:41:15 +0100426static void (*dll_rb_gc_writebarrier_unprotect_promoted)(VALUE);
Bram Moolenaar0c7485f2015-01-14 14:04:10 +0100427# else
428static void (*dll_rb_gc_writebarrier_unprotect)(VALUE obj);
429# endif
Bram Moolenaara1a118b2014-02-05 22:41:15 +0100430# endif
431
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200432# if defined(RUBY19_OR_LATER) && !defined(PROTO)
Bram Moolenaarbbc1a592015-04-21 15:25:31 +0200433# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 22
434long rb_num2long_stub(VALUE x)
435# else
Bram Moolenaarff8cf2b2012-11-24 13:39:00 +0100436SIGNED_VALUE rb_num2long_stub(VALUE x)
Bram Moolenaarbbc1a592015-04-21 15:25:31 +0200437# endif
Bram Moolenaar42d57f02010-03-10 12:47:00 +0100438{
439 return dll_rb_num2long(x);
440}
Bram Moolenaarff8cf2b2012-11-24 13:39:00 +0100441VALUE rb_int2big_stub(SIGNED_VALUE x)
Bram Moolenaar42d57f02010-03-10 12:47:00 +0100442{
443 return dll_rb_int2big(x);
444}
Bram Moolenaar498af702014-03-28 21:58:21 +0100445# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 19 \
446 && VIM_SIZEOF_INT < VIM_SIZEOF_LONG
Bram Moolenaar0bcdd6e2013-04-14 16:19:03 +0200447long rb_fix2int_stub(VALUE x)
448{
449 return dll_rb_fix2int(x);
450}
451long rb_num2int_stub(VALUE x)
452{
453 return dll_rb_num2int(x);
454}
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200455# endif
456# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20
Bram Moolenaar886ed692013-02-26 13:41:35 +0100457VALUE
458rb_float_new_in_heap(double d)
459{
460 return dll_rb_float_new(d);
461}
Bram Moolenaarbbc1a592015-04-21 15:25:31 +0200462# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 22
463unsigned long rb_num2ulong(VALUE x)
464# else
Bram Moolenaardb3fbe52013-03-07 15:16:21 +0100465VALUE rb_num2ulong(VALUE x)
Bram Moolenaarbbc1a592015-04-21 15:25:31 +0200466# endif
Bram Moolenaar886ed692013-02-26 13:41:35 +0100467{
468 return (long)RSHIFT((SIGNED_VALUE)(x),1);
469}
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200470# endif
471# endif
Bram Moolenaar42d57f02010-03-10 12:47:00 +0100472
Bram Moolenaar3e9a1612014-11-12 16:05:04 +0100473 /* Do not generate a prototype here, VALUE isn't always defined. */
474# if defined(USE_RGENGC) && USE_RGENGC && !defined(PROTO)
Bram Moolenaar0c7485f2015-01-14 14:04:10 +0100475# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER == 21
Bram Moolenaara1a118b2014-02-05 22:41:15 +0100476void rb_gc_writebarrier_unprotect_promoted_stub(VALUE obj)
477{
Bram Moolenaar90140742014-11-27 17:44:08 +0100478 dll_rb_gc_writebarrier_unprotect_promoted(obj);
Bram Moolenaara1a118b2014-02-05 22:41:15 +0100479}
Bram Moolenaar0c7485f2015-01-14 14:04:10 +0100480# else
481void rb_gc_writebarrier_unprotect_stub(VALUE obj)
482{
483 dll_rb_gc_writebarrier_unprotect(obj);
484}
485# endif
486# endif
487
Bram Moolenaar3ca71f12010-10-27 16:49:47 +0200488static HINSTANCE hinstRuby = NULL; /* Instance of ruby.dll */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489
490/*
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000491 * Table of name to function pointer of ruby.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000492 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493static struct
494{
495 char *name;
496 RUBY_PROC *ptr;
497} ruby_funcname_table[] =
498{
499 {"rb_assoc_new", (RUBY_PROC*)&dll_rb_assoc_new},
500 {"rb_cFalseClass", (RUBY_PROC*)&dll_rb_cFalseClass},
501 {"rb_cFixnum", (RUBY_PROC*)&dll_rb_cFixnum},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200502# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20
Bram Moolenaardb3fbe52013-03-07 15:16:21 +0100503 {"rb_cFloat", (RUBY_PROC*)&dll_rb_cFloat},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200504# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 {"rb_cNilClass", (RUBY_PROC*)&dll_rb_cNilClass},
506 {"rb_cObject", (RUBY_PROC*)&dll_rb_cObject},
507 {"rb_cSymbol", (RUBY_PROC*)&dll_rb_cSymbol},
508 {"rb_cTrueClass", (RUBY_PROC*)&dll_rb_cTrueClass},
509 {"rb_check_type", (RUBY_PROC*)&dll_rb_check_type},
Bram Moolenaarf2f6d292015-12-28 20:57:10 +0100510# ifdef USE_TYPEDDATA
511 {"rb_check_typeddata", (RUBY_PROC*)&dll_rb_check_typeddata},
512# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513 {"rb_class_path", (RUBY_PROC*)&dll_rb_class_path},
Bram Moolenaarf2f6d292015-12-28 20:57:10 +0100514# ifdef USE_TYPEDDATA
515# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 23
516 {"rb_data_typed_object_wrap", (RUBY_PROC*)&dll_rb_data_typed_object_wrap},
517# else
518 {"rb_data_typed_object_alloc", (RUBY_PROC*)&dll_rb_data_typed_object_alloc},
519# endif
520# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 {"rb_data_object_alloc", (RUBY_PROC*)&dll_rb_data_object_alloc},
Bram Moolenaarf2f6d292015-12-28 20:57:10 +0100522# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 {"rb_define_class_under", (RUBY_PROC*)&dll_rb_define_class_under},
524 {"rb_define_const", (RUBY_PROC*)&dll_rb_define_const},
525 {"rb_define_global_function", (RUBY_PROC*)&dll_rb_define_global_function},
526 {"rb_define_method", (RUBY_PROC*)&dll_rb_define_method},
527 {"rb_define_module", (RUBY_PROC*)&dll_rb_define_module},
528 {"rb_define_module_function", (RUBY_PROC*)&dll_rb_define_module_function},
529 {"rb_define_singleton_method", (RUBY_PROC*)&dll_rb_define_singleton_method},
530 {"rb_define_virtual_variable", (RUBY_PROC*)&dll_rb_define_virtual_variable},
531 {"rb_stdout", (RUBY_PROC*)&dll_rb_stdout},
532 {"rb_eArgError", (RUBY_PROC*)&dll_rb_eArgError},
533 {"rb_eIndexError", (RUBY_PROC*)&dll_rb_eIndexError},
534 {"rb_eRuntimeError", (RUBY_PROC*)&dll_rb_eRuntimeError},
535 {"rb_eStandardError", (RUBY_PROC*)&dll_rb_eStandardError},
536 {"rb_eval_string_protect", (RUBY_PROC*)&dll_rb_eval_string_protect},
537 {"rb_global_variable", (RUBY_PROC*)&dll_rb_global_variable},
538 {"rb_hash_aset", (RUBY_PROC*)&dll_rb_hash_aset},
539 {"rb_hash_new", (RUBY_PROC*)&dll_rb_hash_new},
540 {"rb_inspect", (RUBY_PROC*)&dll_rb_inspect},
541 {"rb_int2inum", (RUBY_PROC*)&dll_rb_int2inum},
Bram Moolenaara2aa31a2014-02-23 22:52:40 +0100542# if VIM_SIZEOF_INT < VIM_SIZEOF_LONG /* 64 bits only */
Bram Moolenaar2623b4f2012-09-18 16:36:32 +0200543 {"rb_fix2int", (RUBY_PROC*)&dll_rb_fix2int},
544 {"rb_num2int", (RUBY_PROC*)&dll_rb_num2int},
545 {"rb_num2uint", (RUBY_PROC*)&dll_rb_num2uint},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200546# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547 {"rb_lastline_get", (RUBY_PROC*)&dll_rb_lastline_get},
548 {"rb_lastline_set", (RUBY_PROC*)&dll_rb_lastline_set},
549 {"rb_load_protect", (RUBY_PROC*)&dll_rb_load_protect},
550 {"rb_num2long", (RUBY_PROC*)&dll_rb_num2long},
551 {"rb_num2ulong", (RUBY_PROC*)&dll_rb_num2ulong},
552 {"rb_obj_alloc", (RUBY_PROC*)&dll_rb_obj_alloc},
553 {"rb_obj_as_string", (RUBY_PROC*)&dll_rb_obj_as_string},
554 {"rb_obj_id", (RUBY_PROC*)&dll_rb_obj_id},
555 {"rb_raise", (RUBY_PROC*)&dll_rb_raise},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200556# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18
Bram Moolenaarf9b5ef82010-09-29 13:02:53 +0200557 {"rb_string_value", (RUBY_PROC*)&dll_rb_string_value},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200558# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 {"rb_str2cstr", (RUBY_PROC*)&dll_rb_str2cstr},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200560# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561 {"rb_str_cat", (RUBY_PROC*)&dll_rb_str_cat},
562 {"rb_str_concat", (RUBY_PROC*)&dll_rb_str_concat},
563 {"rb_str_new", (RUBY_PROC*)&dll_rb_str_new},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200564# ifdef need_rb_str_new_cstr
Bram Moolenaar1d2beae2010-05-22 21:56:55 +0200565 {"rb_str_new_cstr", (RUBY_PROC*)&dll_rb_str_new_cstr},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200566# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 {"rb_str_new2", (RUBY_PROC*)&dll_rb_str_new2},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200568# endif
569# ifdef RUBY19_OR_LATER
Bram Moolenaar165641d2010-02-17 16:23:09 +0100570 {"rb_errinfo", (RUBY_PROC*)&dll_rb_errinfo},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200571# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 {"ruby_errinfo", (RUBY_PROC*)&dll_ruby_errinfo},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200573# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574 {"ruby_init", (RUBY_PROC*)&dll_ruby_init},
575 {"ruby_init_loadpath", (RUBY_PROC*)&dll_ruby_init_loadpath},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200576# ifdef WIN3264
Bram Moolenaar42d57f02010-03-10 12:47:00 +0100577 {
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200578# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER < 19
Bram Moolenaar42d57f02010-03-10 12:47:00 +0100579 "NtInitialize",
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200580# else
Bram Moolenaar42d57f02010-03-10 12:47:00 +0100581 "ruby_sysinit",
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200582# endif
Bram Moolenaar42d57f02010-03-10 12:47:00 +0100583 (RUBY_PROC*)&dll_NtInitialize},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200584# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585 {"rb_w32_snprintf", (RUBY_PROC*)&dll_rb_w32_snprintf},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200586# endif
Bram Moolenaar3ca71f12010-10-27 16:49:47 +0200587# endif
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200588# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18
Bram Moolenaar42d57f02010-03-10 12:47:00 +0100589 {"rb_string_value_ptr", (RUBY_PROC*)&dll_rb_string_value_ptr},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200590# if DYNAMIC_RUBY_VER <= 19
Bram Moolenaar42d57f02010-03-10 12:47:00 +0100591 {"rb_float_new", (RUBY_PROC*)&dll_rb_float_new},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200592# else
Bram Moolenaar886ed692013-02-26 13:41:35 +0100593 {"rb_float_new_in_heap", (RUBY_PROC*)&dll_rb_float_new},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200594# endif
Bram Moolenaar42d57f02010-03-10 12:47:00 +0100595 {"rb_ary_new", (RUBY_PROC*)&dll_rb_ary_new},
596 {"rb_ary_push", (RUBY_PROC*)&dll_rb_ary_push},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200597# endif
598# ifdef RUBY19_OR_LATER
Bram Moolenaar42d57f02010-03-10 12:47:00 +0100599 {"rb_int2big", (RUBY_PROC*)&dll_rb_int2big},
Bram Moolenaar165641d2010-02-17 16:23:09 +0100600 {"ruby_script", (RUBY_PROC*)&dll_ruby_script},
601 {"rb_enc_find_index", (RUBY_PROC*)&dll_rb_enc_find_index},
602 {"rb_enc_find", (RUBY_PROC*)&dll_rb_enc_find},
603 {"rb_enc_str_new", (RUBY_PROC*)&dll_rb_enc_str_new},
604 {"rb_sprintf", (RUBY_PROC*)&dll_rb_sprintf},
Bram Moolenaar7a8ef142010-12-24 13:39:35 +0100605 {"rb_require", (RUBY_PROC*)&dll_rb_require},
Bram Moolenaar9b1067e2015-11-19 19:33:15 +0100606 {"ruby_options", (RUBY_PROC*)&dll_ruby_options},
Bram Moolenaar3b9abb62013-05-12 14:11:17 +0200607# endif
Bram Moolenaar10f3a792013-05-20 12:52:29 +0200608# if defined(RUBY19_OR_LATER) || defined(RUBY_INIT_STACK)
609# ifdef __ia64
610 {"rb_ia64_bsp", (RUBY_PROC*)&dll_rb_ia64_bsp},
611# endif
612 {"ruby_init_stack", (RUBY_PROC*)&dll_ruby_init_stack},
613# endif
Bram Moolenaara1a118b2014-02-05 22:41:15 +0100614# if defined(USE_RGENGC) && USE_RGENGC
Bram Moolenaar0c7485f2015-01-14 14:04:10 +0100615# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER == 21
Bram Moolenaara1a118b2014-02-05 22:41:15 +0100616 {"rb_gc_writebarrier_unprotect_promoted", (RUBY_PROC*)&dll_rb_gc_writebarrier_unprotect_promoted},
Bram Moolenaar0c7485f2015-01-14 14:04:10 +0100617# else
618 {"rb_gc_writebarrier_unprotect", (RUBY_PROC*)&dll_rb_gc_writebarrier_unprotect},
619# endif
Bram Moolenaara1a118b2014-02-05 22:41:15 +0100620# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621 {"", NULL},
622};
623
624/*
625 * Free ruby.dll
626 */
627 static void
628end_dynamic_ruby()
629{
630 if (hinstRuby)
631 {
Bram Moolenaarf9b5ef82010-09-29 13:02:53 +0200632 close_dll(hinstRuby);
Bram Moolenaar3ca71f12010-10-27 16:49:47 +0200633 hinstRuby = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 }
635}
636
637/*
638 * Load library and get all pointers.
639 * Parameter 'libname' provides name of DLL.
640 * Return OK or FAIL.
641 */
642 static int
643ruby_runtime_link_init(char *libname, int verbose)
644{
645 int i;
646
647 if (hinstRuby)
648 return OK;
Bram Moolenaarf9b5ef82010-09-29 13:02:53 +0200649 hinstRuby = load_dll(libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650 if (!hinstRuby)
651 {
652 if (verbose)
653 EMSG2(_(e_loadlib), libname);
654 return FAIL;
655 }
656
657 for (i = 0; ruby_funcname_table[i].ptr; ++i)
658 {
Bram Moolenaarf9b5ef82010-09-29 13:02:53 +0200659 if (!(*ruby_funcname_table[i].ptr = symbol_from_dll(hinstRuby,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660 ruby_funcname_table[i].name)))
661 {
Bram Moolenaarf9b5ef82010-09-29 13:02:53 +0200662 close_dll(hinstRuby);
Bram Moolenaar3ca71f12010-10-27 16:49:47 +0200663 hinstRuby = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 if (verbose)
665 EMSG2(_(e_loadfunc), ruby_funcname_table[i].name);
666 return FAIL;
667 }
668 }
669 return OK;
670}
671
672/*
673 * If ruby is enabled (there is installed ruby on Windows system) return TRUE,
674 * else FALSE.
675 */
676 int
677ruby_enabled(verbose)
678 int verbose;
679{
Bram Moolenaard94464e2015-11-02 15:28:18 +0100680#ifdef WIN3264
681 char *dll = DYNAMIC_RUBY_DLL;
682#else
683 char *dll = *p_rubydll ? (char *)p_rubydll : DYNAMIC_RUBY_DLL;
684#endif
685 return ruby_runtime_link_init(dll, verbose) == OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686}
687#endif /* defined(DYNAMIC_RUBY) || defined(PROTO) */
688
689 void
690ruby_end()
691{
692#ifdef DYNAMIC_RUBY
693 end_dynamic_ruby();
694#endif
695}
696
697void ex_ruby(exarg_T *eap)
698{
699 int state;
700 char *script = NULL;
701
Bram Moolenaar35a2e192006-03-13 22:07:11 +0000702 script = (char *)script_get(eap, eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000703 if (!eap->skip && ensure_ruby_initialized())
704 {
705 if (script == NULL)
706 rb_eval_string_protect((char *)eap->arg, &state);
707 else
708 rb_eval_string_protect(script, &state);
709 if (state)
710 error_print(state);
711 }
712 vim_free(script);
713}
714
Bram Moolenaar165641d2010-02-17 16:23:09 +0100715/*
716 * In Ruby 1.9 or later, ruby String object has encoding.
717 * conversion buffer string of vim to ruby String object using
718 * VIM encoding option.
719 */
720 static VALUE
721vim_str2rb_enc_str(const char *s)
722{
Bram Moolenaar639a2552010-03-17 18:15:23 +0100723#ifdef RUBY19_OR_LATER
Bram Moolenaar165641d2010-02-17 16:23:09 +0100724 int isnum;
725 long lval;
726 char_u *sval;
727 rb_encoding *enc;
728
729 isnum = get_option_value((char_u *)"enc", &lval, &sval, 0);
730 if (isnum == 0)
731 {
732 enc = rb_enc_find((char *)sval);
733 vim_free(sval);
734 if (enc) {
735 return rb_enc_str_new(s, strlen(s), enc);
736 }
737 }
738#endif
739 return rb_str_new2(s);
740}
741
742 static VALUE
743eval_enc_string_protect(const char *str, int *state)
744{
Bram Moolenaar639a2552010-03-17 18:15:23 +0100745#ifdef RUBY19_OR_LATER
Bram Moolenaar165641d2010-02-17 16:23:09 +0100746 int isnum;
747 long lval;
748 char_u *sval;
749 rb_encoding *enc;
750 VALUE v;
751
752 isnum = get_option_value((char_u *)"enc", &lval, &sval, 0);
753 if (isnum == 0)
754 {
755 enc = rb_enc_find((char *)sval);
756 vim_free(sval);
757 if (enc)
758 {
759 v = rb_sprintf("#-*- coding:%s -*-\n%s", rb_enc_name(enc), str);
760 return rb_eval_string_protect(StringValuePtr(v), state);
761 }
762 }
763#endif
764 return rb_eval_string_protect(str, state);
765}
766
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767void ex_rubydo(exarg_T *eap)
768{
769 int state;
770 linenr_T i;
771
772 if (ensure_ruby_initialized())
773 {
774 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
775 return;
776 for (i = eap->line1; i <= eap->line2; i++) {
Bram Moolenaare980d8a2010-12-08 13:11:21 +0100777 VALUE line;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778
Bram Moolenaare980d8a2010-12-08 13:11:21 +0100779 line = vim_str2rb_enc_str((char *)ml_get(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 rb_lastline_set(line);
Bram Moolenaar165641d2010-02-17 16:23:09 +0100781 eval_enc_string_protect((char *) eap->arg, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 if (state) {
783 error_print(state);
784 break;
785 }
786 line = rb_lastline_get();
787 if (!NIL_P(line)) {
788 if (TYPE(line) != T_STRING) {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000789 EMSG(_("E265: $_ must be an instance of String"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790 return;
791 }
Bram Moolenaar165641d2010-02-17 16:23:09 +0100792 ml_replace(i, (char_u *) StringValuePtr(line), 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793 changed();
794#ifdef SYNTAX_HL
795 syn_changed(i); /* recompute syntax hl. for this line */
796#endif
797 }
798 }
799 check_cursor();
800 update_curbuf(NOT_VALID);
801 }
802}
803
804void ex_rubyfile(exarg_T *eap)
805{
806 int state;
807
808 if (ensure_ruby_initialized())
809 {
810 rb_load_protect(rb_str_new2((char *) eap->arg), 0, &state);
811 if (state) error_print(state);
812 }
813}
814
815void ruby_buffer_free(buf_T *buf)
816{
Bram Moolenaare344bea2005-09-01 20:46:49 +0000817 if (buf->b_ruby_ref)
818 {
819 rb_hash_aset(objtbl, rb_obj_id((VALUE) buf->b_ruby_ref), Qnil);
820 RDATA(buf->b_ruby_ref)->data = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 }
822}
823
824void ruby_window_free(win_T *win)
825{
Bram Moolenaare344bea2005-09-01 20:46:49 +0000826 if (win->w_ruby_ref)
827 {
828 rb_hash_aset(objtbl, rb_obj_id((VALUE) win->w_ruby_ref), Qnil);
829 RDATA(win->w_ruby_ref)->data = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 }
831}
832
833static int ensure_ruby_initialized(void)
834{
835 if (!ruby_initialized)
836 {
837#ifdef DYNAMIC_RUBY
838 if (ruby_enabled(TRUE))
839 {
840#endif
Bram Moolenaar0b69c732010-02-17 15:11:50 +0100841#ifdef _WIN32
842 /* suggested by Ariya Mizutani */
843 int argc = 1;
844 char *argv[] = {"gvim.exe"};
Bram Moolenaar90140742014-11-27 17:44:08 +0100845 char **argvp = argv;
846 NtInitialize(&argc, &argvp);
Bram Moolenaar0b69c732010-02-17 15:11:50 +0100847#endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +0200848 {
Bram Moolenaar10f3a792013-05-20 12:52:29 +0200849#if defined(RUBY19_OR_LATER) || defined(RUBY_INIT_STACK)
Bram Moolenaar99685e62013-05-11 13:56:18 +0200850 ruby_init_stack(ruby_stack_start);
Bram Moolenaar165641d2010-02-17 16:23:09 +0100851#endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +0200852 ruby_init();
853 }
Bram Moolenaar639a2552010-03-17 18:15:23 +0100854#ifdef RUBY19_OR_LATER
Bram Moolenaar7a8ef142010-12-24 13:39:35 +0100855 {
856 int dummy_argc = 2;
857 char *dummy_argv[] = {"vim-ruby", "-e0"};
Bram Moolenaar9b1067e2015-11-19 19:33:15 +0100858 ruby_options(dummy_argc, dummy_argv);
Bram Moolenaar7a8ef142010-12-24 13:39:35 +0100859 }
Bram Moolenaar165641d2010-02-17 16:23:09 +0100860 ruby_script("vim-ruby");
Bram Moolenaar7a8ef142010-12-24 13:39:35 +0100861#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862 ruby_init_loadpath();
Bram Moolenaar165641d2010-02-17 16:23:09 +0100863#endif
Bram Moolenaar7a8ef142010-12-24 13:39:35 +0100864 ruby_io_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 ruby_vim_init();
866 ruby_initialized = 1;
867#ifdef DYNAMIC_RUBY
868 }
869 else
870 {
871 EMSG(_("E266: Sorry, this command is disabled, the Ruby library could not be loaded."));
872 return 0;
873 }
874#endif
875 }
876 return ruby_initialized;
877}
878
879static void error_print(int state)
880{
881#ifndef DYNAMIC_RUBY
Bram Moolenaar42d57f02010-03-10 12:47:00 +0100882#if !(defined(RUBY_VERSION) && RUBY_VERSION >= 19) \
883 && !(defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 19)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 RUBYEXTERN VALUE ruby_errinfo;
885#endif
Bram Moolenaar165641d2010-02-17 16:23:09 +0100886#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887 VALUE eclass;
888 VALUE einfo;
889 char buff[BUFSIZ];
890
891#define TAG_RETURN 0x1
892#define TAG_BREAK 0x2
893#define TAG_NEXT 0x3
894#define TAG_RETRY 0x4
895#define TAG_REDO 0x5
896#define TAG_RAISE 0x6
897#define TAG_THROW 0x7
898#define TAG_FATAL 0x8
899#define TAG_MASK 0xf
900
901 switch (state) {
902 case TAG_RETURN:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000903 EMSG(_("E267: unexpected return"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 break;
905 case TAG_NEXT:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000906 EMSG(_("E268: unexpected next"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 break;
908 case TAG_BREAK:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000909 EMSG(_("E269: unexpected break"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 break;
911 case TAG_REDO:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000912 EMSG(_("E270: unexpected redo"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 break;
914 case TAG_RETRY:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000915 EMSG(_("E271: retry outside of rescue clause"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 break;
917 case TAG_RAISE:
918 case TAG_FATAL:
Bram Moolenaar639a2552010-03-17 18:15:23 +0100919#ifdef RUBY19_OR_LATER
Bram Moolenaar165641d2010-02-17 16:23:09 +0100920 eclass = CLASS_OF(rb_errinfo());
921 einfo = rb_obj_as_string(rb_errinfo());
922#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923 eclass = CLASS_OF(ruby_errinfo);
924 einfo = rb_obj_as_string(ruby_errinfo);
Bram Moolenaar165641d2010-02-17 16:23:09 +0100925#endif
926 if (eclass == rb_eRuntimeError && RSTRING_LEN(einfo) == 0) {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000927 EMSG(_("E272: unhandled exception"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928 }
929 else {
930 VALUE epath;
931 char *p;
932
933 epath = rb_class_path(eclass);
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000934 vim_snprintf(buff, BUFSIZ, "%s: %s",
Bram Moolenaar165641d2010-02-17 16:23:09 +0100935 RSTRING_PTR(epath), RSTRING_PTR(einfo));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936 p = strchr(buff, '\n');
937 if (p) *p = '\0';
938 EMSG(buff);
939 }
940 break;
941 default:
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000942 vim_snprintf(buff, BUFSIZ, _("E273: unknown longjmp status %d"), state);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 EMSG(buff);
944 break;
945 }
946}
947
Bram Moolenaarcd8b20a2009-05-22 16:20:57 +0000948static VALUE vim_message(VALUE self UNUSED, VALUE str)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949{
950 char *buff, *p;
951
952 str = rb_obj_as_string(str);
Bram Moolenaar3f5f7952011-08-04 19:34:59 +0200953 if (RSTRING_LEN(str) > 0)
954 {
955 /* Only do this when the string isn't empty, alloc(0) causes trouble. */
956 buff = ALLOCA_N(char, RSTRING_LEN(str));
957 strcpy(buff, RSTRING_PTR(str));
958 p = strchr(buff, '\n');
959 if (p) *p = '\0';
960 MSG(buff);
961 }
962 else
963 {
964 MSG("");
965 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 return Qnil;
967}
968
Bram Moolenaarcd8b20a2009-05-22 16:20:57 +0000969static VALUE vim_set_option(VALUE self UNUSED, VALUE str)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970{
Bram Moolenaar165641d2010-02-17 16:23:09 +0100971 do_set((char_u *)StringValuePtr(str), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972 update_screen(NOT_VALID);
973 return Qnil;
974}
975
Bram Moolenaarcd8b20a2009-05-22 16:20:57 +0000976static VALUE vim_command(VALUE self UNUSED, VALUE str)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977{
Bram Moolenaar165641d2010-02-17 16:23:09 +0100978 do_cmdline_cmd((char_u *)StringValuePtr(str));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979 return Qnil;
980}
981
Bram Moolenaar3fac56e2010-02-24 15:48:04 +0100982#ifdef FEAT_EVAL
983static VALUE vim_to_ruby(typval_T *tv)
984{
985 VALUE result = Qnil;
986
987 if (tv->v_type == VAR_STRING)
988 {
Bram Moolenaar94127e42010-03-19 23:08:48 +0100989 result = rb_str_new2(tv->vval.v_string == NULL
990 ? "" : (char *)(tv->vval.v_string));
Bram Moolenaar3fac56e2010-02-24 15:48:04 +0100991 }
992 else if (tv->v_type == VAR_NUMBER)
993 {
Bram Moolenaar639a2552010-03-17 18:15:23 +0100994 result = INT2NUM(tv->vval.v_number);
Bram Moolenaar3fac56e2010-02-24 15:48:04 +0100995 }
996# ifdef FEAT_FLOAT
997 else if (tv->v_type == VAR_FLOAT)
998 {
Bram Moolenaar639a2552010-03-17 18:15:23 +0100999 result = rb_float_new(tv->vval.v_float);
Bram Moolenaar3fac56e2010-02-24 15:48:04 +01001000 }
1001# endif
1002 else if (tv->v_type == VAR_LIST)
1003 {
Bram Moolenaar639a2552010-03-17 18:15:23 +01001004 list_T *list = tv->vval.v_list;
1005 listitem_T *curr;
Bram Moolenaar3fac56e2010-02-24 15:48:04 +01001006
Bram Moolenaar639a2552010-03-17 18:15:23 +01001007 result = rb_ary_new();
Bram Moolenaar3fac56e2010-02-24 15:48:04 +01001008
Bram Moolenaar639a2552010-03-17 18:15:23 +01001009 if (list != NULL)
1010 {
1011 for (curr = list->lv_first; curr != NULL; curr = curr->li_next)
1012 {
1013 rb_ary_push(result, vim_to_ruby(&curr->li_tv));
1014 }
1015 }
Bram Moolenaar3fac56e2010-02-24 15:48:04 +01001016 }
1017 else if (tv->v_type == VAR_DICT)
1018 {
Bram Moolenaar639a2552010-03-17 18:15:23 +01001019 result = rb_hash_new();
Bram Moolenaar3fac56e2010-02-24 15:48:04 +01001020
Bram Moolenaar639a2552010-03-17 18:15:23 +01001021 if (tv->vval.v_dict != NULL)
1022 {
1023 hashtab_T *ht = &tv->vval.v_dict->dv_hashtab;
1024 long_u todo = ht->ht_used;
1025 hashitem_T *hi;
1026 dictitem_T *di;
Bram Moolenaar3fac56e2010-02-24 15:48:04 +01001027
Bram Moolenaar639a2552010-03-17 18:15:23 +01001028 for (hi = ht->ht_array; todo > 0; ++hi)
1029 {
1030 if (!HASHITEM_EMPTY(hi))
1031 {
1032 --todo;
Bram Moolenaar3fac56e2010-02-24 15:48:04 +01001033
Bram Moolenaar639a2552010-03-17 18:15:23 +01001034 di = dict_lookup(hi);
1035 rb_hash_aset(result, rb_str_new2((char *)hi->hi_key),
Bram Moolenaar3fac56e2010-02-24 15:48:04 +01001036 vim_to_ruby(&di->di_tv));
Bram Moolenaar639a2552010-03-17 18:15:23 +01001037 }
1038 }
1039 }
Bram Moolenaar3fac56e2010-02-24 15:48:04 +01001040 } /* else return Qnil; */
1041
1042 return result;
1043}
1044#endif
1045
Bram Moolenaarcd8b20a2009-05-22 16:20:57 +00001046static VALUE vim_evaluate(VALUE self UNUSED, VALUE str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047{
1048#ifdef FEAT_EVAL
Bram Moolenaar3fac56e2010-02-24 15:48:04 +01001049 typval_T *tv;
1050 VALUE result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051
Bram Moolenaar3fac56e2010-02-24 15:48:04 +01001052 tv = eval_expr((char_u *)StringValuePtr(str), NULL);
1053 if (tv == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054 {
Bram Moolenaar639a2552010-03-17 18:15:23 +01001055 return Qnil;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 }
Bram Moolenaar3fac56e2010-02-24 15:48:04 +01001057 result = vim_to_ruby(tv);
1058
1059 free_tv(tv);
1060
1061 return result;
1062#else
1063 return Qnil;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065}
1066
Bram Moolenaarf2f6d292015-12-28 20:57:10 +01001067#ifdef USE_TYPEDDATA
1068static size_t buffer_dsize(const void *buf);
1069
1070static const rb_data_type_t buffer_type = {
1071 "vim_buffer",
1072 {0, 0, buffer_dsize, {0, 0}},
1073 0, 0,
1074# ifdef RUBY_TYPED_FREE_IMMEDIATELY
1075 0,
1076# endif
1077};
1078
1079static size_t buffer_dsize(const void *buf UNUSED)
1080{
1081 return sizeof(buf_T);
1082}
1083#endif
1084
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085static VALUE buffer_new(buf_T *buf)
1086{
Bram Moolenaare344bea2005-09-01 20:46:49 +00001087 if (buf->b_ruby_ref)
1088 {
1089 return (VALUE) buf->b_ruby_ref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090 }
Bram Moolenaare344bea2005-09-01 20:46:49 +00001091 else
1092 {
Bram Moolenaarf2f6d292015-12-28 20:57:10 +01001093#ifdef USE_TYPEDDATA
1094 VALUE obj = TypedData_Wrap_Struct(cBuffer, &buffer_type, buf);
1095#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096 VALUE obj = Data_Wrap_Struct(cBuffer, 0, 0, buf);
Bram Moolenaarf2f6d292015-12-28 20:57:10 +01001097#endif
Bram Moolenaare344bea2005-09-01 20:46:49 +00001098 buf->b_ruby_ref = (void *) obj;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 rb_hash_aset(objtbl, rb_obj_id(obj), obj);
1100 return obj;
1101 }
1102}
1103
1104static buf_T *get_buf(VALUE obj)
1105{
1106 buf_T *buf;
1107
Bram Moolenaarf2f6d292015-12-28 20:57:10 +01001108#ifdef USE_TYPEDDATA
1109 TypedData_Get_Struct(obj, buf_T, &buffer_type, buf);
1110#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111 Data_Get_Struct(obj, buf_T, buf);
Bram Moolenaarf2f6d292015-12-28 20:57:10 +01001112#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 if (buf == NULL)
1114 rb_raise(eDeletedBufferError, "attempt to refer to deleted buffer");
1115 return buf;
1116}
1117
1118static VALUE buffer_s_current()
1119{
1120 return buffer_new(curbuf);
1121}
1122
1123static VALUE buffer_s_count()
1124{
1125 buf_T *b;
1126 int n = 0;
1127
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001128 for (b = firstbuf; b != NULL; b = b->b_next)
1129 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001130 /* Deleted buffers should not be counted
1131 * SegPhault - 01/07/05 */
1132 if (b->b_p_bl)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001133 n++;
1134 }
1135
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 return INT2NUM(n);
1137}
1138
Bram Moolenaarcd8b20a2009-05-22 16:20:57 +00001139static VALUE buffer_s_aref(VALUE self UNUSED, VALUE num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140{
1141 buf_T *b;
1142 int n = NUM2INT(num);
1143
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001144 for (b = firstbuf; b != NULL; b = b->b_next)
1145 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001146 /* Deleted buffers should not be counted
1147 * SegPhault - 01/07/05 */
1148 if (!b->b_p_bl)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001149 continue;
1150
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001151 if (n == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 return buffer_new(b);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001153
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001154 n--;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 }
1156 return Qnil;
1157}
1158
1159static VALUE buffer_name(VALUE self)
1160{
1161 buf_T *buf = get_buf(self);
1162
Bram Moolenaar35a2e192006-03-13 22:07:11 +00001163 return buf->b_ffname ? rb_str_new2((char *)buf->b_ffname) : Qnil;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164}
1165
1166static VALUE buffer_number(VALUE self)
1167{
1168 buf_T *buf = get_buf(self);
1169
1170 return INT2NUM(buf->b_fnum);
1171}
1172
1173static VALUE buffer_count(VALUE self)
1174{
1175 buf_T *buf = get_buf(self);
1176
1177 return INT2NUM(buf->b_ml.ml_line_count);
1178}
1179
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001180static VALUE get_buffer_line(buf_T *buf, linenr_T n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181{
Bram Moolenaar3c531602010-11-16 14:46:19 +01001182 if (n <= 0 || n > buf->b_ml.ml_line_count)
1183 rb_raise(rb_eIndexError, "line number %ld out of range", (long)n);
1184 return vim_str2rb_enc_str((char *)ml_get_buf(buf, n, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185}
1186
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001187static VALUE buffer_aref(VALUE self, VALUE num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188{
1189 buf_T *buf = get_buf(self);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001190
1191 if (buf != NULL)
1192 return get_buffer_line(buf, (linenr_T)NUM2LONG(num));
1193 return Qnil; /* For stop warning */
1194}
1195
1196static VALUE set_buffer_line(buf_T *buf, linenr_T n, VALUE str)
1197{
Bram Moolenaar165641d2010-02-17 16:23:09 +01001198 char *line = StringValuePtr(str);
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001199 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001201 if (n > 0 && n <= buf->b_ml.ml_line_count && line != NULL)
1202 {
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001203 /* set curwin/curbuf for "buf" and save some things */
1204 aucmd_prepbuf(&aco, buf);
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001205
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 if (u_savesub(n) == OK) {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001207 ml_replace(n, (char_u *)line, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 changed();
1209#ifdef SYNTAX_HL
1210 syn_changed(n); /* recompute syntax hl. for this line */
1211#endif
1212 }
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001213
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001214 /* restore curwin/curbuf and a few other things */
1215 aucmd_restbuf(&aco);
1216 /* Careful: autocommands may have made "buf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001217
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218 update_curbuf(NOT_VALID);
1219 }
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001220 else
1221 {
Bram Moolenaar165641d2010-02-17 16:23:09 +01001222 rb_raise(rb_eIndexError, "line number %ld out of range", (long)n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 }
1224 return str;
1225}
1226
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001227static VALUE buffer_aset(VALUE self, VALUE num, VALUE str)
1228{
1229 buf_T *buf = get_buf(self);
1230
1231 if (buf != NULL)
1232 return set_buffer_line(buf, (linenr_T)NUM2LONG(num), str);
1233 return str;
1234}
1235
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236static VALUE buffer_delete(VALUE self, VALUE num)
1237{
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001238 buf_T *buf = get_buf(self);
1239 long n = NUM2LONG(num);
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001240 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001242 if (n > 0 && n <= buf->b_ml.ml_line_count)
1243 {
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001244 /* set curwin/curbuf for "buf" and save some things */
1245 aucmd_prepbuf(&aco, buf);
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001246
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 if (u_savedel(n, 1) == OK) {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 ml_delete(n, 0);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001249
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001250 /* Changes to non-active buffers should properly refresh
1251 * SegPhault - 01/09/05 */
1252 deleted_lines_mark(n, 1L);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001253
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 changed();
1255 }
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001256
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001257 /* restore curwin/curbuf and a few other things */
1258 aucmd_restbuf(&aco);
1259 /* Careful: autocommands may have made "buf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001260
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 update_curbuf(NOT_VALID);
1262 }
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001263 else
1264 {
Bram Moolenaar165641d2010-02-17 16:23:09 +01001265 rb_raise(rb_eIndexError, "line number %ld out of range", n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 }
1267 return Qnil;
1268}
1269
1270static VALUE buffer_append(VALUE self, VALUE num, VALUE str)
1271{
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001272 buf_T *buf = get_buf(self);
Bram Moolenaar165641d2010-02-17 16:23:09 +01001273 char *line = StringValuePtr(str);
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001274 long n = NUM2LONG(num);
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001275 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276
Bram Moolenaar3c531602010-11-16 14:46:19 +01001277 if (line == NULL)
1278 {
Bram Moolenaar165641d2010-02-17 16:23:09 +01001279 rb_raise(rb_eIndexError, "NULL line");
1280 }
1281 else if (n >= 0 && n <= buf->b_ml.ml_line_count)
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001282 {
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001283 /* set curwin/curbuf for "buf" and save some things */
1284 aucmd_prepbuf(&aco, buf);
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001285
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 if (u_inssub(n + 1) == OK) {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 ml_append(n, (char_u *) line, (colnr_T) 0, FALSE);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001288
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001289 /* Changes to non-active buffers should properly refresh screen
1290 * SegPhault - 12/20/04 */
1291 appended_lines_mark(n, 1L);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001292
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001293 changed();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 }
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001295
Bram Moolenaar20ff7922006-06-20 19:10:43 +00001296 /* restore curwin/curbuf and a few other things */
1297 aucmd_restbuf(&aco);
1298 /* Careful: autocommands may have made "buf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001299
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 update_curbuf(NOT_VALID);
1301 }
Bram Moolenaar3c531602010-11-16 14:46:19 +01001302 else
1303 {
Bram Moolenaar165641d2010-02-17 16:23:09 +01001304 rb_raise(rb_eIndexError, "line number %ld out of range", n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 }
1306 return str;
1307}
1308
Bram Moolenaarf2f6d292015-12-28 20:57:10 +01001309#ifdef USE_TYPEDDATA
1310static size_t window_dsize(const void *buf);
1311
1312static const rb_data_type_t window_type = {
1313 "vim_window",
1314 {0, 0, window_dsize, {0, 0}},
1315 0, 0,
1316# ifdef RUBY_TYPED_FREE_IMMEDIATELY
1317 0,
1318# endif
1319};
1320
1321static size_t window_dsize(const void *win UNUSED)
1322{
1323 return sizeof(win_T);
1324}
1325#endif
1326
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327static VALUE window_new(win_T *win)
1328{
Bram Moolenaare344bea2005-09-01 20:46:49 +00001329 if (win->w_ruby_ref)
1330 {
1331 return (VALUE) win->w_ruby_ref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 }
Bram Moolenaare344bea2005-09-01 20:46:49 +00001333 else
1334 {
Bram Moolenaarf2f6d292015-12-28 20:57:10 +01001335#ifdef USE_TYPEDDATA
1336 VALUE obj = TypedData_Wrap_Struct(cVimWindow, &window_type, win);
1337#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 VALUE obj = Data_Wrap_Struct(cVimWindow, 0, 0, win);
Bram Moolenaarf2f6d292015-12-28 20:57:10 +01001339#endif
Bram Moolenaare344bea2005-09-01 20:46:49 +00001340 win->w_ruby_ref = (void *) obj;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 rb_hash_aset(objtbl, rb_obj_id(obj), obj);
1342 return obj;
1343 }
1344}
1345
1346static win_T *get_win(VALUE obj)
1347{
1348 win_T *win;
1349
Bram Moolenaarf2f6d292015-12-28 20:57:10 +01001350#ifdef USE_TYPEDDATA
1351 TypedData_Get_Struct(obj, win_T, &window_type, win);
1352#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353 Data_Get_Struct(obj, win_T, win);
Bram Moolenaarf2f6d292015-12-28 20:57:10 +01001354#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355 if (win == NULL)
1356 rb_raise(eDeletedWindowError, "attempt to refer to deleted window");
1357 return win;
1358}
1359
1360static VALUE window_s_current()
1361{
1362 return window_new(curwin);
1363}
1364
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001365/*
1366 * Added line manipulation functions
1367 * SegPhault - 03/07/05
1368 */
1369static VALUE line_s_current()
1370{
1371 return get_buffer_line(curbuf, curwin->w_cursor.lnum);
1372}
1373
Bram Moolenaarcd8b20a2009-05-22 16:20:57 +00001374static VALUE set_current_line(VALUE self UNUSED, VALUE str)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001375{
1376 return set_buffer_line(curbuf, curwin->w_cursor.lnum, str);
1377}
1378
1379static VALUE current_line_number()
1380{
1381 return INT2FIX((int)curwin->w_cursor.lnum);
1382}
1383
1384
1385
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386static VALUE window_s_count()
1387{
1388#ifdef FEAT_WINDOWS
1389 win_T *w;
1390 int n = 0;
1391
Bram Moolenaarf740b292006-02-16 22:11:02 +00001392 for (w = firstwin; w != NULL; w = w->w_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 n++;
1394 return INT2NUM(n);
1395#else
1396 return INT2NUM(1);
1397#endif
1398}
1399
Bram Moolenaarcd8b20a2009-05-22 16:20:57 +00001400static VALUE window_s_aref(VALUE self UNUSED, VALUE num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401{
1402 win_T *w;
1403 int n = NUM2INT(num);
1404
1405#ifndef FEAT_WINDOWS
1406 w = curwin;
1407#else
1408 for (w = firstwin; w != NULL; w = w->w_next, --n)
1409#endif
1410 if (n == 0)
1411 return window_new(w);
1412 return Qnil;
1413}
1414
1415static VALUE window_buffer(VALUE self)
1416{
1417 win_T *win = get_win(self);
1418
1419 return buffer_new(win->w_buffer);
1420}
1421
1422static VALUE window_height(VALUE self)
1423{
1424 win_T *win = get_win(self);
1425
1426 return INT2NUM(win->w_height);
1427}
1428
1429static VALUE window_set_height(VALUE self, VALUE height)
1430{
1431 win_T *win = get_win(self);
1432 win_T *savewin = curwin;
1433
1434 curwin = win;
1435 win_setheight(NUM2INT(height));
1436 curwin = savewin;
1437 return height;
1438}
1439
Bram Moolenaarfeeaa682013-02-14 22:19:51 +01001440static VALUE window_width(VALUE self UNUSED)
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001441{
Bram Moolenaarfeeaa682013-02-14 22:19:51 +01001442 return INT2NUM(W_WIDTH(get_win(self)));
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001443}
1444
Bram Moolenaarfeeaa682013-02-14 22:19:51 +01001445static VALUE window_set_width(VALUE self UNUSED, VALUE width)
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001446{
Bram Moolenaarfeeaa682013-02-14 22:19:51 +01001447#ifdef FEAT_VERTSPLIT
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001448 win_T *win = get_win(self);
1449 win_T *savewin = curwin;
1450
1451 curwin = win;
1452 win_setwidth(NUM2INT(width));
1453 curwin = savewin;
Bram Moolenaarfeeaa682013-02-14 22:19:51 +01001454#endif
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001455 return width;
1456}
1457
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458static VALUE window_cursor(VALUE self)
1459{
1460 win_T *win = get_win(self);
1461
1462 return rb_assoc_new(INT2NUM(win->w_cursor.lnum), INT2NUM(win->w_cursor.col));
1463}
1464
1465static VALUE window_set_cursor(VALUE self, VALUE pos)
1466{
1467 VALUE lnum, col;
1468 win_T *win = get_win(self);
1469
1470 Check_Type(pos, T_ARRAY);
Bram Moolenaar165641d2010-02-17 16:23:09 +01001471 if (RARRAY_LEN(pos) != 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 rb_raise(rb_eArgError, "array length must be 2");
Bram Moolenaar165641d2010-02-17 16:23:09 +01001473 lnum = RARRAY_PTR(pos)[0];
1474 col = RARRAY_PTR(pos)[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 win->w_cursor.lnum = NUM2LONG(lnum);
1476 win->w_cursor.col = NUM2UINT(col);
1477 check_cursor(); /* put cursor on an existing line */
1478 update_screen(NOT_VALID);
1479 return Qnil;
1480}
1481
Bram Moolenaar6217cdc2012-04-25 12:28:09 +02001482static VALUE f_nop(VALUE self UNUSED)
Bram Moolenaar35df7d22012-04-20 18:05:47 +02001483{
1484 return Qnil;
1485}
1486
Bram Moolenaarcd8b20a2009-05-22 16:20:57 +00001487static VALUE f_p(int argc, VALUE *argv, VALUE self UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488{
1489 int i;
1490 VALUE str = rb_str_new("", 0);
1491
1492 for (i = 0; i < argc; i++) {
1493 if (i > 0) rb_str_cat(str, ", ", 2);
1494 rb_str_concat(str, rb_inspect(argv[i]));
1495 }
Bram Moolenaar165641d2010-02-17 16:23:09 +01001496 MSG(RSTRING_PTR(str));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 return Qnil;
1498}
1499
1500static void ruby_io_init(void)
1501{
1502#ifndef DYNAMIC_RUBY
1503 RUBYEXTERN VALUE rb_stdout;
1504#endif
1505
1506 rb_stdout = rb_obj_alloc(rb_cObject);
1507 rb_define_singleton_method(rb_stdout, "write", vim_message, 1);
Bram Moolenaar35df7d22012-04-20 18:05:47 +02001508 rb_define_singleton_method(rb_stdout, "flush", f_nop, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 rb_define_global_function("p", f_p, -1);
1510}
1511
1512static void ruby_vim_init(void)
1513{
1514 objtbl = rb_hash_new();
1515 rb_global_variable(&objtbl);
1516
Bram Moolenaarf711faf2007-05-10 16:48:19 +00001517 /* The Vim module used to be called "VIM", but "Vim" is better. Make an
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001518 * alias "VIM" for backwards compatibility. */
Bram Moolenaarf711faf2007-05-10 16:48:19 +00001519 mVIM = rb_define_module("Vim");
1520 rb_define_const(rb_cObject, "VIM", mVIM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 rb_define_const(mVIM, "VERSION_MAJOR", INT2NUM(VIM_VERSION_MAJOR));
1522 rb_define_const(mVIM, "VERSION_MINOR", INT2NUM(VIM_VERSION_MINOR));
1523 rb_define_const(mVIM, "VERSION_BUILD", INT2NUM(VIM_VERSION_BUILD));
1524 rb_define_const(mVIM, "VERSION_PATCHLEVEL", INT2NUM(VIM_VERSION_PATCHLEVEL));
1525 rb_define_const(mVIM, "VERSION_SHORT", rb_str_new2(VIM_VERSION_SHORT));
1526 rb_define_const(mVIM, "VERSION_MEDIUM", rb_str_new2(VIM_VERSION_MEDIUM));
1527 rb_define_const(mVIM, "VERSION_LONG", rb_str_new2(VIM_VERSION_LONG));
1528 rb_define_const(mVIM, "VERSION_LONG_DATE", rb_str_new2(VIM_VERSION_LONG_DATE));
1529 rb_define_module_function(mVIM, "message", vim_message, 1);
1530 rb_define_module_function(mVIM, "set_option", vim_set_option, 1);
1531 rb_define_module_function(mVIM, "command", vim_command, 1);
1532 rb_define_module_function(mVIM, "evaluate", vim_evaluate, 1);
1533
1534 eDeletedBufferError = rb_define_class_under(mVIM, "DeletedBufferError",
1535 rb_eStandardError);
1536 eDeletedWindowError = rb_define_class_under(mVIM, "DeletedWindowError",
1537 rb_eStandardError);
1538
1539 cBuffer = rb_define_class_under(mVIM, "Buffer", rb_cObject);
1540 rb_define_singleton_method(cBuffer, "current", buffer_s_current, 0);
1541 rb_define_singleton_method(cBuffer, "count", buffer_s_count, 0);
1542 rb_define_singleton_method(cBuffer, "[]", buffer_s_aref, 1);
1543 rb_define_method(cBuffer, "name", buffer_name, 0);
1544 rb_define_method(cBuffer, "number", buffer_number, 0);
1545 rb_define_method(cBuffer, "count", buffer_count, 0);
1546 rb_define_method(cBuffer, "length", buffer_count, 0);
1547 rb_define_method(cBuffer, "[]", buffer_aref, 1);
1548 rb_define_method(cBuffer, "[]=", buffer_aset, 2);
1549 rb_define_method(cBuffer, "delete", buffer_delete, 1);
1550 rb_define_method(cBuffer, "append", buffer_append, 2);
1551
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001552 /* Added line manipulation functions
1553 * SegPhault - 03/07/05 */
1554 rb_define_method(cBuffer, "line_number", current_line_number, 0);
1555 rb_define_method(cBuffer, "line", line_s_current, 0);
1556 rb_define_method(cBuffer, "line=", set_current_line, 1);
1557
1558
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 cVimWindow = rb_define_class_under(mVIM, "Window", rb_cObject);
1560 rb_define_singleton_method(cVimWindow, "current", window_s_current, 0);
1561 rb_define_singleton_method(cVimWindow, "count", window_s_count, 0);
1562 rb_define_singleton_method(cVimWindow, "[]", window_s_aref, 1);
1563 rb_define_method(cVimWindow, "buffer", window_buffer, 0);
1564 rb_define_method(cVimWindow, "height", window_height, 0);
1565 rb_define_method(cVimWindow, "height=", window_set_height, 1);
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001566 rb_define_method(cVimWindow, "width", window_width, 0);
1567 rb_define_method(cVimWindow, "width=", window_set_width, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 rb_define_method(cVimWindow, "cursor", window_cursor, 0);
1569 rb_define_method(cVimWindow, "cursor=", window_set_cursor, 1);
1570
1571 rb_define_virtual_variable("$curbuf", buffer_s_current, 0);
1572 rb_define_virtual_variable("$curwin", window_s_current, 0);
1573}
Bram Moolenaar99685e62013-05-11 13:56:18 +02001574
1575void vim_ruby_init(void *stack_start)
1576{
1577 /* should get machine stack start address early in main function */
1578 ruby_stack_start = stack_start;
1579}