Mercurial > vim
annotate src/if_ruby.c @ 13755:5f94d5556dae
Added tag v8.0.1749 for changeset 0d199e59a98865c39e044af6e4e933860d0384b5
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 23 Apr 2018 21:00:07 +0200 |
parents | f06a0a75d5b1 |
children | fbd4f9645b57 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
779 | 4 * |
5 * Ruby interface by Shugo Maeda | |
6 * with improvements by SegPhault (Ryan Paul) | |
2589 | 7 * with improvements by Jon Maken |
7 | 8 * |
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 | |
2624 | 14 #ifdef HAVE_CONFIG_H |
15 # include "auto/config.h" | |
16 #endif | |
2621 | 17 |
2683 | 18 #include <stdio.h> |
19 #include <string.h> | |
20 | |
7 | 21 #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 | |
9293
946b62bbd871
commit https://github.com/vim/vim/commit/2016ae586b12513d973aabc30ed758b543114cbe
Christian Brabandt <cb@256bit.org>
parents:
9278
diff
changeset
|
34 #if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 24 |
946b62bbd871
commit https://github.com/vim/vim/commit/2016ae586b12513d973aabc30ed758b543114cbe
Christian Brabandt <cb@256bit.org>
parents:
9278
diff
changeset
|
35 # define USE_RUBY_INTEGER |
9278
97b0b568f820
commit https://github.com/vim/vim/commit/06469e979fe524ac6cb8f705ed4221aa267de11d
Christian Brabandt <cb@256bit.org>
parents:
9159
diff
changeset
|
36 #endif |
97b0b568f820
commit https://github.com/vim/vim/commit/06469e979fe524ac6cb8f705ed4221aa267de11d
Christian Brabandt <cb@256bit.org>
parents:
9159
diff
changeset
|
37 |
2589 | 38 #ifdef DYNAMIC_RUBY |
7 | 39 /* |
40 * This is tricky. In ruby.h there is (inline) function rb_class_of() | |
41 * definition. This function use these variables. But we want function to | |
42 * use dll_* variables. | |
43 */ | |
44 # define rb_cFalseClass (*dll_rb_cFalseClass) | |
45 # define rb_cFixnum (*dll_rb_cFixnum) | |
9293
946b62bbd871
commit https://github.com/vim/vim/commit/2016ae586b12513d973aabc30ed758b543114cbe
Christian Brabandt <cb@256bit.org>
parents:
9278
diff
changeset
|
46 # if defined(USE_RUBY_INTEGER) |
946b62bbd871
commit https://github.com/vim/vim/commit/2016ae586b12513d973aabc30ed758b543114cbe
Christian Brabandt <cb@256bit.org>
parents:
9278
diff
changeset
|
47 # define rb_cInteger (*dll_rb_cInteger) |
9278
97b0b568f820
commit https://github.com/vim/vim/commit/06469e979fe524ac6cb8f705ed4221aa267de11d
Christian Brabandt <cb@256bit.org>
parents:
9159
diff
changeset
|
48 # endif |
4193 | 49 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20 |
50 # define rb_cFloat (*dll_rb_cFloat) | |
51 # endif | |
7 | 52 # define rb_cNilClass (*dll_rb_cNilClass) |
53 # define rb_cSymbol (*dll_rb_cSymbol) | |
54 # define rb_cTrueClass (*dll_rb_cTrueClass) | |
55 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18 | |
56 /* | |
2104
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
57 * On ver 1.8, all Ruby functions are exported with "__declspec(dllimport)" |
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
58 * in ruby.h. But it causes trouble for these variables, because it is |
7 | 59 * defined in this file. When defined this RUBY_EXPORT it modified to |
60 * "extern" and be able to avoid this problem. | |
61 */ | |
62 # define RUBY_EXPORT | |
63 # endif | |
2589 | 64 |
2624 | 65 #if !(defined(WIN32) || defined(_WIN64)) |
2589 | 66 # include <dlfcn.h> |
2621 | 67 # define HINSTANCE void* |
68 # define RUBY_PROC void* | |
2589 | 69 # define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL) |
70 # define symbol_from_dll dlsym | |
71 # define close_dll dlclose | |
72 #else | |
2621 | 73 # define RUBY_PROC FARPROC |
2612 | 74 # define load_dll vimLoadLib |
2589 | 75 # define symbol_from_dll GetProcAddress |
76 # define close_dll FreeLibrary | |
7 | 77 #endif |
78 | |
2589 | 79 #endif /* ifdef DYNAMIC_RUBY */ |
80 | |
2076
1c7a66d820e4
updated for version 7.2.360
Bram Moolenaar <bram@zimbu.org>
parents:
1888
diff
changeset
|
81 /* suggested by Ariya Mizutani */ |
1c7a66d820e4
updated for version 7.2.360
Bram Moolenaar <bram@zimbu.org>
parents:
1888
diff
changeset
|
82 #if (_MSC_VER == 1200) |
1c7a66d820e4
updated for version 7.2.360
Bram Moolenaar <bram@zimbu.org>
parents:
1888
diff
changeset
|
83 # undef _WIN32_WINNT |
1c7a66d820e4
updated for version 7.2.360
Bram Moolenaar <bram@zimbu.org>
parents:
1888
diff
changeset
|
84 #endif |
1c7a66d820e4
updated for version 7.2.360
Bram Moolenaar <bram@zimbu.org>
parents:
1888
diff
changeset
|
85 |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
86 #if (defined(RUBY_VERSION) && RUBY_VERSION >= 19) \ |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
87 || (defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 19) |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
88 # define RUBY19_OR_LATER 1 |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
89 #endif |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
90 |
7364
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
91 #if (defined(RUBY_VERSION) && RUBY_VERSION >= 20) \ |
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
92 || (defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20) |
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
93 # define RUBY20_OR_LATER 1 |
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
94 #endif |
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
95 |
2104
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
96 #if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 19 |
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
97 /* Ruby 1.9 defines a number of static functions which use rb_num2long and |
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
98 * rb_int2big */ |
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
99 # define rb_num2long rb_num2long_stub |
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
100 # define rb_int2big rb_int2big_stub |
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
101 #endif |
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
102 |
5766 | 103 #if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 19 \ |
104 && VIM_SIZEOF_INT < VIM_SIZEOF_LONG | |
105 /* Ruby 1.9 defines a number of static functions which use rb_fix2int and | |
5684 | 106 * rb_num2int if VIM_SIZEOF_INT < VIM_SIZEOF_LONG (64bit) */ |
4279 | 107 # define rb_fix2int rb_fix2int_stub |
108 # define rb_num2int rb_num2int_stub | |
109 #endif | |
110 | |
6485 | 111 #if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER == 21 |
5643 | 112 /* Ruby 2.1 adds new GC called RGenGC and RARRAY_PTR uses |
113 * rb_gc_writebarrier_unprotect_promoted if USE_RGENGC */ | |
6406 | 114 # define rb_gc_writebarrier_unprotect_promoted rb_gc_writebarrier_unprotect_promoted_stub |
115 #endif | |
6485 | 116 #if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 22 |
117 # define rb_gc_writebarrier_unprotect rb_gc_writebarrier_unprotect_stub | |
118 #endif | |
5643 | 119 |
7 | 120 #include <ruby.h> |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
121 #ifdef RUBY19_OR_LATER |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
122 # include <ruby/encoding.h> |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
123 #endif |
7 | 124 |
2669 | 125 #undef off_t /* ruby defines off_t as _int64, Mingw uses long */ |
7 | 126 #undef EXTERN |
127 #undef _ | |
128 | |
129 /* T_DATA defined both by Ruby and Mac header files, hack around it... */ | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12553
diff
changeset
|
130 #if defined(MACOS_X) |
7 | 131 # define __OPENTRANSPORT__ |
132 # define __OPENTRANSPORTPROTOCOL__ | |
133 # define __OPENTRANSPORTPROVIDERS__ | |
134 #endif | |
135 | |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
136 /* |
7364
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
137 * The TypedData_XXX macro family can be used since Ruby 1.9.2 but |
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
138 * rb_data_type_t changed in 1.9.3, therefore require at least 2.0. |
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
139 * The old Data_XXX macro family was deprecated on Ruby 2.2. |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
140 * Use TypedData_XXX if available. |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
141 */ |
7364
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
142 #if defined(TypedData_Wrap_Struct) && defined(RUBY20_OR_LATER) |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
143 # define USE_TYPEDDATA 1 |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
144 #endif |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
145 |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
146 /* |
4352 | 147 * Backward compatibility for Ruby 1.8 and earlier. |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
148 * Ruby 1.9 does not provide STR2CSTR, instead StringValuePtr is provided. |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
149 * Ruby 1.9 does not provide RXXX(s)->len and RXXX(s)->ptr, instead |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
150 * RXXX_LEN(s) and RXXX_PTR(s) are provided. |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
151 */ |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
152 #ifndef StringValuePtr |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
153 # define StringValuePtr(s) STR2CSTR(s) |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
154 #endif |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
155 #ifndef RARRAY_LEN |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
156 # define RARRAY_LEN(s) RARRAY(s)->len |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
157 #endif |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
158 #ifndef RARRAY_PTR |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
159 # define RARRAY_PTR(s) RARRAY(s)->ptr |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
160 #endif |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
161 #ifndef RSTRING_LEN |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
162 # define RSTRING_LEN(s) RSTRING(s)->len |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
163 #endif |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
164 #ifndef RSTRING_PTR |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
165 # define RSTRING_PTR(s) RSTRING(s)->ptr |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
166 #endif |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
167 |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
168 #ifdef HAVE_DUP |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
169 # undef HAVE_DUP |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
170 #endif |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
171 |
7 | 172 #include "vim.h" |
173 #include "version.h" | |
174 | |
175 #if defined(PROTO) && !defined(FEAT_RUBY) | |
176 /* Define these to be able to generate the function prototypes. */ | |
177 # define VALUE int | |
178 # define RUBY_DATA_FUNC int | |
179 #endif | |
180 | |
181 static int ruby_initialized = 0; | |
4369 | 182 static void *ruby_stack_start; |
7 | 183 static VALUE objtbl; |
184 | |
185 static VALUE mVIM; | |
186 static VALUE cBuffer; | |
187 static VALUE cVimWindow; | |
188 static VALUE eDeletedBufferError; | |
189 static VALUE eDeletedWindowError; | |
190 | |
191 static int ensure_ruby_initialized(void); | |
192 static void error_print(int); | |
193 static void ruby_io_init(void); | |
194 static void ruby_vim_init(void); | |
195 | |
4452 | 196 #if defined(RUBY19_OR_LATER) || defined(RUBY_INIT_STACK) |
197 # if defined(__ia64) && !defined(ruby_init_stack) | |
198 # define ruby_init_stack(addr) ruby_init_stack((addr), rb_ia64_bsp()) | |
199 # endif | |
4375 | 200 #endif |
201 | |
7 | 202 #if defined(DYNAMIC_RUBY) || defined(PROTO) |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
203 # if defined(PROTO) && !defined(HINSTANCE) |
4375 | 204 # define HINSTANCE int /* for generating prototypes */ |
205 # endif | |
7 | 206 |
207 /* | |
208 * Wrapper defines | |
209 */ | |
4375 | 210 # define rb_assoc_new dll_rb_assoc_new |
211 # define rb_cObject (*dll_rb_cObject) | |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
212 # define rb_check_type dll_rb_check_type |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
213 # ifdef USE_TYPEDDATA |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
214 # define rb_check_typeddata dll_rb_check_typeddata |
6485 | 215 # endif |
4375 | 216 # define rb_class_path dll_rb_class_path |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
217 # ifdef USE_TYPEDDATA |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
218 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 23 |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
219 # define rb_data_typed_object_wrap dll_rb_data_typed_object_wrap |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
220 # else |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
221 # define rb_data_typed_object_alloc dll_rb_data_typed_object_alloc |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
222 # endif |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
223 # else |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
224 # define rb_data_object_alloc dll_rb_data_object_alloc |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
225 # endif |
4375 | 226 # define rb_define_class_under dll_rb_define_class_under |
227 # define rb_define_const dll_rb_define_const | |
228 # define rb_define_global_function dll_rb_define_global_function | |
229 # define rb_define_method dll_rb_define_method | |
230 # define rb_define_module dll_rb_define_module | |
231 # define rb_define_module_function dll_rb_define_module_function | |
232 # define rb_define_singleton_method dll_rb_define_singleton_method | |
233 # define rb_define_virtual_variable dll_rb_define_virtual_variable | |
234 # define rb_stdout (*dll_rb_stdout) | |
235 # define rb_eArgError (*dll_rb_eArgError) | |
236 # define rb_eIndexError (*dll_rb_eIndexError) | |
237 # define rb_eRuntimeError (*dll_rb_eRuntimeError) | |
238 # define rb_eStandardError (*dll_rb_eStandardError) | |
239 # define rb_eval_string_protect dll_rb_eval_string_protect | |
240 # define rb_global_variable dll_rb_global_variable | |
241 # define rb_hash_aset dll_rb_hash_aset | |
242 # define rb_hash_new dll_rb_hash_new | |
243 # define rb_inspect dll_rb_inspect | |
244 # define rb_int2inum dll_rb_int2inum | |
5684 | 245 # if VIM_SIZEOF_INT < VIM_SIZEOF_LONG /* 64 bits only */ |
5766 | 246 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER <= 18 |
247 # define rb_fix2int dll_rb_fix2int | |
248 # define rb_num2int dll_rb_num2int | |
249 # endif | |
4375 | 250 # define rb_num2uint dll_rb_num2uint |
251 # endif | |
252 # define rb_lastline_get dll_rb_lastline_get | |
253 # define rb_lastline_set dll_rb_lastline_set | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12553
diff
changeset
|
254 # define rb_protect dll_rb_protect |
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12553
diff
changeset
|
255 # define rb_load dll_rb_load |
4375 | 256 # ifndef RUBY19_OR_LATER |
257 # define rb_num2long dll_rb_num2long | |
258 # endif | |
259 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER <= 19 | |
260 # define rb_num2ulong dll_rb_num2ulong | |
261 # endif | |
262 # define rb_obj_alloc dll_rb_obj_alloc | |
263 # define rb_obj_as_string dll_rb_obj_as_string | |
264 # define rb_obj_id dll_rb_obj_id | |
265 # define rb_raise dll_rb_raise | |
266 # define rb_str_cat dll_rb_str_cat | |
267 # define rb_str_concat dll_rb_str_concat | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
268 # undef rb_str_new |
4375 | 269 # define rb_str_new dll_rb_str_new |
270 # ifdef rb_str_new2 | |
2212
7d3cf4693a8f
Some versions of Ruby redefine rb_str_new2 to rb_str_new_cstr.
Bram Moolenaar <bram@vim.org>
parents:
2200
diff
changeset
|
271 /* Ruby may #define rb_str_new2 to use rb_str_new_cstr. */ |
4375 | 272 # define need_rb_str_new_cstr 1 |
2621 | 273 /* Ruby's headers #define rb_str_new_cstr to make use of GCC's |
274 * __builtin_constant_p extension. */ | |
4375 | 275 # undef rb_str_new_cstr |
276 # define rb_str_new_cstr dll_rb_str_new_cstr | |
4373 | 277 # else |
4375 | 278 # define rb_str_new2 dll_rb_str_new2 |
279 # endif | |
280 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18 | |
281 # define rb_string_value dll_rb_string_value | |
282 # define rb_string_value_ptr dll_rb_string_value_ptr | |
283 # define rb_float_new dll_rb_float_new | |
284 # define rb_ary_new dll_rb_ary_new | |
285 # define rb_ary_push dll_rb_ary_push | |
4452 | 286 # if defined(RUBY19_OR_LATER) || defined(RUBY_INIT_STACK) |
287 # ifdef __ia64 | |
288 # define rb_ia64_bsp dll_rb_ia64_bsp | |
289 # undef ruby_init_stack | |
290 # define ruby_init_stack(addr) dll_ruby_init_stack((addr), rb_ia64_bsp()) | |
291 # else | |
292 # define ruby_init_stack dll_ruby_init_stack | |
293 # endif | |
4375 | 294 # endif |
295 # else | |
296 # define rb_str2cstr dll_rb_str2cstr | |
4373 | 297 # endif |
4375 | 298 # ifdef RUBY19_OR_LATER |
299 # define rb_errinfo dll_rb_errinfo | |
300 # else | |
301 # define ruby_errinfo (*dll_ruby_errinfo) | |
2621 | 302 # endif |
4375 | 303 # define ruby_init dll_ruby_init |
304 # define ruby_init_loadpath dll_ruby_init_loadpath | |
305 # ifdef WIN3264 | |
306 # define NtInitialize dll_NtInitialize | |
10603
df1abc85b169
patch 8.0.0191: can't build with Ruby on some systems
Christian Brabandt <cb@256bit.org>
parents:
10595
diff
changeset
|
307 # define ruby_sysinit dll_ruby_sysinit |
4375 | 308 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18 |
309 # define rb_w32_snprintf dll_rb_w32_snprintf | |
310 # endif | |
311 # endif | |
7 | 312 |
4375 | 313 # ifdef RUBY19_OR_LATER |
314 # define ruby_script dll_ruby_script | |
315 # define rb_enc_find_index dll_rb_enc_find_index | |
316 # define rb_enc_find dll_rb_enc_find | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
317 # undef rb_enc_str_new |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
318 # define rb_enc_str_new dll_rb_enc_str_new |
4375 | 319 # define rb_sprintf dll_rb_sprintf |
320 # define rb_require dll_rb_require | |
7237
2a95fa0a07b5
commit https://github.com/vim/vim/commit/9b1067e038d371bd6c51e5da025383761f4921b4
Christian Brabandt <cb@256bit.org>
parents:
7196
diff
changeset
|
321 # define ruby_options dll_ruby_options |
4375 | 322 # endif |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
323 |
7 | 324 /* |
325 * Pointers for dynamic link | |
326 */ | |
327 static VALUE (*dll_rb_assoc_new) (VALUE, VALUE); | |
2274
7c31d761ffa9
Fix build problem with Ruby on Windows. (Cesar Romani)
Bram Moolenaar <bram@vim.org>
parents:
2212
diff
changeset
|
328 VALUE *dll_rb_cFalseClass; |
7c31d761ffa9
Fix build problem with Ruby on Windows. (Cesar Romani)
Bram Moolenaar <bram@vim.org>
parents:
2212
diff
changeset
|
329 VALUE *dll_rb_cFixnum; |
9293
946b62bbd871
commit https://github.com/vim/vim/commit/2016ae586b12513d973aabc30ed758b543114cbe
Christian Brabandt <cb@256bit.org>
parents:
9278
diff
changeset
|
330 # if defined(USE_RUBY_INTEGER) |
9278
97b0b568f820
commit https://github.com/vim/vim/commit/06469e979fe524ac6cb8f705ed4221aa267de11d
Christian Brabandt <cb@256bit.org>
parents:
9159
diff
changeset
|
331 VALUE *dll_rb_cInteger; |
97b0b568f820
commit https://github.com/vim/vim/commit/06469e979fe524ac6cb8f705ed4221aa267de11d
Christian Brabandt <cb@256bit.org>
parents:
9159
diff
changeset
|
332 # endif |
4375 | 333 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20 |
4193 | 334 VALUE *dll_rb_cFloat; |
4375 | 335 # endif |
2274
7c31d761ffa9
Fix build problem with Ruby on Windows. (Cesar Romani)
Bram Moolenaar <bram@vim.org>
parents:
2212
diff
changeset
|
336 VALUE *dll_rb_cNilClass; |
7 | 337 static VALUE *dll_rb_cObject; |
2274
7c31d761ffa9
Fix build problem with Ruby on Windows. (Cesar Romani)
Bram Moolenaar <bram@vim.org>
parents:
2212
diff
changeset
|
338 VALUE *dll_rb_cSymbol; |
7c31d761ffa9
Fix build problem with Ruby on Windows. (Cesar Romani)
Bram Moolenaar <bram@vim.org>
parents:
2212
diff
changeset
|
339 VALUE *dll_rb_cTrueClass; |
7 | 340 static void (*dll_rb_check_type) (VALUE,int); |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
341 # ifdef USE_TYPEDDATA |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
342 static void *(*dll_rb_check_typeddata) (VALUE,const rb_data_type_t *); |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
343 # endif |
7 | 344 static VALUE (*dll_rb_class_path) (VALUE); |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
345 # ifdef USE_TYPEDDATA |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
346 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 23 |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
347 static VALUE (*dll_rb_data_typed_object_wrap) (VALUE, void*, const rb_data_type_t *); |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
348 # else |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
349 static VALUE (*dll_rb_data_typed_object_alloc) (VALUE, void*, const rb_data_type_t *); |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
350 # endif |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
351 # else |
7 | 352 static VALUE (*dll_rb_data_object_alloc) (VALUE, void*, RUBY_DATA_FUNC, RUBY_DATA_FUNC); |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
353 # endif |
7 | 354 static VALUE (*dll_rb_define_class_under) (VALUE, const char*, VALUE); |
355 static void (*dll_rb_define_const) (VALUE,const char*,VALUE); | |
356 static void (*dll_rb_define_global_function) (const char*,VALUE(*)(),int); | |
357 static void (*dll_rb_define_method) (VALUE,const char*,VALUE(*)(),int); | |
358 static VALUE (*dll_rb_define_module) (const char*); | |
359 static void (*dll_rb_define_module_function) (VALUE,const char*,VALUE(*)(),int); | |
360 static void (*dll_rb_define_singleton_method) (VALUE,const char*,VALUE(*)(),int); | |
361 static void (*dll_rb_define_virtual_variable) (const char*,VALUE(*)(),void(*)()); | |
362 static VALUE *dll_rb_stdout; | |
363 static VALUE *dll_rb_eArgError; | |
364 static VALUE *dll_rb_eIndexError; | |
365 static VALUE *dll_rb_eRuntimeError; | |
366 static VALUE *dll_rb_eStandardError; | |
367 static VALUE (*dll_rb_eval_string_protect) (const char*, int*); | |
368 static void (*dll_rb_global_variable) (VALUE*); | |
369 static VALUE (*dll_rb_hash_aset) (VALUE, VALUE, VALUE); | |
370 static VALUE (*dll_rb_hash_new) (void); | |
371 static VALUE (*dll_rb_inspect) (VALUE); | |
372 static VALUE (*dll_rb_int2inum) (long); | |
5684 | 373 # if VIM_SIZEOF_INT < VIM_SIZEOF_LONG /* 64 bits only */ |
3808 | 374 static long (*dll_rb_fix2int) (VALUE); |
375 static long (*dll_rb_num2int) (VALUE); | |
376 static unsigned long (*dll_rb_num2uint) (VALUE); | |
4375 | 377 # endif |
7 | 378 static VALUE (*dll_rb_lastline_get) (void); |
379 static void (*dll_rb_lastline_set) (VALUE); | |
13148
f06a0a75d5b1
patch 8.0.1448: segfault with exception inside :rubyfile command
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
380 static VALUE (*dll_rb_protect) (VALUE (*)(VALUE), VALUE, int*); |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12553
diff
changeset
|
381 static void (*dll_rb_load) (VALUE, int); |
7 | 382 static long (*dll_rb_num2long) (VALUE); |
383 static unsigned long (*dll_rb_num2ulong) (VALUE); | |
384 static VALUE (*dll_rb_obj_alloc) (VALUE); | |
385 static VALUE (*dll_rb_obj_as_string) (VALUE); | |
386 static VALUE (*dll_rb_obj_id) (VALUE); | |
387 static void (*dll_rb_raise) (VALUE, const char*, ...); | |
4375 | 388 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18 |
2589 | 389 static VALUE (*dll_rb_string_value) (volatile VALUE*); |
4375 | 390 # else |
7 | 391 static char *(*dll_rb_str2cstr) (VALUE,int*); |
4375 | 392 # endif |
7 | 393 static VALUE (*dll_rb_str_cat) (VALUE, const char*, long); |
394 static VALUE (*dll_rb_str_concat) (VALUE, VALUE); | |
395 static VALUE (*dll_rb_str_new) (const char*, long); | |
4375 | 396 # ifdef need_rb_str_new_cstr |
2212
7d3cf4693a8f
Some versions of Ruby redefine rb_str_new2 to rb_str_new_cstr.
Bram Moolenaar <bram@vim.org>
parents:
2200
diff
changeset
|
397 /* Ruby may #define rb_str_new2 to use rb_str_new_cstr. */ |
7d3cf4693a8f
Some versions of Ruby redefine rb_str_new2 to rb_str_new_cstr.
Bram Moolenaar <bram@vim.org>
parents:
2200
diff
changeset
|
398 static VALUE (*dll_rb_str_new_cstr) (const char*); |
4375 | 399 # else |
7 | 400 static VALUE (*dll_rb_str_new2) (const char*); |
4375 | 401 # endif |
402 # ifdef RUBY19_OR_LATER | |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
403 static VALUE (*dll_rb_errinfo) (void); |
4375 | 404 # else |
7 | 405 static VALUE *dll_ruby_errinfo; |
4375 | 406 # endif |
7 | 407 static void (*dll_ruby_init) (void); |
408 static void (*dll_ruby_init_loadpath) (void); | |
4375 | 409 # ifdef WIN3264 |
2076
1c7a66d820e4
updated for version 7.2.360
Bram Moolenaar <bram@zimbu.org>
parents:
1888
diff
changeset
|
410 static void (*dll_NtInitialize) (int*, char***); |
10603
df1abc85b169
patch 8.0.0191: can't build with Ruby on some systems
Christian Brabandt <cb@256bit.org>
parents:
10595
diff
changeset
|
411 static void (*dll_ruby_sysinit) (int*, char***); |
4375 | 412 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18 |
2621 | 413 static int (*dll_rb_w32_snprintf)(char*, size_t, const char*, ...); |
4375 | 414 # endif |
2621 | 415 # endif |
4375 | 416 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18 |
2104
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
417 static char * (*dll_rb_string_value_ptr) (volatile VALUE*); |
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
418 static VALUE (*dll_rb_float_new) (double); |
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
419 static VALUE (*dll_rb_ary_new) (void); |
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
420 static VALUE (*dll_rb_ary_push) (VALUE, VALUE); |
4452 | 421 # if defined(RUBY19_OR_LATER) || defined(RUBY_INIT_STACK) |
422 # ifdef __ia64 | |
4373 | 423 static void * (*dll_rb_ia64_bsp) (void); |
424 static void (*dll_ruby_init_stack)(VALUE*, void*); | |
4452 | 425 # else |
4373 | 426 static void (*dll_ruby_init_stack)(VALUE*); |
4452 | 427 # endif |
4375 | 428 # endif |
4373 | 429 # endif |
4375 | 430 # ifdef RUBY19_OR_LATER |
2104
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
431 static VALUE (*dll_rb_int2big)(SIGNED_VALUE); |
4375 | 432 # endif |
7 | 433 |
4375 | 434 # ifdef RUBY19_OR_LATER |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
435 static void (*dll_ruby_script) (const char*); |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
436 static int (*dll_rb_enc_find_index) (const char*); |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
437 static rb_encoding* (*dll_rb_enc_find) (const char*); |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
438 static VALUE (*dll_rb_enc_str_new) (const char*, long, rb_encoding*); |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
439 static VALUE (*dll_rb_sprintf) (const char*, ...); |
2669 | 440 static VALUE (*dll_rb_require) (const char*); |
7237
2a95fa0a07b5
commit https://github.com/vim/vim/commit/9b1067e038d371bd6c51e5da025383761f4921b4
Christian Brabandt <cb@256bit.org>
parents:
7196
diff
changeset
|
441 static void* (*ruby_options)(int, char**); |
4375 | 442 # endif |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
443 |
5643 | 444 # if defined(USE_RGENGC) && USE_RGENGC |
6485 | 445 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER == 21 |
5643 | 446 static void (*dll_rb_gc_writebarrier_unprotect_promoted)(VALUE); |
6485 | 447 # else |
448 static void (*dll_rb_gc_writebarrier_unprotect)(VALUE obj); | |
449 # endif | |
5643 | 450 # endif |
451 | |
4375 | 452 # if defined(RUBY19_OR_LATER) && !defined(PROTO) |
6767 | 453 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 22 |
454 long rb_num2long_stub(VALUE x) | |
455 # else | |
3947 | 456 SIGNED_VALUE rb_num2long_stub(VALUE x) |
6767 | 457 # endif |
2104
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
458 { |
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
459 return dll_rb_num2long(x); |
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
460 } |
3947 | 461 VALUE rb_int2big_stub(SIGNED_VALUE x) |
2104
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
462 { |
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
463 return dll_rb_int2big(x); |
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
464 } |
5766 | 465 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 19 \ |
466 && VIM_SIZEOF_INT < VIM_SIZEOF_LONG | |
4279 | 467 long rb_fix2int_stub(VALUE x) |
468 { | |
469 return dll_rb_fix2int(x); | |
470 } | |
471 long rb_num2int_stub(VALUE x) | |
472 { | |
473 return dll_rb_num2int(x); | |
474 } | |
4375 | 475 # endif |
476 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20 | |
4164 | 477 VALUE |
478 rb_float_new_in_heap(double d) | |
479 { | |
480 return dll_rb_float_new(d); | |
481 } | |
6767 | 482 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 22 |
483 unsigned long rb_num2ulong(VALUE x) | |
484 # else | |
4193 | 485 VALUE rb_num2ulong(VALUE x) |
6767 | 486 # endif |
4164 | 487 { |
488 return (long)RSHIFT((SIGNED_VALUE)(x),1); | |
489 } | |
4375 | 490 # endif |
491 # endif | |
2104
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
492 |
6357 | 493 /* Do not generate a prototype here, VALUE isn't always defined. */ |
494 # if defined(USE_RGENGC) && USE_RGENGC && !defined(PROTO) | |
6485 | 495 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER == 21 |
5643 | 496 void rb_gc_writebarrier_unprotect_promoted_stub(VALUE obj) |
497 { | |
6406 | 498 dll_rb_gc_writebarrier_unprotect_promoted(obj); |
5643 | 499 } |
6485 | 500 # else |
501 void rb_gc_writebarrier_unprotect_stub(VALUE obj) | |
502 { | |
503 dll_rb_gc_writebarrier_unprotect(obj); | |
504 } | |
505 # endif | |
506 # endif | |
507 | |
2621 | 508 static HINSTANCE hinstRuby = NULL; /* Instance of ruby.dll */ |
7 | 509 |
510 /* | |
501 | 511 * Table of name to function pointer of ruby. |
7 | 512 */ |
513 static struct | |
514 { | |
515 char *name; | |
516 RUBY_PROC *ptr; | |
517 } ruby_funcname_table[] = | |
518 { | |
519 {"rb_assoc_new", (RUBY_PROC*)&dll_rb_assoc_new}, | |
520 {"rb_cFalseClass", (RUBY_PROC*)&dll_rb_cFalseClass}, | |
9293
946b62bbd871
commit https://github.com/vim/vim/commit/2016ae586b12513d973aabc30ed758b543114cbe
Christian Brabandt <cb@256bit.org>
parents:
9278
diff
changeset
|
521 # if defined(USE_RUBY_INTEGER) |
9278
97b0b568f820
commit https://github.com/vim/vim/commit/06469e979fe524ac6cb8f705ed4221aa267de11d
Christian Brabandt <cb@256bit.org>
parents:
9159
diff
changeset
|
522 {"rb_cInteger", (RUBY_PROC*)&dll_rb_cInteger}, |
10546
7babc70a7b98
patch 8.0.0163: cannot build with Ruby 2.4
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
523 # else |
7babc70a7b98
patch 8.0.0163: cannot build with Ruby 2.4
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
524 {"rb_cFixnum", (RUBY_PROC*)&dll_rb_cFixnum}, |
9278
97b0b568f820
commit https://github.com/vim/vim/commit/06469e979fe524ac6cb8f705ed4221aa267de11d
Christian Brabandt <cb@256bit.org>
parents:
9159
diff
changeset
|
525 # endif |
4375 | 526 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20 |
4193 | 527 {"rb_cFloat", (RUBY_PROC*)&dll_rb_cFloat}, |
4375 | 528 # endif |
7 | 529 {"rb_cNilClass", (RUBY_PROC*)&dll_rb_cNilClass}, |
530 {"rb_cObject", (RUBY_PROC*)&dll_rb_cObject}, | |
531 {"rb_cSymbol", (RUBY_PROC*)&dll_rb_cSymbol}, | |
532 {"rb_cTrueClass", (RUBY_PROC*)&dll_rb_cTrueClass}, | |
533 {"rb_check_type", (RUBY_PROC*)&dll_rb_check_type}, | |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
534 # ifdef USE_TYPEDDATA |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
535 {"rb_check_typeddata", (RUBY_PROC*)&dll_rb_check_typeddata}, |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
536 # endif |
7 | 537 {"rb_class_path", (RUBY_PROC*)&dll_rb_class_path}, |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
538 # ifdef USE_TYPEDDATA |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
539 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 23 |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
540 {"rb_data_typed_object_wrap", (RUBY_PROC*)&dll_rb_data_typed_object_wrap}, |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
541 # else |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
542 {"rb_data_typed_object_alloc", (RUBY_PROC*)&dll_rb_data_typed_object_alloc}, |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
543 # endif |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
544 # else |
7 | 545 {"rb_data_object_alloc", (RUBY_PROC*)&dll_rb_data_object_alloc}, |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
546 # endif |
7 | 547 {"rb_define_class_under", (RUBY_PROC*)&dll_rb_define_class_under}, |
548 {"rb_define_const", (RUBY_PROC*)&dll_rb_define_const}, | |
549 {"rb_define_global_function", (RUBY_PROC*)&dll_rb_define_global_function}, | |
550 {"rb_define_method", (RUBY_PROC*)&dll_rb_define_method}, | |
551 {"rb_define_module", (RUBY_PROC*)&dll_rb_define_module}, | |
552 {"rb_define_module_function", (RUBY_PROC*)&dll_rb_define_module_function}, | |
553 {"rb_define_singleton_method", (RUBY_PROC*)&dll_rb_define_singleton_method}, | |
554 {"rb_define_virtual_variable", (RUBY_PROC*)&dll_rb_define_virtual_variable}, | |
555 {"rb_stdout", (RUBY_PROC*)&dll_rb_stdout}, | |
556 {"rb_eArgError", (RUBY_PROC*)&dll_rb_eArgError}, | |
557 {"rb_eIndexError", (RUBY_PROC*)&dll_rb_eIndexError}, | |
558 {"rb_eRuntimeError", (RUBY_PROC*)&dll_rb_eRuntimeError}, | |
559 {"rb_eStandardError", (RUBY_PROC*)&dll_rb_eStandardError}, | |
560 {"rb_eval_string_protect", (RUBY_PROC*)&dll_rb_eval_string_protect}, | |
561 {"rb_global_variable", (RUBY_PROC*)&dll_rb_global_variable}, | |
562 {"rb_hash_aset", (RUBY_PROC*)&dll_rb_hash_aset}, | |
563 {"rb_hash_new", (RUBY_PROC*)&dll_rb_hash_new}, | |
564 {"rb_inspect", (RUBY_PROC*)&dll_rb_inspect}, | |
565 {"rb_int2inum", (RUBY_PROC*)&dll_rb_int2inum}, | |
5684 | 566 # if VIM_SIZEOF_INT < VIM_SIZEOF_LONG /* 64 bits only */ |
3808 | 567 {"rb_fix2int", (RUBY_PROC*)&dll_rb_fix2int}, |
568 {"rb_num2int", (RUBY_PROC*)&dll_rb_num2int}, | |
569 {"rb_num2uint", (RUBY_PROC*)&dll_rb_num2uint}, | |
4375 | 570 # endif |
7 | 571 {"rb_lastline_get", (RUBY_PROC*)&dll_rb_lastline_get}, |
572 {"rb_lastline_set", (RUBY_PROC*)&dll_rb_lastline_set}, | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12553
diff
changeset
|
573 {"rb_protect", (RUBY_PROC*)&dll_rb_protect}, |
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12553
diff
changeset
|
574 {"rb_load", (RUBY_PROC*)&dll_rb_load}, |
7 | 575 {"rb_num2long", (RUBY_PROC*)&dll_rb_num2long}, |
576 {"rb_num2ulong", (RUBY_PROC*)&dll_rb_num2ulong}, | |
577 {"rb_obj_alloc", (RUBY_PROC*)&dll_rb_obj_alloc}, | |
578 {"rb_obj_as_string", (RUBY_PROC*)&dll_rb_obj_as_string}, | |
579 {"rb_obj_id", (RUBY_PROC*)&dll_rb_obj_id}, | |
580 {"rb_raise", (RUBY_PROC*)&dll_rb_raise}, | |
4375 | 581 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18 |
2589 | 582 {"rb_string_value", (RUBY_PROC*)&dll_rb_string_value}, |
4375 | 583 # else |
7 | 584 {"rb_str2cstr", (RUBY_PROC*)&dll_rb_str2cstr}, |
4375 | 585 # endif |
7 | 586 {"rb_str_cat", (RUBY_PROC*)&dll_rb_str_cat}, |
587 {"rb_str_concat", (RUBY_PROC*)&dll_rb_str_concat}, | |
588 {"rb_str_new", (RUBY_PROC*)&dll_rb_str_new}, | |
4375 | 589 # ifdef need_rb_str_new_cstr |
2212
7d3cf4693a8f
Some versions of Ruby redefine rb_str_new2 to rb_str_new_cstr.
Bram Moolenaar <bram@vim.org>
parents:
2200
diff
changeset
|
590 {"rb_str_new_cstr", (RUBY_PROC*)&dll_rb_str_new_cstr}, |
4375 | 591 # else |
7 | 592 {"rb_str_new2", (RUBY_PROC*)&dll_rb_str_new2}, |
4375 | 593 # endif |
594 # ifdef RUBY19_OR_LATER | |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
595 {"rb_errinfo", (RUBY_PROC*)&dll_rb_errinfo}, |
4375 | 596 # else |
7 | 597 {"ruby_errinfo", (RUBY_PROC*)&dll_ruby_errinfo}, |
4375 | 598 # endif |
7 | 599 {"ruby_init", (RUBY_PROC*)&dll_ruby_init}, |
600 {"ruby_init_loadpath", (RUBY_PROC*)&dll_ruby_init_loadpath}, | |
4375 | 601 # ifdef WIN3264 |
602 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER < 19 | |
10603
df1abc85b169
patch 8.0.0191: can't build with Ruby on some systems
Christian Brabandt <cb@256bit.org>
parents:
10595
diff
changeset
|
603 {"NtInitialize", (RUBY_PROC*)&dll_NtInitialize}, |
4375 | 604 # else |
10603
df1abc85b169
patch 8.0.0191: can't build with Ruby on some systems
Christian Brabandt <cb@256bit.org>
parents:
10595
diff
changeset
|
605 {"ruby_sysinit", (RUBY_PROC*)&dll_ruby_sysinit}, |
4375 | 606 # endif |
607 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18 | |
7 | 608 {"rb_w32_snprintf", (RUBY_PROC*)&dll_rb_w32_snprintf}, |
4375 | 609 # endif |
2621 | 610 # endif |
4375 | 611 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 18 |
2104
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
612 {"rb_string_value_ptr", (RUBY_PROC*)&dll_rb_string_value_ptr}, |
4375 | 613 # if DYNAMIC_RUBY_VER <= 19 |
2104
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
614 {"rb_float_new", (RUBY_PROC*)&dll_rb_float_new}, |
4375 | 615 # else |
4164 | 616 {"rb_float_new_in_heap", (RUBY_PROC*)&dll_rb_float_new}, |
4375 | 617 # endif |
2104
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
618 {"rb_ary_new", (RUBY_PROC*)&dll_rb_ary_new}, |
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
619 {"rb_ary_push", (RUBY_PROC*)&dll_rb_ary_push}, |
4375 | 620 # endif |
621 # ifdef RUBY19_OR_LATER | |
2104
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
622 {"rb_int2big", (RUBY_PROC*)&dll_rb_int2big}, |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
623 {"ruby_script", (RUBY_PROC*)&dll_ruby_script}, |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
624 {"rb_enc_find_index", (RUBY_PROC*)&dll_rb_enc_find_index}, |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
625 {"rb_enc_find", (RUBY_PROC*)&dll_rb_enc_find}, |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
626 {"rb_enc_str_new", (RUBY_PROC*)&dll_rb_enc_str_new}, |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
627 {"rb_sprintf", (RUBY_PROC*)&dll_rb_sprintf}, |
2669 | 628 {"rb_require", (RUBY_PROC*)&dll_rb_require}, |
7237
2a95fa0a07b5
commit https://github.com/vim/vim/commit/9b1067e038d371bd6c51e5da025383761f4921b4
Christian Brabandt <cb@256bit.org>
parents:
7196
diff
changeset
|
629 {"ruby_options", (RUBY_PROC*)&dll_ruby_options}, |
4375 | 630 # endif |
4452 | 631 # if defined(RUBY19_OR_LATER) || defined(RUBY_INIT_STACK) |
632 # ifdef __ia64 | |
633 {"rb_ia64_bsp", (RUBY_PROC*)&dll_rb_ia64_bsp}, | |
634 # endif | |
635 {"ruby_init_stack", (RUBY_PROC*)&dll_ruby_init_stack}, | |
636 # endif | |
5643 | 637 # if defined(USE_RGENGC) && USE_RGENGC |
6485 | 638 # if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER == 21 |
5643 | 639 {"rb_gc_writebarrier_unprotect_promoted", (RUBY_PROC*)&dll_rb_gc_writebarrier_unprotect_promoted}, |
6485 | 640 # else |
641 {"rb_gc_writebarrier_unprotect", (RUBY_PROC*)&dll_rb_gc_writebarrier_unprotect}, | |
642 # endif | |
5643 | 643 # endif |
7 | 644 {"", NULL}, |
645 }; | |
646 | |
647 /* | |
648 * Free ruby.dll | |
649 */ | |
650 static void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
651 end_dynamic_ruby(void) |
7 | 652 { |
653 if (hinstRuby) | |
654 { | |
2589 | 655 close_dll(hinstRuby); |
2621 | 656 hinstRuby = NULL; |
7 | 657 } |
658 } | |
659 | |
660 /* | |
661 * Load library and get all pointers. | |
662 * Parameter 'libname' provides name of DLL. | |
663 * Return OK or FAIL. | |
664 */ | |
665 static int | |
666 ruby_runtime_link_init(char *libname, int verbose) | |
667 { | |
668 int i; | |
669 | |
670 if (hinstRuby) | |
671 return OK; | |
2589 | 672 hinstRuby = load_dll(libname); |
7 | 673 if (!hinstRuby) |
674 { | |
675 if (verbose) | |
676 EMSG2(_(e_loadlib), libname); | |
677 return FAIL; | |
678 } | |
679 | |
680 for (i = 0; ruby_funcname_table[i].ptr; ++i) | |
681 { | |
2589 | 682 if (!(*ruby_funcname_table[i].ptr = symbol_from_dll(hinstRuby, |
7 | 683 ruby_funcname_table[i].name))) |
684 { | |
2589 | 685 close_dll(hinstRuby); |
2621 | 686 hinstRuby = NULL; |
7 | 687 if (verbose) |
688 EMSG2(_(e_loadfunc), ruby_funcname_table[i].name); | |
689 return FAIL; | |
690 } | |
691 } | |
692 return OK; | |
693 } | |
694 | |
695 /* | |
696 * If ruby is enabled (there is installed ruby on Windows system) return TRUE, | |
697 * else FALSE. | |
698 */ | |
699 int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
700 ruby_enabled(int verbose) |
7 | 701 { |
7528
53163e4d9e4f
commit https://github.com/vim/vim/commit/25e4fcde767084d1a79e0926bc301c92987c0cce
Christian Brabandt <cb@256bit.org>
parents:
7364
diff
changeset
|
702 return ruby_runtime_link_init((char *)p_rubydll, verbose) == OK; |
7 | 703 } |
704 #endif /* defined(DYNAMIC_RUBY) || defined(PROTO) */ | |
705 | |
706 void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
707 ruby_end(void) |
7 | 708 { |
709 #ifdef DYNAMIC_RUBY | |
710 end_dynamic_ruby(); | |
711 #endif | |
712 } | |
713 | |
714 void ex_ruby(exarg_T *eap) | |
715 { | |
716 int state; | |
717 char *script = NULL; | |
718 | |
750 | 719 script = (char *)script_get(eap, eap->arg); |
7 | 720 if (!eap->skip && ensure_ruby_initialized()) |
721 { | |
722 if (script == NULL) | |
723 rb_eval_string_protect((char *)eap->arg, &state); | |
724 else | |
725 rb_eval_string_protect(script, &state); | |
726 if (state) | |
727 error_print(state); | |
728 } | |
729 vim_free(script); | |
730 } | |
731 | |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
732 /* |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
733 * In Ruby 1.9 or later, ruby String object has encoding. |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
734 * conversion buffer string of vim to ruby String object using |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
735 * VIM encoding option. |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
736 */ |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
737 static VALUE |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
738 vim_str2rb_enc_str(const char *s) |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
739 { |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
740 #ifdef RUBY19_OR_LATER |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
741 int isnum; |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
742 long lval; |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
743 char_u *sval; |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
744 rb_encoding *enc; |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
745 |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
746 isnum = get_option_value((char_u *)"enc", &lval, &sval, 0); |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
747 if (isnum == 0) |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
748 { |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
749 enc = rb_enc_find((char *)sval); |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
750 vim_free(sval); |
8802
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
751 if (enc) |
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
752 { |
9159
6b003ff07234
commit https://github.com/vim/vim/commit/9b0ac229bcfc91acabd35fc576055a94c1687c32
Christian Brabandt <cb@256bit.org>
parents:
8802
diff
changeset
|
753 return rb_enc_str_new(s, (long)strlen(s), enc); |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
754 } |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
755 } |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
756 #endif |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
757 return rb_str_new2(s); |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
758 } |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
759 |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
760 static VALUE |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
761 eval_enc_string_protect(const char *str, int *state) |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
762 { |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
763 #ifdef RUBY19_OR_LATER |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
764 int isnum; |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
765 long lval; |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
766 char_u *sval; |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
767 rb_encoding *enc; |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
768 VALUE v; |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
769 |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
770 isnum = get_option_value((char_u *)"enc", &lval, &sval, 0); |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
771 if (isnum == 0) |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
772 { |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
773 enc = rb_enc_find((char *)sval); |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
774 vim_free(sval); |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
775 if (enc) |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
776 { |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
777 v = rb_sprintf("#-*- coding:%s -*-\n%s", rb_enc_name(enc), str); |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
778 return rb_eval_string_protect(StringValuePtr(v), state); |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
779 } |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
780 } |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
781 #endif |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
782 return rb_eval_string_protect(str, state); |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
783 } |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
784 |
7 | 785 void ex_rubydo(exarg_T *eap) |
786 { | |
787 int state; | |
788 linenr_T i; | |
10761
721af7a9b4b4
patch 8.0.0270: may get ml_get error when :rubydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
10603
diff
changeset
|
789 buf_T *was_curbuf = curbuf; |
7 | 790 |
791 if (ensure_ruby_initialized()) | |
792 { | |
793 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK) | |
794 return; | |
8802
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
795 for (i = eap->line1; i <= eap->line2; i++) |
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
796 { |
2656 | 797 VALUE line; |
7 | 798 |
10761
721af7a9b4b4
patch 8.0.0270: may get ml_get error when :rubydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
10603
diff
changeset
|
799 if (i > curbuf->b_ml.ml_line_count) |
721af7a9b4b4
patch 8.0.0270: may get ml_get error when :rubydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
10603
diff
changeset
|
800 break; |
2656 | 801 line = vim_str2rb_enc_str((char *)ml_get(i)); |
7 | 802 rb_lastline_set(line); |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
803 eval_enc_string_protect((char *) eap->arg, &state); |
8802
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
804 if (state) |
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
805 { |
7 | 806 error_print(state); |
807 break; | |
808 } | |
10761
721af7a9b4b4
patch 8.0.0270: may get ml_get error when :rubydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
10603
diff
changeset
|
809 if (was_curbuf != curbuf) |
721af7a9b4b4
patch 8.0.0270: may get ml_get error when :rubydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
10603
diff
changeset
|
810 break; |
7 | 811 line = rb_lastline_get(); |
8802
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
812 if (!NIL_P(line)) |
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
813 { |
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
814 if (TYPE(line) != T_STRING) |
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
815 { |
835 | 816 EMSG(_("E265: $_ must be an instance of String")); |
7 | 817 return; |
818 } | |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
819 ml_replace(i, (char_u *) StringValuePtr(line), 1); |
7 | 820 changed(); |
821 #ifdef SYNTAX_HL | |
822 syn_changed(i); /* recompute syntax hl. for this line */ | |
823 #endif | |
824 } | |
825 } | |
826 check_cursor(); | |
827 update_curbuf(NOT_VALID); | |
828 } | |
829 } | |
830 | |
13148
f06a0a75d5b1
patch 8.0.1448: segfault with exception inside :rubyfile command
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
831 VALUE rb_load_wrap(VALUE file_to_load) |
f06a0a75d5b1
patch 8.0.1448: segfault with exception inside :rubyfile command
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
832 { |
f06a0a75d5b1
patch 8.0.1448: segfault with exception inside :rubyfile command
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
833 rb_load(file_to_load, 0); |
f06a0a75d5b1
patch 8.0.1448: segfault with exception inside :rubyfile command
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
834 return Qnil; |
f06a0a75d5b1
patch 8.0.1448: segfault with exception inside :rubyfile command
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
835 } |
f06a0a75d5b1
patch 8.0.1448: segfault with exception inside :rubyfile command
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
836 |
7 | 837 void ex_rubyfile(exarg_T *eap) |
838 { | |
839 int state; | |
840 | |
841 if (ensure_ruby_initialized()) | |
842 { | |
13148
f06a0a75d5b1
patch 8.0.1448: segfault with exception inside :rubyfile command
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
843 VALUE file_to_load = rb_str_new2((const char *)eap->arg); |
f06a0a75d5b1
patch 8.0.1448: segfault with exception inside :rubyfile command
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
844 rb_protect(rb_load_wrap, file_to_load, &state); |
f06a0a75d5b1
patch 8.0.1448: segfault with exception inside :rubyfile command
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
845 if (state) |
f06a0a75d5b1
patch 8.0.1448: segfault with exception inside :rubyfile command
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
846 error_print(state); |
7 | 847 } |
848 } | |
849 | |
850 void ruby_buffer_free(buf_T *buf) | |
851 { | |
502 | 852 if (buf->b_ruby_ref) |
853 { | |
854 rb_hash_aset(objtbl, rb_obj_id((VALUE) buf->b_ruby_ref), Qnil); | |
855 RDATA(buf->b_ruby_ref)->data = NULL; | |
7 | 856 } |
857 } | |
858 | |
859 void ruby_window_free(win_T *win) | |
860 { | |
502 | 861 if (win->w_ruby_ref) |
862 { | |
863 rb_hash_aset(objtbl, rb_obj_id((VALUE) win->w_ruby_ref), Qnil); | |
864 RDATA(win->w_ruby_ref)->data = NULL; | |
7 | 865 } |
866 } | |
867 | |
868 static int ensure_ruby_initialized(void) | |
869 { | |
870 if (!ruby_initialized) | |
871 { | |
872 #ifdef DYNAMIC_RUBY | |
873 if (ruby_enabled(TRUE)) | |
874 { | |
875 #endif | |
2076
1c7a66d820e4
updated for version 7.2.360
Bram Moolenaar <bram@zimbu.org>
parents:
1888
diff
changeset
|
876 #ifdef _WIN32 |
1c7a66d820e4
updated for version 7.2.360
Bram Moolenaar <bram@zimbu.org>
parents:
1888
diff
changeset
|
877 /* suggested by Ariya Mizutani */ |
1c7a66d820e4
updated for version 7.2.360
Bram Moolenaar <bram@zimbu.org>
parents:
1888
diff
changeset
|
878 int argc = 1; |
1c7a66d820e4
updated for version 7.2.360
Bram Moolenaar <bram@zimbu.org>
parents:
1888
diff
changeset
|
879 char *argv[] = {"gvim.exe"}; |
6406 | 880 char **argvp = argv; |
10595
dbaad101b1e1
patch 8.0.0187: cant build with new Ruby version
Christian Brabandt <cb@256bit.org>
parents:
10546
diff
changeset
|
881 # ifdef RUBY19_OR_LATER |
dbaad101b1e1
patch 8.0.0187: cant build with new Ruby version
Christian Brabandt <cb@256bit.org>
parents:
10546
diff
changeset
|
882 ruby_sysinit(&argc, &argvp); |
dbaad101b1e1
patch 8.0.0187: cant build with new Ruby version
Christian Brabandt <cb@256bit.org>
parents:
10546
diff
changeset
|
883 # else |
6406 | 884 NtInitialize(&argc, &argvp); |
10595
dbaad101b1e1
patch 8.0.0187: cant build with new Ruby version
Christian Brabandt <cb@256bit.org>
parents:
10546
diff
changeset
|
885 # endif |
2076
1c7a66d820e4
updated for version 7.2.360
Bram Moolenaar <bram@zimbu.org>
parents:
1888
diff
changeset
|
886 #endif |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2274
diff
changeset
|
887 { |
4452 | 888 #if defined(RUBY19_OR_LATER) || defined(RUBY_INIT_STACK) |
4369 | 889 ruby_init_stack(ruby_stack_start); |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
890 #endif |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2274
diff
changeset
|
891 ruby_init(); |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2274
diff
changeset
|
892 } |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
893 #ifdef RUBY19_OR_LATER |
2669 | 894 { |
895 int dummy_argc = 2; | |
12553
270aec277c81
patch 8.0.1155: Ruby command triggers a warning
Christian Brabandt <cb@256bit.org>
parents:
12517
diff
changeset
|
896 char *dummy_argv[] = {"vim-ruby", "-e_=0"}; |
7237
2a95fa0a07b5
commit https://github.com/vim/vim/commit/9b1067e038d371bd6c51e5da025383761f4921b4
Christian Brabandt <cb@256bit.org>
parents:
7196
diff
changeset
|
897 ruby_options(dummy_argc, dummy_argv); |
2669 | 898 } |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
899 ruby_script("vim-ruby"); |
2669 | 900 #else |
901 ruby_init_loadpath(); | |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
902 #endif |
7 | 903 ruby_io_init(); |
904 ruby_vim_init(); | |
905 ruby_initialized = 1; | |
906 #ifdef DYNAMIC_RUBY | |
907 } | |
908 else | |
909 { | |
910 EMSG(_("E266: Sorry, this command is disabled, the Ruby library could not be loaded.")); | |
911 return 0; | |
912 } | |
913 #endif | |
914 } | |
915 return ruby_initialized; | |
916 } | |
917 | |
918 static void error_print(int state) | |
919 { | |
920 #ifndef DYNAMIC_RUBY | |
2104
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
921 #if !(defined(RUBY_VERSION) && RUBY_VERSION >= 19) \ |
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
922 && !(defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 19) |
7 | 923 RUBYEXTERN VALUE ruby_errinfo; |
924 #endif | |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
925 #endif |
7 | 926 VALUE eclass; |
927 VALUE einfo; | |
928 char buff[BUFSIZ]; | |
929 | |
930 #define TAG_RETURN 0x1 | |
931 #define TAG_BREAK 0x2 | |
932 #define TAG_NEXT 0x3 | |
933 #define TAG_RETRY 0x4 | |
934 #define TAG_REDO 0x5 | |
935 #define TAG_RAISE 0x6 | |
936 #define TAG_THROW 0x7 | |
937 #define TAG_FATAL 0x8 | |
938 #define TAG_MASK 0xf | |
939 | |
8802
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
940 switch (state) |
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
941 { |
7 | 942 case TAG_RETURN: |
835 | 943 EMSG(_("E267: unexpected return")); |
7 | 944 break; |
945 case TAG_NEXT: | |
835 | 946 EMSG(_("E268: unexpected next")); |
7 | 947 break; |
948 case TAG_BREAK: | |
835 | 949 EMSG(_("E269: unexpected break")); |
7 | 950 break; |
951 case TAG_REDO: | |
835 | 952 EMSG(_("E270: unexpected redo")); |
7 | 953 break; |
954 case TAG_RETRY: | |
835 | 955 EMSG(_("E271: retry outside of rescue clause")); |
7 | 956 break; |
957 case TAG_RAISE: | |
958 case TAG_FATAL: | |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
959 #ifdef RUBY19_OR_LATER |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
960 eclass = CLASS_OF(rb_errinfo()); |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
961 einfo = rb_obj_as_string(rb_errinfo()); |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
962 #else |
7 | 963 eclass = CLASS_OF(ruby_errinfo); |
964 einfo = rb_obj_as_string(ruby_errinfo); | |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
965 #endif |
8802
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
966 if (eclass == rb_eRuntimeError && RSTRING_LEN(einfo) == 0) |
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
967 { |
835 | 968 EMSG(_("E272: unhandled exception")); |
7 | 969 } |
8802
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
970 else |
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
971 { |
7 | 972 VALUE epath; |
973 char *p; | |
974 | |
975 epath = rb_class_path(eclass); | |
272 | 976 vim_snprintf(buff, BUFSIZ, "%s: %s", |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
977 RSTRING_PTR(epath), RSTRING_PTR(einfo)); |
7 | 978 p = strchr(buff, '\n'); |
979 if (p) *p = '\0'; | |
980 EMSG(buff); | |
981 } | |
982 break; | |
983 default: | |
272 | 984 vim_snprintf(buff, BUFSIZ, _("E273: unknown longjmp status %d"), state); |
7 | 985 EMSG(buff); |
986 break; | |
987 } | |
988 } | |
989 | |
1888 | 990 static VALUE vim_message(VALUE self UNUSED, VALUE str) |
7 | 991 { |
992 char *buff, *p; | |
993 | |
994 str = rb_obj_as_string(str); | |
2990 | 995 if (RSTRING_LEN(str) > 0) |
996 { | |
997 /* Only do this when the string isn't empty, alloc(0) causes trouble. */ | |
12335
df498e3e34fc
patch 8.0.1047: buffer overflow in Ruby
Christian Brabandt <cb@256bit.org>
parents:
10761
diff
changeset
|
998 buff = ALLOCA_N(char, RSTRING_LEN(str) + 1); |
2990 | 999 strcpy(buff, RSTRING_PTR(str)); |
1000 p = strchr(buff, '\n'); | |
1001 if (p) *p = '\0'; | |
1002 MSG(buff); | |
1003 } | |
1004 else | |
1005 { | |
1006 MSG(""); | |
1007 } | |
7 | 1008 return Qnil; |
1009 } | |
1010 | |
1888 | 1011 static VALUE vim_set_option(VALUE self UNUSED, VALUE str) |
7 | 1012 { |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
1013 do_set((char_u *)StringValuePtr(str), 0); |
7 | 1014 update_screen(NOT_VALID); |
1015 return Qnil; | |
1016 } | |
1017 | |
1888 | 1018 static VALUE vim_command(VALUE self UNUSED, VALUE str) |
7 | 1019 { |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
1020 do_cmdline_cmd((char_u *)StringValuePtr(str)); |
7 | 1021 return Qnil; |
1022 } | |
1023 | |
2090
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1024 #ifdef FEAT_EVAL |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1025 static VALUE vim_to_ruby(typval_T *tv) |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1026 { |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1027 VALUE result = Qnil; |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1028 |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1029 if (tv->v_type == VAR_STRING) |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1030 { |
2121
20d9fc2f13a4
updated for version 7.2.403
Bram Moolenaar <bram@zimbu.org>
parents:
2117
diff
changeset
|
1031 result = rb_str_new2(tv->vval.v_string == NULL |
20d9fc2f13a4
updated for version 7.2.403
Bram Moolenaar <bram@zimbu.org>
parents:
2117
diff
changeset
|
1032 ? "" : (char *)(tv->vval.v_string)); |
2090
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1033 } |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1034 else if (tv->v_type == VAR_NUMBER) |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1035 { |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1036 result = INT2NUM(tv->vval.v_number); |
2090
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1037 } |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1038 # ifdef FEAT_FLOAT |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1039 else if (tv->v_type == VAR_FLOAT) |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1040 { |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1041 result = rb_float_new(tv->vval.v_float); |
2090
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1042 } |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1043 # endif |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1044 else if (tv->v_type == VAR_LIST) |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1045 { |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1046 list_T *list = tv->vval.v_list; |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1047 listitem_T *curr; |
2090
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1048 |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1049 result = rb_ary_new(); |
2090
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1050 |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1051 if (list != NULL) |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1052 { |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1053 for (curr = list->lv_first; curr != NULL; curr = curr->li_next) |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1054 { |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1055 rb_ary_push(result, vim_to_ruby(&curr->li_tv)); |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1056 } |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1057 } |
2090
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1058 } |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1059 else if (tv->v_type == VAR_DICT) |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1060 { |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1061 result = rb_hash_new(); |
2090
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1062 |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1063 if (tv->vval.v_dict != NULL) |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1064 { |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1065 hashtab_T *ht = &tv->vval.v_dict->dv_hashtab; |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1066 long_u todo = ht->ht_used; |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1067 hashitem_T *hi; |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1068 dictitem_T *di; |
2090
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1069 |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1070 for (hi = ht->ht_array; todo > 0; ++hi) |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1071 { |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1072 if (!HASHITEM_EMPTY(hi)) |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1073 { |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1074 --todo; |
2090
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1075 |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1076 di = dict_lookup(hi); |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1077 rb_hash_aset(result, rb_str_new2((char *)hi->hi_key), |
2090
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1078 vim_to_ruby(&di->di_tv)); |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1079 } |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1080 } |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1081 } |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
1082 } |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
1083 else if (tv->v_type == VAR_SPECIAL) |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
1084 { |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
1085 if (tv->vval.v_number <= VVAL_TRUE) |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
1086 result = INT2NUM(tv->vval.v_number); |
2090
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1087 } /* else return Qnil; */ |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1088 |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1089 return result; |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1090 } |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1091 #endif |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1092 |
1888 | 1093 static VALUE vim_evaluate(VALUE self UNUSED, VALUE str) |
7 | 1094 { |
1095 #ifdef FEAT_EVAL | |
2090
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1096 typval_T *tv; |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1097 VALUE result; |
7 | 1098 |
2090
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1099 tv = eval_expr((char_u *)StringValuePtr(str), NULL); |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1100 if (tv == NULL) |
7 | 1101 { |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
1102 return Qnil; |
7 | 1103 } |
2090
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1104 result = vim_to_ruby(tv); |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1105 |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1106 free_tv(tv); |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1107 |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1108 return result; |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1109 #else |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
1110 return Qnil; |
7 | 1111 #endif |
1112 } | |
1113 | |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1114 #ifdef USE_TYPEDDATA |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1115 static size_t buffer_dsize(const void *buf); |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1116 |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1117 static const rb_data_type_t buffer_type = { |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1118 "vim_buffer", |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1119 {0, 0, buffer_dsize, {0, 0}}, |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1120 0, 0, |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1121 # ifdef RUBY_TYPED_FREE_IMMEDIATELY |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1122 0, |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1123 # endif |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1124 }; |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1125 |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1126 static size_t buffer_dsize(const void *buf UNUSED) |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1127 { |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1128 return sizeof(buf_T); |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1129 } |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1130 #endif |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1131 |
7 | 1132 static VALUE buffer_new(buf_T *buf) |
1133 { | |
502 | 1134 if (buf->b_ruby_ref) |
1135 { | |
1136 return (VALUE) buf->b_ruby_ref; | |
7 | 1137 } |
502 | 1138 else |
1139 { | |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1140 #ifdef USE_TYPEDDATA |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1141 VALUE obj = TypedData_Wrap_Struct(cBuffer, &buffer_type, buf); |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1142 #else |
7 | 1143 VALUE obj = Data_Wrap_Struct(cBuffer, 0, 0, buf); |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1144 #endif |
502 | 1145 buf->b_ruby_ref = (void *) obj; |
7 | 1146 rb_hash_aset(objtbl, rb_obj_id(obj), obj); |
1147 return obj; | |
1148 } | |
1149 } | |
1150 | |
1151 static buf_T *get_buf(VALUE obj) | |
1152 { | |
1153 buf_T *buf; | |
1154 | |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1155 #ifdef USE_TYPEDDATA |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1156 TypedData_Get_Struct(obj, buf_T, &buffer_type, buf); |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1157 #else |
7 | 1158 Data_Get_Struct(obj, buf_T, buf); |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1159 #endif |
7 | 1160 if (buf == NULL) |
1161 rb_raise(eDeletedBufferError, "attempt to refer to deleted buffer"); | |
1162 return buf; | |
1163 } | |
1164 | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
1165 static VALUE buffer_s_current(void) |
7 | 1166 { |
1167 return buffer_new(curbuf); | |
1168 } | |
1169 | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
1170 static VALUE buffer_s_count(void) |
7 | 1171 { |
1172 buf_T *b; | |
1173 int n = 0; | |
1174 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9293
diff
changeset
|
1175 FOR_ALL_BUFFERS(b) |
779 | 1176 { |
856 | 1177 /* Deleted buffers should not be counted |
1178 * SegPhault - 01/07/05 */ | |
1179 if (b->b_p_bl) | |
779 | 1180 n++; |
1181 } | |
1182 | |
7 | 1183 return INT2NUM(n); |
1184 } | |
1185 | |
1888 | 1186 static VALUE buffer_s_aref(VALUE self UNUSED, VALUE num) |
7 | 1187 { |
1188 buf_T *b; | |
1189 int n = NUM2INT(num); | |
1190 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9293
diff
changeset
|
1191 FOR_ALL_BUFFERS(b) |
779 | 1192 { |
856 | 1193 /* Deleted buffers should not be counted |
1194 * SegPhault - 01/07/05 */ | |
1195 if (!b->b_p_bl) | |
779 | 1196 continue; |
1197 | |
856 | 1198 if (n == 0) |
7 | 1199 return buffer_new(b); |
779 | 1200 |
856 | 1201 n--; |
7 | 1202 } |
1203 return Qnil; | |
1204 } | |
1205 | |
1206 static VALUE buffer_name(VALUE self) | |
1207 { | |
1208 buf_T *buf = get_buf(self); | |
1209 | |
750 | 1210 return buf->b_ffname ? rb_str_new2((char *)buf->b_ffname) : Qnil; |
7 | 1211 } |
1212 | |
1213 static VALUE buffer_number(VALUE self) | |
1214 { | |
1215 buf_T *buf = get_buf(self); | |
1216 | |
1217 return INT2NUM(buf->b_fnum); | |
1218 } | |
1219 | |
1220 static VALUE buffer_count(VALUE self) | |
1221 { | |
1222 buf_T *buf = get_buf(self); | |
1223 | |
1224 return INT2NUM(buf->b_ml.ml_line_count); | |
1225 } | |
1226 | |
779 | 1227 static VALUE get_buffer_line(buf_T *buf, linenr_T n) |
7 | 1228 { |
2637 | 1229 if (n <= 0 || n > buf->b_ml.ml_line_count) |
1230 rb_raise(rb_eIndexError, "line number %ld out of range", (long)n); | |
1231 return vim_str2rb_enc_str((char *)ml_get_buf(buf, n, FALSE)); | |
7 | 1232 } |
1233 | |
779 | 1234 static VALUE buffer_aref(VALUE self, VALUE num) |
7 | 1235 { |
1236 buf_T *buf = get_buf(self); | |
779 | 1237 |
1238 if (buf != NULL) | |
1239 return get_buffer_line(buf, (linenr_T)NUM2LONG(num)); | |
1240 return Qnil; /* For stop warning */ | |
1241 } | |
1242 | |
1243 static VALUE set_buffer_line(buf_T *buf, linenr_T n, VALUE str) | |
1244 { | |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
1245 char *line = StringValuePtr(str); |
896 | 1246 aco_save_T aco; |
7 | 1247 |
896 | 1248 if (n > 0 && n <= buf->b_ml.ml_line_count && line != NULL) |
1249 { | |
1250 /* set curwin/curbuf for "buf" and save some things */ | |
1251 aucmd_prepbuf(&aco, buf); | |
1252 | |
8802
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1253 if (u_savesub(n) == OK) |
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1254 { |
779 | 1255 ml_replace(n, (char_u *)line, TRUE); |
7 | 1256 changed(); |
1257 #ifdef SYNTAX_HL | |
1258 syn_changed(n); /* recompute syntax hl. for this line */ | |
1259 #endif | |
1260 } | |
896 | 1261 |
1262 /* restore curwin/curbuf and a few other things */ | |
1263 aucmd_restbuf(&aco); | |
1264 /* Careful: autocommands may have made "buf" invalid! */ | |
934 | 1265 |
7 | 1266 update_curbuf(NOT_VALID); |
1267 } | |
896 | 1268 else |
1269 { | |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
1270 rb_raise(rb_eIndexError, "line number %ld out of range", (long)n); |
7 | 1271 } |
1272 return str; | |
1273 } | |
1274 | |
779 | 1275 static VALUE buffer_aset(VALUE self, VALUE num, VALUE str) |
1276 { | |
1277 buf_T *buf = get_buf(self); | |
1278 | |
1279 if (buf != NULL) | |
1280 return set_buffer_line(buf, (linenr_T)NUM2LONG(num), str); | |
1281 return str; | |
1282 } | |
1283 | |
7 | 1284 static VALUE buffer_delete(VALUE self, VALUE num) |
1285 { | |
896 | 1286 buf_T *buf = get_buf(self); |
1287 long n = NUM2LONG(num); | |
1288 aco_save_T aco; | |
7 | 1289 |
896 | 1290 if (n > 0 && n <= buf->b_ml.ml_line_count) |
1291 { | |
1292 /* set curwin/curbuf for "buf" and save some things */ | |
1293 aucmd_prepbuf(&aco, buf); | |
1294 | |
8802
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1295 if (u_savedel(n, 1) == OK) |
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1296 { |
7 | 1297 ml_delete(n, 0); |
779 | 1298 |
856 | 1299 /* Changes to non-active buffers should properly refresh |
1300 * SegPhault - 01/09/05 */ | |
1301 deleted_lines_mark(n, 1L); | |
779 | 1302 |
7 | 1303 changed(); |
1304 } | |
896 | 1305 |
1306 /* restore curwin/curbuf and a few other things */ | |
1307 aucmd_restbuf(&aco); | |
1308 /* Careful: autocommands may have made "buf" invalid! */ | |
934 | 1309 |
7 | 1310 update_curbuf(NOT_VALID); |
1311 } | |
896 | 1312 else |
1313 { | |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
1314 rb_raise(rb_eIndexError, "line number %ld out of range", n); |
7 | 1315 } |
1316 return Qnil; | |
1317 } | |
1318 | |
1319 static VALUE buffer_append(VALUE self, VALUE num, VALUE str) | |
1320 { | |
896 | 1321 buf_T *buf = get_buf(self); |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
1322 char *line = StringValuePtr(str); |
896 | 1323 long n = NUM2LONG(num); |
1324 aco_save_T aco; | |
7 | 1325 |
2637 | 1326 if (line == NULL) |
1327 { | |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
1328 rb_raise(rb_eIndexError, "NULL line"); |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
1329 } |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
1330 else if (n >= 0 && n <= buf->b_ml.ml_line_count) |
896 | 1331 { |
1332 /* set curwin/curbuf for "buf" and save some things */ | |
1333 aucmd_prepbuf(&aco, buf); | |
1334 | |
8802
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1335 if (u_inssub(n + 1) == OK) |
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1336 { |
7 | 1337 ml_append(n, (char_u *) line, (colnr_T) 0, FALSE); |
779 | 1338 |
856 | 1339 /* Changes to non-active buffers should properly refresh screen |
1340 * SegPhault - 12/20/04 */ | |
1341 appended_lines_mark(n, 1L); | |
779 | 1342 |
856 | 1343 changed(); |
7 | 1344 } |
896 | 1345 |
1346 /* restore curwin/curbuf and a few other things */ | |
1347 aucmd_restbuf(&aco); | |
1348 /* Careful: autocommands may have made "buf" invalid! */ | |
934 | 1349 |
7 | 1350 update_curbuf(NOT_VALID); |
1351 } | |
2637 | 1352 else |
1353 { | |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
1354 rb_raise(rb_eIndexError, "line number %ld out of range", n); |
7 | 1355 } |
1356 return str; | |
1357 } | |
1358 | |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1359 #ifdef USE_TYPEDDATA |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1360 static size_t window_dsize(const void *buf); |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1361 |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1362 static const rb_data_type_t window_type = { |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1363 "vim_window", |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1364 {0, 0, window_dsize, {0, 0}}, |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1365 0, 0, |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1366 # ifdef RUBY_TYPED_FREE_IMMEDIATELY |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1367 0, |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1368 # endif |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1369 }; |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1370 |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1371 static size_t window_dsize(const void *win UNUSED) |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1372 { |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1373 return sizeof(win_T); |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1374 } |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1375 #endif |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1376 |
7 | 1377 static VALUE window_new(win_T *win) |
1378 { | |
502 | 1379 if (win->w_ruby_ref) |
1380 { | |
1381 return (VALUE) win->w_ruby_ref; | |
7 | 1382 } |
502 | 1383 else |
1384 { | |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1385 #ifdef USE_TYPEDDATA |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1386 VALUE obj = TypedData_Wrap_Struct(cVimWindow, &window_type, win); |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1387 #else |
7 | 1388 VALUE obj = Data_Wrap_Struct(cVimWindow, 0, 0, win); |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1389 #endif |
502 | 1390 win->w_ruby_ref = (void *) obj; |
7 | 1391 rb_hash_aset(objtbl, rb_obj_id(obj), obj); |
1392 return obj; | |
1393 } | |
1394 } | |
1395 | |
1396 static win_T *get_win(VALUE obj) | |
1397 { | |
1398 win_T *win; | |
1399 | |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1400 #ifdef USE_TYPEDDATA |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1401 TypedData_Get_Struct(obj, win_T, &window_type, win); |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1402 #else |
7 | 1403 Data_Get_Struct(obj, win_T, win); |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1404 #endif |
7 | 1405 if (win == NULL) |
1406 rb_raise(eDeletedWindowError, "attempt to refer to deleted window"); | |
1407 return win; | |
1408 } | |
1409 | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
1410 static VALUE window_s_current(void) |
7 | 1411 { |
1412 return window_new(curwin); | |
1413 } | |
1414 | |
779 | 1415 /* |
1416 * Added line manipulation functions | |
1417 * SegPhault - 03/07/05 | |
1418 */ | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
1419 static VALUE line_s_current(void) |
779 | 1420 { |
1421 return get_buffer_line(curbuf, curwin->w_cursor.lnum); | |
1422 } | |
1423 | |
1888 | 1424 static VALUE set_current_line(VALUE self UNUSED, VALUE str) |
779 | 1425 { |
1426 return set_buffer_line(curbuf, curwin->w_cursor.lnum, str); | |
1427 } | |
1428 | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
1429 static VALUE current_line_number(void) |
779 | 1430 { |
1431 return INT2FIX((int)curwin->w_cursor.lnum); | |
1432 } | |
1433 | |
1434 | |
1435 | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
1436 static VALUE window_s_count(void) |
7 | 1437 { |
1438 win_T *w; | |
1439 int n = 0; | |
1440 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9293
diff
changeset
|
1441 FOR_ALL_WINDOWS(w) |
7 | 1442 n++; |
1443 return INT2NUM(n); | |
1444 } | |
1445 | |
1888 | 1446 static VALUE window_s_aref(VALUE self UNUSED, VALUE num) |
7 | 1447 { |
1448 win_T *w; | |
1449 int n = NUM2INT(num); | |
1450 | |
1451 for (w = firstwin; w != NULL; w = w->w_next, --n) | |
1452 if (n == 0) | |
1453 return window_new(w); | |
1454 return Qnil; | |
1455 } | |
1456 | |
1457 static VALUE window_buffer(VALUE self) | |
1458 { | |
1459 win_T *win = get_win(self); | |
1460 | |
1461 return buffer_new(win->w_buffer); | |
1462 } | |
1463 | |
1464 static VALUE window_height(VALUE self) | |
1465 { | |
1466 win_T *win = get_win(self); | |
1467 | |
1468 return INT2NUM(win->w_height); | |
1469 } | |
1470 | |
1471 static VALUE window_set_height(VALUE self, VALUE height) | |
1472 { | |
1473 win_T *win = get_win(self); | |
1474 win_T *savewin = curwin; | |
1475 | |
1476 curwin = win; | |
1477 win_setheight(NUM2INT(height)); | |
1478 curwin = savewin; | |
1479 return height; | |
1480 } | |
1481 | |
4135 | 1482 static VALUE window_width(VALUE self UNUSED) |
501 | 1483 { |
12517
1b65cbe1578d
patch 8.0.1137: cannot build with Ruby
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
1484 return INT2NUM(get_win(self)->w_width); |
501 | 1485 } |
1486 | |
4135 | 1487 static VALUE window_set_width(VALUE self UNUSED, VALUE width) |
501 | 1488 { |
1489 win_T *win = get_win(self); | |
1490 win_T *savewin = curwin; | |
1491 | |
1492 curwin = win; | |
1493 win_setwidth(NUM2INT(width)); | |
1494 curwin = savewin; | |
1495 return width; | |
1496 } | |
1497 | |
7 | 1498 static VALUE window_cursor(VALUE self) |
1499 { | |
1500 win_T *win = get_win(self); | |
1501 | |
1502 return rb_assoc_new(INT2NUM(win->w_cursor.lnum), INT2NUM(win->w_cursor.col)); | |
1503 } | |
1504 | |
1505 static VALUE window_set_cursor(VALUE self, VALUE pos) | |
1506 { | |
1507 VALUE lnum, col; | |
1508 win_T *win = get_win(self); | |
1509 | |
1510 Check_Type(pos, T_ARRAY); | |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
1511 if (RARRAY_LEN(pos) != 2) |
7 | 1512 rb_raise(rb_eArgError, "array length must be 2"); |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
1513 lnum = RARRAY_PTR(pos)[0]; |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
1514 col = RARRAY_PTR(pos)[1]; |
7 | 1515 win->w_cursor.lnum = NUM2LONG(lnum); |
1516 win->w_cursor.col = NUM2UINT(col); | |
1517 check_cursor(); /* put cursor on an existing line */ | |
1518 update_screen(NOT_VALID); | |
1519 return Qnil; | |
1520 } | |
1521 | |
3478 | 1522 static VALUE f_nop(VALUE self UNUSED) |
3474 | 1523 { |
1524 return Qnil; | |
1525 } | |
1526 | |
1888 | 1527 static VALUE f_p(int argc, VALUE *argv, VALUE self UNUSED) |
7 | 1528 { |
1529 int i; | |
1530 VALUE str = rb_str_new("", 0); | |
1531 | |
8802
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1532 for (i = 0; i < argc; i++) |
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1533 { |
7 | 1534 if (i > 0) rb_str_cat(str, ", ", 2); |
1535 rb_str_concat(str, rb_inspect(argv[i])); | |
1536 } | |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
1537 MSG(RSTRING_PTR(str)); |
7 | 1538 return Qnil; |
1539 } | |
1540 | |
1541 static void ruby_io_init(void) | |
1542 { | |
1543 #ifndef DYNAMIC_RUBY | |
1544 RUBYEXTERN VALUE rb_stdout; | |
1545 #endif | |
1546 | |
1547 rb_stdout = rb_obj_alloc(rb_cObject); | |
1548 rb_define_singleton_method(rb_stdout, "write", vim_message, 1); | |
3474 | 1549 rb_define_singleton_method(rb_stdout, "flush", f_nop, 0); |
7 | 1550 rb_define_global_function("p", f_p, -1); |
1551 } | |
1552 | |
1553 static void ruby_vim_init(void) | |
1554 { | |
1555 objtbl = rb_hash_new(); | |
1556 rb_global_variable(&objtbl); | |
1557 | |
1188 | 1558 /* The Vim module used to be called "VIM", but "Vim" is better. Make an |
4352 | 1559 * alias "VIM" for backwards compatibility. */ |
1188 | 1560 mVIM = rb_define_module("Vim"); |
1561 rb_define_const(rb_cObject, "VIM", mVIM); | |
7 | 1562 rb_define_const(mVIM, "VERSION_MAJOR", INT2NUM(VIM_VERSION_MAJOR)); |
1563 rb_define_const(mVIM, "VERSION_MINOR", INT2NUM(VIM_VERSION_MINOR)); | |
1564 rb_define_const(mVIM, "VERSION_BUILD", INT2NUM(VIM_VERSION_BUILD)); | |
1565 rb_define_const(mVIM, "VERSION_PATCHLEVEL", INT2NUM(VIM_VERSION_PATCHLEVEL)); | |
1566 rb_define_const(mVIM, "VERSION_SHORT", rb_str_new2(VIM_VERSION_SHORT)); | |
1567 rb_define_const(mVIM, "VERSION_MEDIUM", rb_str_new2(VIM_VERSION_MEDIUM)); | |
1568 rb_define_const(mVIM, "VERSION_LONG", rb_str_new2(VIM_VERSION_LONG)); | |
1569 rb_define_const(mVIM, "VERSION_LONG_DATE", rb_str_new2(VIM_VERSION_LONG_DATE)); | |
1570 rb_define_module_function(mVIM, "message", vim_message, 1); | |
1571 rb_define_module_function(mVIM, "set_option", vim_set_option, 1); | |
1572 rb_define_module_function(mVIM, "command", vim_command, 1); | |
1573 rb_define_module_function(mVIM, "evaluate", vim_evaluate, 1); | |
1574 | |
1575 eDeletedBufferError = rb_define_class_under(mVIM, "DeletedBufferError", | |
1576 rb_eStandardError); | |
1577 eDeletedWindowError = rb_define_class_under(mVIM, "DeletedWindowError", | |
1578 rb_eStandardError); | |
1579 | |
1580 cBuffer = rb_define_class_under(mVIM, "Buffer", rb_cObject); | |
1581 rb_define_singleton_method(cBuffer, "current", buffer_s_current, 0); | |
1582 rb_define_singleton_method(cBuffer, "count", buffer_s_count, 0); | |
1583 rb_define_singleton_method(cBuffer, "[]", buffer_s_aref, 1); | |
1584 rb_define_method(cBuffer, "name", buffer_name, 0); | |
1585 rb_define_method(cBuffer, "number", buffer_number, 0); | |
1586 rb_define_method(cBuffer, "count", buffer_count, 0); | |
1587 rb_define_method(cBuffer, "length", buffer_count, 0); | |
1588 rb_define_method(cBuffer, "[]", buffer_aref, 1); | |
1589 rb_define_method(cBuffer, "[]=", buffer_aset, 2); | |
1590 rb_define_method(cBuffer, "delete", buffer_delete, 1); | |
1591 rb_define_method(cBuffer, "append", buffer_append, 2); | |
1592 | |
779 | 1593 /* Added line manipulation functions |
1594 * SegPhault - 03/07/05 */ | |
1595 rb_define_method(cBuffer, "line_number", current_line_number, 0); | |
1596 rb_define_method(cBuffer, "line", line_s_current, 0); | |
1597 rb_define_method(cBuffer, "line=", set_current_line, 1); | |
1598 | |
1599 | |
7 | 1600 cVimWindow = rb_define_class_under(mVIM, "Window", rb_cObject); |
1601 rb_define_singleton_method(cVimWindow, "current", window_s_current, 0); | |
1602 rb_define_singleton_method(cVimWindow, "count", window_s_count, 0); | |
1603 rb_define_singleton_method(cVimWindow, "[]", window_s_aref, 1); | |
1604 rb_define_method(cVimWindow, "buffer", window_buffer, 0); | |
1605 rb_define_method(cVimWindow, "height", window_height, 0); | |
1606 rb_define_method(cVimWindow, "height=", window_set_height, 1); | |
501 | 1607 rb_define_method(cVimWindow, "width", window_width, 0); |
1608 rb_define_method(cVimWindow, "width=", window_set_width, 1); | |
7 | 1609 rb_define_method(cVimWindow, "cursor", window_cursor, 0); |
1610 rb_define_method(cVimWindow, "cursor=", window_set_cursor, 1); | |
1611 | |
1612 rb_define_virtual_variable("$curbuf", buffer_s_current, 0); | |
1613 rb_define_virtual_variable("$curwin", window_s_current, 0); | |
1614 } | |
4369 | 1615 |
1616 void vim_ruby_init(void *stack_start) | |
1617 { | |
1618 /* should get machine stack start address early in main function */ | |
1619 ruby_stack_start = stack_start; | |
1620 } |