Mercurial > vim
annotate src/if_tcl.c @ 14163:99a96be12254 v8.1.0099
patch 8.1.0099: exclamation mark in error message not needed
commit https://github.com/vim/vim/commit/3c867daaf09e8ac6ce4b9d43d6fbbfdd7689702d
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jun 23 14:34:28 2018 +0200
patch 8.1.0099: exclamation mark in error message not needed
Problem: Exclamation mark in error message not needed.
Solution: Remove the exclamation mark.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 23 Jun 2018 14:45:05 +0200 |
parents | 68d7bc045dbe |
children | 534836186b15 |
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 | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * Tcl extensions by Ingo Wilken <Ingo.Wilken@informatik.uni-oldenburg.de> | |
12 * Last modification: Wed May 10 21:28:44 CEST 2000 | |
13 * Requires Tcl 8.0 or higher. | |
14 * | |
15 * Variables: | |
16 * ::vim::current(buffer) # Name of buffer command for current buffer. | |
17 * ::vim::current(window) # Name of window command for current window. | |
18 * ::vim::range(start) # Start of current range (line number). | |
19 * ::vim::range(end) # End of current range (line number). | |
20 * ::vim::lbase # Start of line/column numbers (1 or 0). | |
21 * | |
22 * Commands: | |
23 * ::vim::command {cmd} # Execute ex command {cmd}. | |
24 * ::vim::option {opt} [val] # Get/Set option {opt}. | |
25 * ::vim::expr {expr} # Evaluate {expr} using vim's evaluator. | |
26 * ::vim::beep # Guess. | |
27 * | |
28 * set buf [::vim::buffer {n}] # Create Tcl command for buffer N. | |
29 * set bl [::vim::buffer list] # Get list of Tcl commands of all buffers. | |
30 * ::vim::buffer exists {n} # True if buffer {n} exists. | |
31 * | |
32 * set wl [::vim::window list] # Get list of Tcl commands of all windows. | |
33 * | |
34 * set n [$win height] # Report window height. | |
35 * $win height {n} # Set window height to {n}. | |
36 * array set pos [$win cursor] # Get cursor position. | |
37 * $win cursor {row} {col} # Set cursor position. | |
38 * $win cursor pos # Set cursor position from array var "pos" | |
39 * $win delcmd {cmd} # Register callback command for closed window. | |
40 * $win option {opt} [val] # Get/Set vim option in context of $win. | |
41 * $win command {cmd} # Execute ex command in context of $win. | |
42 * $win expr {expr} # Evaluate vim expression in context of $win. | |
43 * set buf [$win buffer] # Create Tcl command for window's buffer. | |
44 * | |
45 * $buf name # Reports file name in buffer. | |
46 * $buf number # Reports buffer number. | |
47 * set l [$buf get {n}] # Get buffer line {n} as a string. | |
48 * set L [$buf get {n} {m}] # Get lines {n} through {m} as a list. | |
49 * $buf count # Reports number of lines in buffer. | |
50 * $buf last # Reports number of last line in buffer. | |
51 * $buf delete {n} # Delete line {n}. | |
52 * $buf delete {n} {m} # Delete lines {n} through {m}. | |
53 * $buf set {n} {l} # Set line {n} to string {l}. | |
54 * $buf set {n} {m} {L} # Set lines {n} through {m} from list {L}. | |
55 * # Delete/inserts lines as appropriate. | |
56 * $buf option {opt} [val] # Get/Set vim option in context of $buf. | |
57 * $buf command {cmd} # Execute ex command in context of $buf | |
58 * $buf expr {cmd} # Evaluate vim expression in context of $buf. | |
59 * array set pos [$buf mark {m}] # Get position of mark. | |
60 * $buf append {n} {str} # Append string {str} to buffer,after line {n}. | |
61 * $buf insert {n} {str} # Insert string {str} in buffer as line {n}. | |
62 * $buf delcmd {cmd} # Register callback command for deleted buffer. | |
63 * set wl [$buf windows] # Get list of Tcl commands for all windows of | |
64 * # this buffer. | |
65 TODO: | |
66 * ::vim::buffer new # create new buffer + Tcl command | |
67 */ | |
68 | |
69 #include "vim.h" | |
70 #undef EXTERN /* tcl.h defines it too */ | |
71 | |
72 #ifdef DYNAMIC_TCL | |
73 # define USE_TCL_STUBS /* use tcl's stubs mechanism */ | |
74 #endif | |
75 | |
76 #include <tcl.h> | |
77 #include <string.h> | |
78 | |
79 typedef struct | |
80 { | |
81 Tcl_Interp *interp; | |
3369 | 82 int exitvalue; |
7 | 83 int range_start, range_end; |
84 int lbase; | |
85 char *curbuf, *curwin; | |
86 } tcl_info; | |
87 | |
3369 | 88 static tcl_info tclinfo = { NULL, 0, 0, 0, 0, NULL, NULL }; |
7 | 89 |
90 #define VAR_RANGE1 "::vim::range(start)" | |
91 #define VAR_RANGE2 "::vim::range(begin)" | |
92 #define VAR_RANGE3 "::vim::range(end)" | |
93 #define VAR_CURBUF "::vim::current(buffer)" | |
94 #define VAR_CURWIN "::vim::current(window)" | |
95 #define VAR_LBASE "::vim::lbase" | |
96 #define VAR_CURLINE "line" | |
97 #define VAR_CURLNUM "lnum" | |
98 #define VARNAME_SIZE 64 | |
99 | |
100 #define row2tcl(x) ((x) - (tclinfo.lbase==0)) | |
101 #define row2vim(x) ((x) + (tclinfo.lbase==0)) | |
102 #define col2tcl(x) ((x) + (tclinfo.lbase!=0)) | |
103 #define col2vim(x) ((x) - (tclinfo.lbase!=0)) | |
104 | |
105 | |
106 #define VIMOUT ((ClientData)1) | |
107 #define VIMERR ((ClientData)2) | |
108 | |
135 | 109 /* This appears to be new in Tcl 8.4. */ |
110 #ifndef CONST84 | |
111 # define CONST84 | |
112 #endif | |
113 | |
7 | 114 /* |
115 * List of Tcl interpreters who reference a vim window or buffer. | |
502 | 116 * Each buffer and window has it's own list in the w_tcl_ref or b_tcl_ref |
117 * struct member. We need this because Tcl can create sub-interpreters with | |
118 * the "interp" command, and each interpreter can reference all windows and | |
119 * buffers. | |
7 | 120 */ |
121 struct ref | |
122 { | |
123 struct ref *next; | |
124 | |
125 Tcl_Interp *interp; | |
126 Tcl_Command cmd; /* Tcl command that represents this object */ | |
127 Tcl_Obj *delcmd; /* Tcl command to call when object is being del. */ | |
128 void *vimobj; /* Vim window or buffer (win_T* or buf_T*) */ | |
129 }; | |
130 static char * tclgetbuffer _ANSI_ARGS_((Tcl_Interp *interp, buf_T *buf)); | |
131 static char * tclgetwindow _ANSI_ARGS_((Tcl_Interp *interp, win_T *win)); | |
132 static int tclsetdelcmd _ANSI_ARGS_((Tcl_Interp *interp, struct ref *reflist, void *vimobj, Tcl_Obj *delcmd)); | |
133 static int tclgetlinenum _ANSI_ARGS_ ((Tcl_Interp *interp, Tcl_Obj *obj, int *valueP, buf_T *buf)); | |
134 static win_T *tclfindwin _ANSI_ARGS_ ((buf_T *buf)); | |
135 static int tcldoexcommand _ANSI_ARGS_ ((Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[], int objn)); | |
136 static int tclsetoption _ANSI_ARGS_ ((Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[], int objn)); | |
137 static int tclvimexpr _ANSI_ARGS_ ((Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[], int objn)); | |
138 static void tcldelthisinterp _ANSI_ARGS_ ((void)); | |
139 | |
140 static int vimerror _ANSI_ARGS_((Tcl_Interp *interp)); | |
141 static void tclmsg _ANSI_ARGS_((char *text)); | |
142 static void tclerrmsg _ANSI_ARGS_((char *text)); | |
143 static void tclupdatevars _ANSI_ARGS_((void)); | |
144 | |
145 static struct ref refsdeleted; /* dummy object for deleted ref list */ | |
146 | |
147 /***************************************************************************** | |
148 * TCL interface manager | |
149 ****************************************************************************/ | |
150 | |
151 #if defined(DYNAMIC_TCL) || defined(PROTO) | |
152 # ifndef DYNAMIC_TCL_DLL | |
153 # define DYNAMIC_TCL_DLL "tcl83.dll" | |
154 # endif | |
155 # ifndef DYNAMIC_TCL_VER | |
156 # define DYNAMIC_TCL_VER "8.3" | |
157 # endif | |
158 | |
159 # ifndef DYNAMIC_TCL /* Just generating prototypes */ | |
160 typedef int HANDLE; | |
161 # endif | |
162 | |
7538
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
163 # ifndef WIN3264 |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
164 # include <dlfcn.h> |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
165 # define HANDLE void* |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
166 # define TCL_PROC void* |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
167 # define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL) |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
168 # define symbol_from_dll dlsym |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
169 # define close_dll dlclose |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
170 # else |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
171 # define TCL_PROC FARPROC |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
172 # define load_dll vimLoadLib |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
173 # define symbol_from_dll GetProcAddress |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
174 # define close_dll FreeLibrary |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
175 # endif |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
176 |
7 | 177 /* |
1890 | 178 * Declare HANDLE for tcl.dll and function pointers. |
7 | 179 */ |
180 static HANDLE hTclLib = NULL; | |
181 Tcl_Interp* (*dll_Tcl_CreateInterp)(); | |
5390 | 182 void (*dll_Tcl_FindExecutable)(const void *); |
7 | 183 |
184 /* | |
185 * Table of name to function pointer of tcl. | |
186 */ | |
187 static struct { | |
188 char* name; | |
189 TCL_PROC* ptr; | |
190 } tcl_funcname_table[] = { | |
191 {"Tcl_CreateInterp", (TCL_PROC*)&dll_Tcl_CreateInterp}, | |
5390 | 192 {"Tcl_FindExecutable", (TCL_PROC*)&dll_Tcl_FindExecutable}, |
7 | 193 {NULL, NULL}, |
194 }; | |
195 | |
196 /* | |
197 * Make all runtime-links of tcl. | |
198 * | |
199 * 1. Get module handle using LoadLibraryEx. | |
1890 | 200 * 2. Get pointer to tcl function by GetProcAddress. |
7 | 201 * 3. Repeat 2, until get all functions will be used. |
202 * | |
203 * Parameter 'libname' provides name of DLL. | |
204 * Return OK or FAIL. | |
205 */ | |
206 static int | |
207 tcl_runtime_link_init(char *libname, int verbose) | |
208 { | |
209 int i; | |
210 | |
211 if (hTclLib) | |
212 return OK; | |
7538
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
213 if (!(hTclLib = load_dll(libname))) |
7 | 214 { |
215 if (verbose) | |
216 EMSG2(_(e_loadlib), libname); | |
217 return FAIL; | |
218 } | |
219 for (i = 0; tcl_funcname_table[i].ptr; ++i) | |
220 { | |
7538
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
221 if (!(*tcl_funcname_table[i].ptr = symbol_from_dll(hTclLib, |
7 | 222 tcl_funcname_table[i].name))) |
223 { | |
7538
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
224 close_dll(hTclLib); |
7 | 225 hTclLib = NULL; |
226 if (verbose) | |
227 EMSG2(_(e_loadfunc), tcl_funcname_table[i].name); | |
228 return FAIL; | |
229 } | |
230 } | |
231 return OK; | |
232 } | |
233 #endif /* defined(DYNAMIC_TCL) || defined(PROTO) */ | |
234 | |
235 #ifdef DYNAMIC_TCL | |
236 static char *find_executable_arg = NULL; | |
237 #endif | |
238 | |
239 void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
240 vim_tcl_init(char *arg) |
7 | 241 { |
242 #ifndef DYNAMIC_TCL | |
243 Tcl_FindExecutable(arg); | |
244 #else | |
245 find_executable_arg = arg; | |
246 #endif | |
247 } | |
248 | |
249 #if defined(DYNAMIC_TCL) || defined(PROTO) | |
250 | |
251 static int stubs_initialized = FALSE; | |
252 | |
253 /* | |
254 * Return TRUE if the TCL interface can be used. | |
255 */ | |
256 int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
257 tcl_enabled(int verbose) |
7 | 258 { |
259 if (!stubs_initialized && find_executable_arg != NULL | |
7538
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
260 && tcl_runtime_link_init((char *)p_tcldll, verbose) == OK) |
7 | 261 { |
262 Tcl_Interp *interp; | |
263 | |
5390 | 264 dll_Tcl_FindExecutable(find_executable_arg); |
265 | |
7538
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
266 if ((interp = dll_Tcl_CreateInterp()) != NULL) |
7 | 267 { |
268 if (Tcl_InitStubs(interp, DYNAMIC_TCL_VER, 0)) | |
269 { | |
270 Tcl_DeleteInterp(interp); | |
271 stubs_initialized = TRUE; | |
272 } | |
273 /* FIXME: When Tcl_InitStubs() was failed, how delete interp? */ | |
274 } | |
275 } | |
276 return stubs_initialized; | |
277 } | |
278 #endif | |
279 | |
280 void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
281 tcl_end(void) |
7 | 282 { |
283 #ifdef DYNAMIC_TCL | |
284 if (hTclLib) | |
285 { | |
7538
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
286 close_dll(hTclLib); |
7 | 287 hTclLib = NULL; |
288 } | |
289 #endif | |
290 } | |
291 | |
292 /**************************************************************************** | |
293 Tcl commands | |
294 ****************************************************************************/ | |
295 | |
296 /* | |
3369 | 297 * Replace standard "exit" command. |
7 | 298 * |
3369 | 299 * Delete the Tcl interpreter; a new one will be created with the next |
300 * :tcl command). The exit code is saved (and retrieved in tclexit()). | |
301 * Since Tcl's exit is never expected to return and this replacement | |
302 * does, then (except for a trivial case) additional Tcl commands will | |
303 * be run. Since the interpreter is now marked as deleted, an error | |
304 * will be returned -- typically "attempt to call eval in deleted | |
305 * interpreter". Hopefully, at this point, checks for TCL_ERROR take | |
306 * place and control percolates back up to Vim -- but with this new error | |
307 * string in the interpreter's result value. Therefore it would be | |
308 * useless for this routine to return the exit code via Tcl_SetResult(). | |
7 | 309 */ |
310 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
311 exitcmd( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
312 ClientData dummy UNUSED, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
313 Tcl_Interp *interp, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
314 int objc, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
315 Tcl_Obj *CONST objv[]) |
7 | 316 { |
317 int value = 0; | |
318 | |
319 switch (objc) | |
320 { | |
321 case 2: | |
322 if (Tcl_GetIntFromObj(interp, objv[1], &value) != TCL_OK) | |
323 break; | |
324 /* FALLTHROUGH */ | |
325 case 1: | |
3369 | 326 tclinfo.exitvalue = value; |
327 | |
328 Tcl_DeleteInterp(interp); | |
329 break; | |
7 | 330 default: |
331 Tcl_WrongNumArgs(interp, 1, objv, "?returnCode?"); | |
332 } | |
333 return TCL_ERROR; | |
334 } | |
335 | |
336 /* | |
337 * "::vim::beep" - what Vi[m] does best :-) | |
338 */ | |
339 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
340 beepcmd( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
341 ClientData dummy UNUSED, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
342 Tcl_Interp *interp, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
343 int objc, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
344 Tcl_Obj *CONST objv[]) |
7 | 345 { |
346 if (objc != 1) | |
347 { | |
348 Tcl_WrongNumArgs(interp, 1, objv, NULL); | |
349 return TCL_ERROR; | |
350 } | |
6949 | 351 vim_beep(BO_LANG); |
7 | 352 return TCL_OK; |
353 } | |
354 | |
355 /* | |
356 * "::vim::buffer list" - create a list of buffer commands. | |
1222 | 357 * "::vim::buffer {N}" - create buffer command for buffer N. |
3369 | 358 * "::vim::buffer exists {N}" - test if buffer N exists. |
7 | 359 * "::vim::buffer new" - create a new buffer (not implemented) |
360 */ | |
361 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
362 buffercmd( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
363 ClientData dummy UNUSED, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
364 Tcl_Interp *interp, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
365 int objc, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
366 Tcl_Obj *CONST objv[]) |
7 | 367 { |
368 char *name; | |
369 buf_T *buf; | |
370 Tcl_Obj *resobj; | |
371 int err, n, idx; | |
372 enum {BCMD_EXISTS, BCMD_LIST}; | |
135 | 373 static CONST84 char *bcmdoptions[] = |
7 | 374 { |
375 "exists", "list", (char *)0 | |
376 }; | |
377 | |
378 if (objc < 2) | |
379 { | |
380 Tcl_WrongNumArgs(interp, 1, objv, "option"); | |
381 return TCL_ERROR; | |
382 } | |
383 err = Tcl_GetIntFromObj(interp, objv[1], &n); | |
384 if (err == TCL_OK) | |
385 { | |
386 if (objc != 2) | |
387 { | |
388 Tcl_WrongNumArgs(interp, 1, objv, "bufNumber"); | |
389 return TCL_ERROR; | |
390 } | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
391 FOR_ALL_BUFFERS(buf) |
7 | 392 { |
393 if (buf->b_fnum == n) | |
394 { | |
395 name = tclgetbuffer(interp, buf); | |
396 if (name == NULL) | |
397 return TCL_ERROR; | |
398 Tcl_SetResult(interp, name, TCL_VOLATILE); | |
399 return TCL_OK; | |
400 } | |
401 } | |
402 Tcl_SetResult(interp, _("invalid buffer number"), TCL_STATIC); | |
403 return TCL_ERROR; | |
404 } | |
405 Tcl_ResetResult(interp); /* clear error from Tcl_GetIntFromObj */ | |
406 | |
407 err = Tcl_GetIndexFromObj(interp, objv[1], bcmdoptions, "option", 0, &idx); | |
408 if (err != TCL_OK) | |
409 return err; | |
410 switch (idx) | |
411 { | |
412 case BCMD_LIST: | |
413 if (objc != 2) | |
414 { | |
415 Tcl_WrongNumArgs(interp, 2, objv, ""); | |
416 err = TCL_ERROR; | |
417 break; | |
418 } | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
419 FOR_ALL_BUFFERS(buf) |
7 | 420 { |
421 name = tclgetbuffer(interp, buf); | |
422 if (name == NULL) | |
423 { | |
424 err = TCL_ERROR; | |
425 break; | |
426 } | |
427 Tcl_AppendElement(interp, name); | |
428 } | |
429 break; | |
430 | |
431 case BCMD_EXISTS: | |
432 if (objc != 3) | |
433 { | |
434 Tcl_WrongNumArgs(interp, 2, objv, "bufNumber"); | |
435 err = TCL_ERROR; | |
436 break; | |
437 } | |
438 err = Tcl_GetIntFromObj(interp, objv[2], &n); | |
439 if (err == TCL_OK) | |
440 { | |
441 buf = buflist_findnr(n); | |
442 resobj = Tcl_NewIntObj(buf != NULL); | |
443 Tcl_SetObjResult(interp, resobj); | |
444 } | |
445 break; | |
446 | |
447 default: | |
448 Tcl_SetResult(interp, _("not implemented yet"), TCL_STATIC); | |
449 err = TCL_ERROR; | |
450 } | |
451 return err; | |
452 } | |
453 | |
454 /* | |
455 * "::vim::window list" - create list of window commands. | |
456 */ | |
457 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
458 windowcmd( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
459 ClientData dummy UNUSED, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
460 Tcl_Interp *interp, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
461 int objc, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
462 Tcl_Obj *CONST objv[]) |
7 | 463 { |
464 char *what, *string; | |
465 win_T *win; | |
466 | |
467 if (objc != 2) | |
468 { | |
469 Tcl_WrongNumArgs(interp, 1, objv, "option"); | |
470 return TCL_ERROR; | |
471 } | |
472 what = Tcl_GetStringFromObj(objv[1], NULL); | |
473 if (strcmp(what, "list") == 0) | |
474 { | |
475 FOR_ALL_WINDOWS(win) | |
476 { | |
477 string = tclgetwindow(interp, win); | |
478 if (string == NULL) | |
479 return TCL_ERROR; | |
480 Tcl_AppendElement(interp, string); | |
481 } | |
482 return TCL_OK; | |
483 } | |
484 Tcl_SetResult(interp, _("unknown option"), TCL_STATIC); | |
485 return TCL_ERROR; | |
486 } | |
487 | |
488 /* | |
489 * flags for bufselfcmd and winselfcmd to indicate outstanding actions. | |
490 */ | |
491 #define FL_UPDATE_SCREEN (1<<0) | |
492 #define FL_UPDATE_CURBUF (1<<1) | |
493 #define FL_ADJUST_CURSOR (1<<2) | |
494 | |
495 /* | |
496 * This function implements the buffer commands. | |
497 */ | |
498 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
499 bufselfcmd( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
500 ClientData ref, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
501 Tcl_Interp *interp, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
502 int objc, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
503 Tcl_Obj *CONST objv[]) |
7 | 504 { |
505 int opt, err, idx, flags; | |
506 int val1, val2, n, i; | |
507 buf_T *buf, *savebuf; | |
508 win_T *win, *savewin; | |
509 Tcl_Obj *resobj; | |
510 pos_T *pos; | |
511 char *line; | |
512 | |
513 enum | |
514 { | |
515 BUF_APPEND, BUF_COMMAND, BUF_COUNT, BUF_DELCMD, BUF_DELETE, BUF_EXPR, | |
516 BUF_GET, BUF_INSERT, BUF_LAST, BUF_MARK, BUF_NAME, BUF_NUMBER, | |
517 BUF_OPTION, BUF_SET, BUF_WINDOWS | |
518 }; | |
135 | 519 static CONST84 char *bufoptions[] = |
7 | 520 { |
521 "append", "command", "count", "delcmd", "delete", "expr", | |
522 "get", "insert", "last", "mark", "name", "number", | |
523 "option", "set", "windows", (char *)0 | |
524 }; | |
525 | |
526 if (objc < 2) | |
527 { | |
528 Tcl_WrongNumArgs(interp, 1, objv, "option ?arg ...?"); | |
529 return TCL_ERROR; | |
530 } | |
531 | |
532 err = Tcl_GetIndexFromObj(interp, objv[1], bufoptions, "option", 0, &idx); | |
533 if (err != TCL_OK) | |
534 return err; | |
535 | |
536 buf = (buf_T *)((struct ref *)ref)->vimobj; | |
537 savebuf = curbuf; curbuf = buf; | |
538 savewin = curwin; curwin = tclfindwin(buf); | |
539 flags = 0; | |
540 opt = 0; | |
541 | |
542 switch (idx) | |
543 { | |
544 case BUF_COMMAND: | |
545 err = tcldoexcommand(interp, objc, objv, 2); | |
546 flags |= FL_UPDATE_SCREEN; | |
547 break; | |
548 | |
549 case BUF_OPTION: | |
550 err = tclsetoption(interp, objc, objv, 2); | |
551 flags |= FL_UPDATE_SCREEN; | |
552 break; | |
553 | |
554 case BUF_EXPR: | |
555 err = tclvimexpr(interp, objc, objv, 2); | |
556 break; | |
557 | |
558 case BUF_NAME: | |
559 /* | |
560 * Get filename of buffer. | |
561 */ | |
562 if (objc != 2) | |
563 { | |
564 Tcl_WrongNumArgs(interp, 2, objv, NULL); | |
565 err = TCL_ERROR; | |
566 break; | |
567 } | |
568 if (buf->b_ffname) | |
569 Tcl_SetResult(interp, (char *)buf->b_ffname, TCL_VOLATILE); | |
570 else | |
571 Tcl_SetResult(interp, "", TCL_STATIC); | |
572 break; | |
573 | |
574 case BUF_LAST: | |
575 /* | |
576 * Get line number of last line. | |
577 */ | |
578 opt = 1; | |
579 /* fallthrough */ | |
580 case BUF_COUNT: | |
581 /* | |
582 * Get number of lines in buffer. | |
583 */ | |
584 if (objc != 2) | |
585 { | |
586 Tcl_WrongNumArgs(interp, 2, objv, NULL); | |
587 err = TCL_ERROR; | |
588 break; | |
589 } | |
590 val1 = (int)buf->b_ml.ml_line_count; | |
591 if (opt) | |
592 val1 = row2tcl(val1); | |
593 | |
594 resobj = Tcl_NewIntObj(val1); | |
595 Tcl_SetObjResult(interp, resobj); | |
596 break; | |
597 | |
598 case BUF_NUMBER: | |
599 /* | |
600 * Get buffer's number. | |
601 */ | |
602 if (objc != 2) | |
603 { | |
604 Tcl_WrongNumArgs(interp, 2, objv, NULL); | |
605 err = TCL_ERROR; | |
606 break; | |
607 } | |
608 resobj = Tcl_NewIntObj((int)buf->b_fnum); | |
609 Tcl_SetObjResult(interp, resobj); | |
610 break; | |
611 | |
612 case BUF_GET: | |
613 if (objc != 3 && objc != 4) | |
614 { | |
615 Tcl_WrongNumArgs(interp, 2, objv, "lineNumber ?lineNumber?"); | |
616 err = TCL_ERROR; | |
617 break; | |
618 } | |
619 err = tclgetlinenum(interp, objv[2], &val1, buf); | |
620 if (err != TCL_OK) | |
621 break; | |
622 if (objc == 4) | |
623 { | |
624 err = tclgetlinenum(interp, objv[3], &val2, buf); | |
625 if (err != TCL_OK) | |
626 break; | |
627 if (val1 > val2) | |
628 { | |
629 n = val1; val1 = val2; val2 = n; | |
630 } | |
631 Tcl_ResetResult(interp); | |
632 | |
633 for (n = val1; n <= val2 && err == TCL_OK; n++) | |
634 { | |
635 line = (char *)ml_get_buf(buf, (linenr_T)n, FALSE); | |
636 if (line) | |
637 Tcl_AppendElement(interp, line); | |
638 else | |
639 err = TCL_ERROR; | |
640 } | |
641 } | |
642 else { /* objc == 3 */ | |
643 line = (char *)ml_get_buf(buf, (linenr_T)val1, FALSE); | |
644 Tcl_SetResult(interp, line, TCL_VOLATILE); | |
645 } | |
646 break; | |
647 | |
648 case BUF_SET: | |
649 if (objc != 4 && objc != 5) | |
650 { | |
651 Tcl_WrongNumArgs(interp, 3, objv, "lineNumber ?lineNumber? stringOrList"); | |
652 err = TCL_ERROR; | |
653 break; | |
654 } | |
655 err = tclgetlinenum(interp, objv[2], &val1, buf); | |
656 if (err != TCL_OK) | |
657 return TCL_ERROR; | |
658 if (objc == 4) | |
659 { | |
660 /* | |
661 * Replace one line with a string. | |
662 * $buf set {n} {string} | |
663 */ | |
664 line = Tcl_GetStringFromObj(objv[3], NULL); | |
665 if (u_savesub((linenr_T)val1) != OK) | |
666 { | |
667 Tcl_SetResult(interp, _("cannot save undo information"), TCL_STATIC); | |
668 err = TCL_ERROR; | |
669 } | |
670 else | |
671 if (ml_replace((linenr_T)val1, (char_u *)line, TRUE) != OK) | |
672 { | |
673 Tcl_SetResult(interp, _("cannot replace line"), TCL_STATIC); | |
674 err = TCL_ERROR; | |
675 } | |
676 else | |
677 { | |
678 changed_bytes((linenr_T)val1, 0); | |
679 flags |= FL_UPDATE_CURBUF; | |
680 } | |
681 break; | |
682 } | |
683 else | |
684 { | |
685 /* | |
686 * Replace several lines with the elements of a Tcl list. | |
687 * $buf set {n} {m} {list} | |
688 * If the list contains more than {m}-{n}+1 elements, they | |
689 * are * inserted after line {m}. If the list contains fewer | |
690 * elements, * the lines from {n}+length({list}) through {m} | |
691 * are deleted. | |
692 */ | |
693 int lc; | |
694 Tcl_Obj **lv; | |
695 | |
696 err = tclgetlinenum(interp, objv[3], &val2, buf); | |
697 if (err != TCL_OK) | |
698 break; | |
699 err = Tcl_ListObjGetElements(interp, objv[4], &lc, &lv); | |
700 if (err != TCL_OK) | |
701 break; | |
702 if (val1 > val2) | |
703 { | |
704 n = val1; | |
705 val1 = val2; | |
706 val2 = n; | |
707 } | |
708 | |
709 n = val1; | |
710 if (u_save((linenr_T)(val1 - 1), (linenr_T)(val2 + 1)) != OK) | |
711 { | |
712 Tcl_SetResult(interp, _("cannot save undo information"), | |
713 TCL_STATIC); | |
714 err = TCL_ERROR; | |
715 break; | |
716 } | |
717 flags |= FL_UPDATE_CURBUF; | |
718 | |
719 for (i = 0; i < lc && n <= val2; i++) | |
720 { | |
721 line = Tcl_GetStringFromObj(lv[i], NULL); | |
722 if (ml_replace((linenr_T)n, (char_u *)line, TRUE) != OK) | |
723 goto setListError; | |
724 ++n; | |
725 } | |
726 if (i < lc) | |
727 { | |
728 /* append lines */ | |
729 do | |
730 { | |
731 line = Tcl_GetStringFromObj(lv[i], NULL); | |
732 if (ml_append((linenr_T)(n - 1), | |
733 (char_u *)line, 0, FALSE) != OK) | |
734 goto setListError; | |
735 ++n; | |
736 ++i; | |
737 } while (i < lc); | |
738 } | |
739 else if (n <= val2) | |
740 { | |
741 /* did not replace all lines, delete */ | |
742 i = n; | |
743 do | |
744 { | |
745 if (ml_delete((linenr_T)i, FALSE) != OK) | |
746 goto setListError; | |
747 ++n; | |
748 } while (n <= val2); | |
749 } | |
750 lc -= val2 - val1 + 1; /* number of lines to be replaced */ | |
751 mark_adjust((linenr_T)val1, (linenr_T)val2, (long)MAXLNUM, | |
752 (long)lc); | |
753 changed_lines((linenr_T)val1, 0, (linenr_T)val2 + 1, (long)lc); | |
754 break; | |
755 setListError: | |
756 u_undo(1); /* ??? */ | |
757 Tcl_SetResult(interp, _("cannot set line(s)"), TCL_STATIC); | |
758 err = TCL_ERROR; | |
759 } | |
760 break; | |
761 | |
762 case BUF_DELETE: | |
763 if (objc != 3 && objc != 4) | |
764 { | |
765 Tcl_WrongNumArgs(interp, 3, objv, "lineNumber ?lineNumber?"); | |
766 err = TCL_ERROR; | |
767 break; | |
768 } | |
769 err = tclgetlinenum(interp, objv[2], &val1, buf); | |
770 if (err != TCL_OK) | |
771 break; | |
772 val2 = val1; | |
773 if (objc == 4) | |
774 { | |
775 err = tclgetlinenum(interp, objv[3], &val2, buf); | |
776 if (err != TCL_OK) | |
777 return err; | |
778 if (val1 > val2) | |
779 { | |
780 i = val1; val1 = val2; val2 = i; | |
781 } | |
782 } | |
783 n = val2 - val1 + 1; | |
784 if (u_savedel((linenr_T)val1, (long)n) != OK) | |
785 { | |
786 Tcl_SetResult(interp, _("cannot save undo information"), | |
787 TCL_STATIC); | |
788 err = TCL_ERROR; | |
789 break; | |
790 } | |
791 for (i = 0; i < n; i++) | |
792 { | |
793 ml_delete((linenr_T)val1, FALSE); | |
794 err = vimerror(interp); | |
795 if (err != TCL_OK) | |
796 break; | |
797 } | |
798 if (i > 0) | |
799 deleted_lines_mark((linenr_T)val1, (long)i); | |
800 flags |= FL_ADJUST_CURSOR|FL_UPDATE_SCREEN; | |
801 break; | |
802 | |
803 case BUF_MARK: | |
804 if (objc != 3) | |
805 { | |
806 Tcl_WrongNumArgs(interp, 2, objv, "markName"); | |
807 err = TCL_ERROR; | |
808 break; | |
809 } | |
810 line = Tcl_GetStringFromObj(objv[2], NULL); | |
811 | |
812 pos = NULL; | |
813 if (line[0] != '\0' && line[1] == '\0') | |
814 { | |
815 pos = getmark(line[0], FALSE); | |
816 } | |
817 if (pos == NULL) | |
818 { | |
819 Tcl_SetResult(interp, _("invalid mark name"), TCL_STATIC); | |
820 err = TCL_ERROR; | |
821 break; | |
822 } | |
823 err = vimerror(interp); | |
824 if (err != TCL_OK) | |
825 break; | |
826 if (pos->lnum <= 0) | |
827 { | |
828 Tcl_SetResult(interp, _("mark not set"), TCL_STATIC); | |
829 err = TCL_ERROR; | |
830 } | |
831 else | |
832 { | |
833 char rbuf[64]; | |
274 | 834 |
835 sprintf(rbuf, _("row %d column %d"), | |
836 (int)row2tcl(pos->lnum), (int)col2tcl(pos->col)); | |
7 | 837 Tcl_SetResult(interp, rbuf, TCL_VOLATILE); |
838 } | |
839 break; | |
840 | |
841 case BUF_INSERT: | |
842 opt = 1; | |
843 /* fallthrough */ | |
844 case BUF_APPEND: | |
845 if (objc != 4) | |
846 { | |
847 Tcl_WrongNumArgs(interp, 2, objv, "lineNum text"); | |
848 err = TCL_ERROR; | |
849 break; | |
850 } | |
851 err = tclgetlinenum(interp, objv[2], &val1, buf); | |
852 if (err != TCL_OK) | |
853 break; | |
854 if (opt) | |
855 --val1; | |
856 if (u_save((linenr_T)val1, (linenr_T)(val1+1)) != OK) | |
857 { | |
274 | 858 Tcl_SetResult(interp, _("cannot save undo information"), |
859 TCL_STATIC); | |
7 | 860 err = TCL_ERROR; |
861 break; | |
862 } | |
863 | |
864 line = Tcl_GetStringFromObj(objv[3], NULL); | |
865 if (ml_append((linenr_T)val1, (char_u *)line, 0, FALSE) != OK) | |
866 { | |
274 | 867 Tcl_SetResult(interp, _("cannot insert/append line"), |
868 TCL_STATIC); | |
7 | 869 err = TCL_ERROR; |
870 break; | |
871 } | |
872 appended_lines_mark((linenr_T)val1, 1L); | |
873 flags |= FL_UPDATE_SCREEN; | |
874 break; | |
875 | |
876 case BUF_WINDOWS: | |
877 /* | |
878 * Return list of window commands. | |
879 */ | |
880 if (objc != 2) | |
881 { | |
882 Tcl_WrongNumArgs(interp, 2, objv, NULL); | |
883 err = TCL_ERROR; | |
884 break; | |
885 } | |
886 Tcl_ResetResult(interp); | |
887 FOR_ALL_WINDOWS(win) | |
888 { | |
889 if (win->w_buffer == buf) | |
890 { | |
891 line = tclgetwindow(interp, win); | |
892 if (line != NULL) | |
893 Tcl_AppendElement(interp, line); | |
894 else | |
895 { | |
896 err = TCL_ERROR; | |
897 break; | |
898 } | |
899 } | |
900 } | |
901 break; | |
902 | |
903 case BUF_DELCMD: | |
904 /* | |
905 * Register deletion callback. | |
906 * TODO: Should be able to register multiple callbacks | |
907 */ | |
908 if (objc != 3) | |
909 { | |
910 Tcl_WrongNumArgs(interp, 2, objv, "command"); | |
911 err = TCL_ERROR; | |
912 break; | |
913 } | |
502 | 914 err = tclsetdelcmd(interp, buf->b_tcl_ref, (void *)buf, objv[2]); |
7 | 915 break; |
916 | |
917 default: | |
918 Tcl_SetResult(interp, _("not implemented yet"), TCL_STATIC); | |
919 err = TCL_ERROR; | |
920 } | |
921 | |
922 if (flags & FL_UPDATE_CURBUF) | |
923 redraw_curbuf_later(NOT_VALID); | |
924 curbuf = savebuf; | |
925 curwin = savewin; | |
926 if (flags & FL_ADJUST_CURSOR) | |
927 check_cursor(); | |
928 if (flags & (FL_UPDATE_SCREEN | FL_UPDATE_CURBUF)) | |
929 update_screen(NOT_VALID); | |
930 | |
931 return err; | |
932 } | |
933 | |
934 /* | |
935 * This function implements the window commands. | |
936 */ | |
937 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
938 winselfcmd( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
939 ClientData ref, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
940 Tcl_Interp *interp, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
941 int objc, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
942 Tcl_Obj *CONST objv[]) |
7 | 943 { |
944 int err, idx, flags; | |
945 int val1, val2; | |
946 Tcl_Obj *resobj; | |
947 win_T *savewin, *win; | |
948 buf_T *savebuf; | |
949 char *str; | |
950 | |
951 enum | |
952 { | |
953 WIN_BUFFER, WIN_COMMAND, WIN_CURSOR, WIN_DELCMD, WIN_EXPR, | |
954 WIN_HEIGHT, WIN_OPTION | |
955 }; | |
135 | 956 static CONST84 char *winoptions[] = |
7 | 957 { |
958 "buffer", "command", "cursor", "delcmd", "expr", | |
959 "height", "option", (char *)0 | |
960 }; | |
961 | |
962 if (objc < 2) | |
963 { | |
964 Tcl_WrongNumArgs(interp, 1, objv, "option ?arg ...?"); | |
965 return TCL_ERROR; | |
966 } | |
967 | |
968 err = Tcl_GetIndexFromObj(interp, objv[1], winoptions, "option", 0, &idx); | |
969 if (err != TCL_OK) | |
970 return TCL_ERROR; | |
971 | |
972 win = (win_T *)((struct ref *)ref)->vimobj; | |
973 savewin = curwin; curwin = win; | |
974 savebuf = curbuf; curbuf = win->w_buffer; | |
975 flags = 0; | |
976 | |
977 switch (idx) | |
978 { | |
979 case WIN_OPTION: | |
980 err = tclsetoption(interp, objc, objv, 2); | |
981 flags |= FL_UPDATE_SCREEN; | |
982 break; | |
983 | |
984 case WIN_COMMAND: | |
985 err = tcldoexcommand(interp, objc, objv, 2); | |
986 flags |= FL_UPDATE_SCREEN; | |
987 break; | |
988 | |
989 case WIN_EXPR: | |
990 err = tclvimexpr(interp, objc, objv, 2); | |
991 break; | |
992 | |
993 case WIN_HEIGHT: | |
994 if (objc == 3) | |
995 { | |
996 err = Tcl_GetIntFromObj(interp, objv[2], &val1); | |
997 if (err != TCL_OK) | |
998 break; | |
999 #ifdef FEAT_GUI | |
1000 need_mouse_correct = TRUE; | |
1001 #endif | |
1002 win_setheight(val1); | |
1003 err = vimerror(interp); | |
1004 if (err != TCL_OK) | |
1005 break; | |
1006 } | |
1007 else | |
1008 if (objc != 2) | |
1009 { | |
1010 Tcl_WrongNumArgs(interp, 2, objv, "?value?"); | |
1011 err = TCL_ERROR; | |
1012 break; | |
1013 } | |
1014 | |
1015 resobj = Tcl_NewIntObj((int)(win->w_height)); | |
1016 Tcl_SetObjResult(interp, resobj); | |
1017 break; | |
1018 | |
1019 case WIN_BUFFER: | |
1020 if (objc != 2) | |
1021 { | |
1022 Tcl_WrongNumArgs(interp, 2, objv, NULL); | |
1023 err = TCL_ERROR; | |
1024 break; | |
1025 } | |
1026 str = tclgetbuffer(interp, win->w_buffer); | |
1027 if (str) | |
1028 Tcl_SetResult(interp, str, TCL_VOLATILE); | |
1029 else | |
1030 err = TCL_ERROR; | |
1031 break; | |
1032 | |
1033 case WIN_DELCMD: | |
1034 if (objc != 3) | |
1035 { | |
1036 Tcl_WrongNumArgs(interp, 2, objv, "command"); | |
1037 err = TCL_ERROR; | |
1038 break; | |
1039 } | |
502 | 1040 err = tclsetdelcmd(interp, win->w_tcl_ref, (void *)win, objv[2]); |
7 | 1041 break; |
1042 | |
1043 case WIN_CURSOR: | |
1044 if (objc > 4) | |
1045 { | |
1046 Tcl_WrongNumArgs(interp, 2, objv, "?arg1 ?arg2??"); | |
1047 err = TCL_ERROR; | |
1048 break; | |
1049 } | |
1050 if (objc == 2) | |
1051 { | |
1052 char buf[64]; | |
274 | 1053 |
7 | 1054 sprintf(buf, _("row %d column %d"), (int)row2tcl(win->w_cursor.lnum), (int)col2tcl(win->w_cursor.col)); |
1055 Tcl_SetResult(interp, buf, TCL_VOLATILE); | |
1056 break; | |
1057 } | |
1058 else if (objc == 3) | |
1059 { | |
1060 Tcl_Obj *part, *var; | |
1061 | |
1062 part = Tcl_NewStringObj("row", -1); | |
1063 var = Tcl_ObjGetVar2(interp, objv[2], part, TCL_LEAVE_ERR_MSG); | |
1064 if (var == NULL) | |
1065 { | |
1066 err = TCL_ERROR; | |
1067 break; | |
1068 } | |
1069 err = tclgetlinenum(interp, var, &val1, win->w_buffer); | |
1070 if (err != TCL_OK) | |
1071 break; | |
1072 part = Tcl_NewStringObj("column", -1); | |
1073 var = Tcl_ObjGetVar2(interp, objv[2], part, TCL_LEAVE_ERR_MSG); | |
1074 if (var == NULL) | |
1075 { | |
1076 err = TCL_ERROR; | |
1077 break; | |
1078 } | |
1079 err = Tcl_GetIntFromObj(interp, var, &val2); | |
1080 if (err != TCL_OK) | |
1081 break; | |
1082 } | |
1083 else { /* objc == 4 */ | |
1084 err = tclgetlinenum(interp, objv[2], &val1, win->w_buffer); | |
1085 if (err != TCL_OK) | |
1086 break; | |
1087 err = Tcl_GetIntFromObj(interp, objv[3], &val2); | |
1088 if (err != TCL_OK) | |
1089 break; | |
1090 } | |
1091 /* TODO: should check column */ | |
1092 win->w_cursor.lnum = val1; | |
1093 win->w_cursor.col = col2vim(val2); | |
1094 flags |= FL_UPDATE_SCREEN; | |
1095 break; | |
1096 | |
1097 default: | |
1098 Tcl_SetResult(interp, _("not implemented yet"), TCL_STATIC); | |
1099 break; | |
1100 } | |
1101 | |
1102 curwin = savewin; | |
1103 curbuf = savebuf; | |
1104 if (flags & FL_UPDATE_SCREEN) | |
1105 update_screen(NOT_VALID); | |
1106 | |
1107 return err; | |
1108 } | |
1109 | |
1110 | |
1111 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1112 commandcmd( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1113 ClientData dummy UNUSED, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1114 Tcl_Interp *interp, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1115 int objc, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1116 Tcl_Obj *CONST objv[]) |
7 | 1117 { |
1118 int err; | |
1119 | |
1120 err = tcldoexcommand(interp, objc, objv, 1); | |
1121 update_screen(VALID); | |
1122 return err; | |
1123 } | |
1124 | |
1125 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1126 optioncmd( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1127 ClientData dummy UNUSED, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1128 Tcl_Interp *interp, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1129 int objc, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1130 Tcl_Obj *CONST objv[]) |
7 | 1131 { |
1132 int err; | |
1133 | |
1134 err = tclsetoption(interp, objc, objv, 1); | |
1135 update_screen(VALID); | |
1136 return err; | |
1137 } | |
1138 | |
1139 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1140 exprcmd( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1141 ClientData dummy UNUSED, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1142 Tcl_Interp *interp, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1143 int objc, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1144 Tcl_Obj *CONST objv[]) |
7 | 1145 { |
1146 return tclvimexpr(interp, objc, objv, 1); | |
1147 } | |
1148 | |
1149 /**************************************************************************** | |
1150 Support functions for Tcl commands | |
1151 ****************************************************************************/ | |
1152 | |
1153 /* | |
1154 * Get a line number from 'obj' and convert it to vim's range. | |
1155 */ | |
1156 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1157 tclgetlinenum( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1158 Tcl_Interp *interp, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1159 Tcl_Obj *obj, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1160 int *valueP, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1161 buf_T *buf) |
7 | 1162 { |
1163 int err, i; | |
1164 | |
1165 enum { LN_BEGIN, LN_BOTTOM, LN_END, LN_FIRST, LN_LAST, LN_START, LN_TOP }; | |
1166 | |
135 | 1167 static CONST84 char *keyw[] = |
7 | 1168 { |
1169 "begin", "bottom", "end", "first", "last", "start", "top", (char *)0 | |
1170 }; | |
1171 | |
1172 err = Tcl_GetIndexFromObj(interp, obj, keyw, "", 0, &i); | |
1173 if (err == TCL_OK) | |
1174 { | |
1175 switch (i) | |
1176 { | |
1177 case LN_BEGIN: | |
1178 case LN_FIRST: | |
1179 case LN_START: | |
1180 case LN_TOP: | |
1181 *valueP = 1; | |
1182 break; | |
1183 case LN_BOTTOM: | |
1184 case LN_END: | |
1185 case LN_LAST: | |
1186 *valueP = buf->b_ml.ml_line_count; | |
1187 break; | |
1188 } | |
1189 return TCL_OK; | |
1190 } | |
1191 Tcl_ResetResult(interp); | |
1192 | |
1193 err = Tcl_GetIntFromObj(interp, obj, &i); | |
1194 if (err != TCL_OK) | |
1195 return err; | |
1196 i = row2vim(i); | |
1197 if (i < 1 || i > buf->b_ml.ml_line_count) | |
1198 { | |
1199 Tcl_SetResult(interp, _("line number out of range"), TCL_STATIC); | |
1200 return TCL_ERROR; | |
1201 } | |
1202 *valueP = i; | |
1203 return TCL_OK; | |
1204 } | |
1205 | |
1206 /* | |
1207 * Find the first window in the window list that displays the buffer. | |
1208 */ | |
1209 static win_T * | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1210 tclfindwin(buf_T *buf) |
7 | 1211 { |
1212 win_T *win; | |
1213 | |
1214 FOR_ALL_WINDOWS(win) | |
1215 { | |
1216 if (win->w_buffer == buf) | |
1217 return win; | |
1218 } | |
1219 return curwin; /* keep current window context */ | |
1220 } | |
1221 | |
1222 /* | |
1223 * Do-it-all function for "::vim::command", "$buf command" and "$win command". | |
1224 */ | |
1225 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1226 tcldoexcommand( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1227 Tcl_Interp *interp, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1228 int objc, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1229 Tcl_Obj *CONST objv[], |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1230 int objn) |
7 | 1231 { |
1232 tcl_info saveinfo; | |
1233 int err, flag, nobjs; | |
1234 char *arg; | |
1235 | |
1236 nobjs = objc - objn; | |
1237 if (nobjs < 1 || nobjs > 2) | |
1238 { | |
1239 Tcl_WrongNumArgs(interp, objn, objv, "?-quiet? exCommand"); | |
1240 return TCL_ERROR; | |
1241 } | |
1242 | |
1243 flag = 0; | |
1244 if (nobjs == 2) | |
1245 { | |
1246 arg = Tcl_GetStringFromObj(objv[objn], NULL); | |
1247 if (strcmp(arg, "-quiet") == 0) | |
1248 flag = 1; | |
1249 else | |
1250 { | |
1251 Tcl_ResetResult(interp); | |
1252 Tcl_AppendResult(interp, _("unknown flag: "), arg, (char *)0); | |
1253 return TCL_ERROR; | |
1254 } | |
1255 ++objn; | |
1256 } | |
1257 | |
1258 memcpy(&saveinfo, &tclinfo, sizeof(tcl_info)); | |
1259 tclinfo.interp = NULL; | |
1260 tclinfo.curwin = NULL; | |
1261 tclinfo.curbuf = NULL; | |
1262 | |
1263 arg = Tcl_GetStringFromObj(objv[objn], NULL); | |
1264 if (flag) | |
1265 ++emsg_off; | |
1266 do_cmdline_cmd((char_u *)arg); | |
1267 if (flag) | |
1268 --emsg_off; | |
1269 err = vimerror(interp); | |
1270 | |
1271 /* If the ex command created a new Tcl interpreter, remove it */ | |
1272 if (tclinfo.interp) | |
1273 tcldelthisinterp(); | |
1274 memcpy(&tclinfo, &saveinfo, sizeof(tcl_info)); | |
1275 tclupdatevars(); | |
1276 | |
1277 return err; | |
1278 } | |
1279 | |
1280 /* | |
1281 * Do-it-all function for "::vim::option", "$buf option" and "$win option". | |
1282 */ | |
1283 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1284 tclsetoption( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1285 Tcl_Interp *interp, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1286 int objc, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1287 Tcl_Obj *CONST objv[], |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1288 int objn) |
7 | 1289 { |
1290 int err, nobjs, idx; | |
1291 char_u *option; | |
1292 int isnum; | |
1293 long lval; | |
1294 char_u *sval; | |
1295 Tcl_Obj *resobj; | |
1296 | |
1297 enum { OPT_OFF, OPT_ON, OPT_TOGGLE }; | |
135 | 1298 static CONST84 char *optkw[] = { "off", "on", "toggle", (char *)0 }; |
7 | 1299 |
1300 nobjs = objc - objn; | |
1301 if (nobjs != 1 && nobjs != 2) | |
1302 { | |
1303 Tcl_WrongNumArgs(interp, objn, objv, "vimOption ?value?"); | |
1304 return TCL_ERROR; | |
1305 } | |
1306 | |
1307 option = (char_u *)Tcl_GetStringFromObj(objv[objn], NULL); | |
1308 ++objn; | |
1309 isnum = get_option_value(option, &lval, &sval, 0); | |
1310 err = TCL_OK; | |
1311 switch (isnum) | |
1312 { | |
1313 case 0: | |
1314 Tcl_SetResult(interp, (char *)sval, TCL_VOLATILE); | |
1315 vim_free(sval); | |
1316 break; | |
1317 case 1: | |
1318 resobj = Tcl_NewLongObj(lval); | |
1319 Tcl_SetObjResult(interp, resobj); | |
1320 break; | |
1321 default: | |
1322 Tcl_SetResult(interp, _("unknown vimOption"), TCL_STATIC); | |
1323 return TCL_ERROR; | |
1324 } | |
1325 if (nobjs == 2) | |
1326 { | |
1327 if (isnum) | |
1328 { | |
1329 sval = NULL; /* avoid compiler warning */ | |
1330 err = Tcl_GetIndexFromObj(interp, objv[objn], optkw, "", 0, &idx); | |
1331 if (err != TCL_OK) | |
1332 { | |
1333 Tcl_ResetResult(interp); | |
1334 err = Tcl_GetLongFromObj(interp, objv[objn], &lval); | |
1335 } | |
1336 else | |
1337 switch (idx) | |
1338 { | |
1339 case OPT_ON: | |
1340 lval = 1; | |
1341 break; | |
1342 case OPT_OFF: | |
1343 lval = 0; | |
1344 break; | |
1345 case OPT_TOGGLE: | |
1346 lval = !lval; | |
1347 break; | |
1348 } | |
1349 } | |
1350 else | |
1351 sval = (char_u *)Tcl_GetStringFromObj(objv[objn], NULL); | |
1352 if (err == TCL_OK) | |
1353 { | |
1354 set_option_value(option, lval, sval, OPT_LOCAL); | |
1355 err = vimerror(interp); | |
1356 } | |
1357 } | |
1358 return err; | |
1359 } | |
1360 | |
1361 /* | |
1362 * Do-it-all function for "::vim::expr", "$buf expr" and "$win expr". | |
1363 */ | |
1364 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1365 tclvimexpr( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1366 Tcl_Interp *interp, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1367 int objc, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1368 Tcl_Obj *CONST objv[], |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1369 int objn) |
7 | 1370 { |
1371 #ifdef FEAT_EVAL | |
1372 char *expr, *str; | |
1373 #endif | |
1374 int err; | |
1375 | |
1376 if (objc - objn != 1) | |
1377 { | |
1378 Tcl_WrongNumArgs(interp, objn, objv, "vimExpr"); | |
1379 return TCL_ERROR; | |
1380 } | |
1381 | |
1382 #ifdef FEAT_EVAL | |
1383 expr = Tcl_GetStringFromObj(objv[objn], NULL); | |
714 | 1384 str = (char *)eval_to_string((char_u *)expr, NULL, TRUE); |
7 | 1385 if (str == NULL) |
1386 Tcl_SetResult(interp, _("invalid expression"), TCL_STATIC); | |
1387 else | |
1388 Tcl_SetResult(interp, str, TCL_VOLATILE); | |
1389 err = vimerror(interp); | |
1390 #else | |
1391 Tcl_SetResult(interp, _("expressions disabled at compile time"), TCL_STATIC); | |
1392 err = TCL_ERROR; | |
1393 #endif | |
1394 | |
1395 return err; | |
1396 } | |
1397 | |
1398 /* | |
1399 * Check for internal vim errors. | |
1400 */ | |
1401 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1402 vimerror(Tcl_Interp *interp) |
7 | 1403 { |
1404 if (got_int) | |
1405 { | |
1406 Tcl_SetResult(interp, _("keyboard interrupt"), TCL_STATIC); | |
1407 return TCL_ERROR; | |
1408 } | |
1409 else if (did_emsg) | |
1410 { | |
1411 Tcl_SetResult(interp, _("vim error"), TCL_STATIC); | |
1412 return TCL_ERROR; | |
1413 } | |
1414 return TCL_OK; | |
1415 } | |
1416 | |
1417 /* | |
1418 * Functions that handle the reference lists: | |
1419 * delref() - callback for Tcl's DeleteCommand | |
1420 * tclgetref() - find/create Tcl command for a win_T* or buf_T* object | |
1421 * tclgetwindow() - window frontend for tclgetref() | |
1422 * tclgetbuffer() - buffer frontend for tclgetref() | |
1423 * tclsetdelcmd() - add Tcl callback command to a vim object | |
1424 */ | |
1425 static void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1426 delref(ClientData cref) |
7 | 1427 { |
1428 struct ref *ref = (struct ref *)cref; | |
1429 | |
1430 if (ref->delcmd) | |
1431 { | |
1432 Tcl_DecrRefCount(ref->delcmd); | |
1433 ref->delcmd = NULL; | |
1434 } | |
1435 ref->interp = NULL; | |
1436 } | |
1437 | |
1438 static char * | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1439 tclgetref( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1440 Tcl_Interp *interp, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1441 void **refstartP, /* ptr to w_tcl_ref/b_tcl-ref member of |
502 | 1442 win_T/buf_T struct */ |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1443 char *prefix, /* "win" or "buf" */ |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1444 void *vimobj, /* win_T* or buf_T* */ |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1445 Tcl_ObjCmdProc *proc) /* winselfcmd or bufselfcmd */ |
7 | 1446 { |
1447 struct ref *ref, *unused = NULL; | |
1448 static char name[VARNAME_SIZE]; | |
1449 Tcl_Command cmd; | |
1450 | |
1451 ref = (struct ref *)(*refstartP); | |
1452 if (ref == &refsdeleted) | |
1453 { | |
1454 Tcl_SetResult(interp, _("cannot create buffer/window command: object is being deleted"), TCL_STATIC); | |
1455 return NULL; | |
1456 } | |
1457 | |
1458 while (ref != NULL) | |
1459 { | |
1460 if (ref->interp == interp) | |
1461 break; | |
1462 if (ref->interp == NULL) | |
1463 unused = ref; | |
1464 ref = ref->next; | |
1465 } | |
1466 | |
1467 if (ref) | |
274 | 1468 vim_snprintf(name, sizeof(name), "::vim::%s", |
1469 Tcl_GetCommandName(interp, ref->cmd)); | |
7 | 1470 else |
1471 { | |
1472 if (unused) | |
1473 ref = unused; | |
1474 else | |
1475 { | |
1476 ref = (struct ref *)Tcl_Alloc(sizeof(struct ref)); | |
1477 ref->interp = NULL; | |
1478 ref->next = (struct ref *)(*refstartP); | |
1479 (*refstartP) = (void *)ref; | |
1480 } | |
1481 | |
1482 /* This might break on some exotic systems... */ | |
274 | 1483 vim_snprintf(name, sizeof(name), "::vim::%s_%lx", |
1484 prefix, (unsigned long)vimobj); | |
7 | 1485 cmd = Tcl_CreateObjCommand(interp, name, proc, |
1486 (ClientData)ref, (Tcl_CmdDeleteProc *)delref); | |
1487 if (!cmd) | |
1488 return NULL; | |
1489 | |
1490 ref->interp = interp; | |
1491 ref->cmd = cmd; | |
1492 ref->delcmd = NULL; | |
1493 ref->vimobj = vimobj; | |
1494 } | |
1495 return name; | |
1496 } | |
1497 | |
1498 static char * | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1499 tclgetwindow(Tcl_Interp *interp, win_T *win) |
7 | 1500 { |
502 | 1501 return tclgetref(interp, &(win->w_tcl_ref), "win", (void *)win, winselfcmd); |
7 | 1502 } |
1503 | |
1504 static char * | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1505 tclgetbuffer(Tcl_Interp *interp, buf_T *buf) |
7 | 1506 { |
502 | 1507 return tclgetref(interp, &(buf->b_tcl_ref), "buf", (void *)buf, bufselfcmd); |
7 | 1508 } |
1509 | |
1510 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1511 tclsetdelcmd( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1512 Tcl_Interp *interp, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1513 struct ref *reflist, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1514 void *vimobj, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1515 Tcl_Obj *delcmd) |
7 | 1516 { |
1517 if (reflist == &refsdeleted) | |
1518 { | |
1519 Tcl_SetResult(interp, _("cannot register callback command: buffer/window is already being deleted"), TCL_STATIC); | |
1520 return TCL_ERROR; | |
1521 } | |
1522 | |
1523 while (reflist != NULL) | |
1524 { | |
1525 if (reflist->interp == interp && reflist->vimobj == vimobj) | |
1526 { | |
1527 if (reflist->delcmd) | |
1125 | 1528 { |
7 | 1529 Tcl_DecrRefCount(reflist->delcmd); |
1125 | 1530 } |
7 | 1531 Tcl_IncrRefCount(delcmd); |
1532 reflist->delcmd = delcmd; | |
1533 return TCL_OK; | |
1534 } | |
1535 reflist = reflist->next; | |
1536 } | |
1537 /* This should never happen. Famous last word? */ | |
1538 EMSG(_("E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim.org")); | |
1539 Tcl_SetResult(interp, _("cannot register callback command: buffer/window reference not found"), TCL_STATIC); | |
1540 return TCL_ERROR; | |
1541 } | |
1542 | |
1543 | |
1544 /******************************************* | |
1545 I/O Channel | |
1546 ********************************************/ | |
1547 | |
1548 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1549 tcl_channel_close(ClientData instance, Tcl_Interp *interp UNUSED) |
7 | 1550 { |
1551 int err = 0; | |
1552 | |
1553 /* currently does nothing */ | |
1554 | |
1555 if (instance != VIMOUT && instance != VIMERR) | |
1556 { | |
1557 Tcl_SetErrno(EBADF); | |
1558 err = EBADF; | |
1559 } | |
1560 return err; | |
1561 } | |
1562 | |
1563 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1564 tcl_channel_input( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1565 ClientData instance UNUSED, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1566 char *buf UNUSED, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1567 int bufsiz UNUSED, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1568 int *errptr) |
7 | 1569 { |
1570 | |
1571 /* input is currently not supported */ | |
1572 | |
1573 Tcl_SetErrno(EINVAL); | |
1574 if (errptr) | |
1575 *errptr = EINVAL; | |
1576 return -1; | |
1577 } | |
1578 | |
1579 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1580 tcl_channel_output( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1581 ClientData instance, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1582 const char *buf, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1583 int bufsiz, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1584 int *errptr) |
7 | 1585 { |
1586 char_u *str; | |
1587 int result; | |
1588 | |
1589 /* The buffer is not guaranteed to be 0-terminated, and we don't if | |
1590 * there is enough room to add a '\0'. So we have to create a copy | |
1591 * of the buffer... | |
1592 */ | |
1593 str = vim_strnsave((char_u *)buf, bufsiz); | |
1594 if (!str) | |
1595 { | |
1596 Tcl_SetErrno(ENOMEM); | |
1597 if (errptr) | |
1598 *errptr = ENOMEM; | |
1599 return -1; | |
1600 } | |
1601 | |
1602 result = bufsiz; | |
1603 if (instance == VIMOUT) | |
1604 tclmsg((char *)str); | |
1605 else | |
1606 if (instance == VIMERR) | |
1607 tclerrmsg((char *)str); | |
1608 else | |
1609 { | |
1610 Tcl_SetErrno(EBADF); | |
1611 if (errptr) | |
1612 *errptr = EBADF; | |
1613 result = -1; | |
1614 } | |
1615 vim_free(str); | |
1616 return result; | |
1617 } | |
1618 | |
1619 static void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1620 tcl_channel_watch(ClientData instance UNUSED, int mask UNUSED) |
7 | 1621 { |
1622 Tcl_SetErrno(EINVAL); | |
1623 } | |
1624 | |
1625 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1626 tcl_channel_gethandle( |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1627 ClientData instance UNUSED, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1628 int direction UNUSED, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1629 ClientData *handleptr UNUSED) |
7 | 1630 { |
1631 Tcl_SetErrno(EINVAL); | |
1632 return EINVAL; | |
1633 } | |
1634 | |
1635 | |
7776
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
1636 static Tcl_ChannelType tcl_channel_type = |
7 | 1637 { |
1890 | 1638 "vimmessage", /* typeName */ |
3369 | 1639 TCL_CHANNEL_VERSION_2, /* version */ |
7776
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
1640 tcl_channel_close, /* closeProc */ |
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
1641 tcl_channel_input, /* inputProc */ |
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
1642 tcl_channel_output, /* outputProc */ |
1890 | 1643 NULL, /* seekProc */ |
1644 NULL, /* setOptionProc */ | |
1645 NULL, /* getOptionProc */ | |
7776
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
1646 tcl_channel_watch, /* watchProc */ |
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
1647 tcl_channel_gethandle, /* getHandleProc */ |
1890 | 1648 NULL, /* close2Proc */ |
1649 NULL, /* blockModeProc */ | |
1650 #ifdef TCL_CHANNEL_VERSION_2 | |
1651 NULL, /* flushProc */ | |
1652 NULL, /* handlerProc */ | |
1653 #endif | |
3369 | 1654 /* The following should not be necessary since TCL_CHANNEL_VERSION_2 was |
1655 * set above */ | |
1890 | 1656 #ifdef TCL_CHANNEL_VERSION_3 |
1657 NULL, /* wideSeekProc */ | |
1658 #endif | |
1659 #ifdef TCL_CHANNEL_VERSION_4 | |
1660 NULL, /* threadActionProc */ | |
1661 #endif | |
1662 #ifdef TCL_CHANNEL_VERSION_5 | |
1663 NULL /* truncateProc */ | |
1664 #endif | |
7 | 1665 }; |
1666 | |
1667 /********************************** | |
1668 Interface to vim | |
1669 **********************************/ | |
1670 | |
1671 static void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1672 tclupdatevars(void) |
7 | 1673 { |
1674 char varname[VARNAME_SIZE]; /* must be writeable */ | |
1675 char *name; | |
1676 | |
1677 strcpy(varname, VAR_RANGE1); | |
1678 Tcl_UpdateLinkedVar(tclinfo.interp, varname); | |
1679 strcpy(varname, VAR_RANGE2); | |
1680 Tcl_UpdateLinkedVar(tclinfo.interp, varname); | |
1681 strcpy(varname, VAR_RANGE3); | |
1682 Tcl_UpdateLinkedVar(tclinfo.interp, varname); | |
1683 | |
1684 strcpy(varname, VAR_LBASE); | |
1685 Tcl_UpdateLinkedVar(tclinfo.interp, varname); | |
1686 | |
1687 name = tclgetbuffer(tclinfo.interp, curbuf); | |
1688 strcpy(tclinfo.curbuf, name); | |
1689 strcpy(varname, VAR_CURBUF); | |
1690 Tcl_UpdateLinkedVar(tclinfo.interp, varname); | |
1691 | |
1692 name = tclgetwindow(tclinfo.interp, curwin); | |
1693 strcpy(tclinfo.curwin, name); | |
1694 strcpy(varname, VAR_CURWIN); | |
1695 Tcl_UpdateLinkedVar(tclinfo.interp, varname); | |
1696 } | |
1697 | |
1698 | |
1699 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1700 tclinit(exarg_T *eap) |
7 | 1701 { |
1702 char varname[VARNAME_SIZE]; /* Tcl_LinkVar requires writeable varname */ | |
1703 char *name; | |
1704 | |
1705 #ifdef DYNAMIC_TCL | |
1706 if (!tcl_enabled(TRUE)) | |
1707 { | |
1708 EMSG(_("E571: Sorry, this command is disabled: the Tcl library could not be loaded.")); | |
1709 return FAIL; | |
1710 } | |
1711 #endif | |
1712 | |
1713 if (!tclinfo.interp) | |
1714 { | |
1715 Tcl_Interp *interp; | |
1716 static Tcl_Channel ch1, ch2; | |
1717 | |
3369 | 1718 /* Create replacement channels for stdout and stderr; this has to be |
1719 * done each time an interpreter is created since the channels are closed | |
1720 * when the interpreter is deleted */ | |
7776
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
1721 ch1 = Tcl_CreateChannel(&tcl_channel_type, "vimout", VIMOUT, TCL_WRITABLE); |
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
1722 ch2 = Tcl_CreateChannel(&tcl_channel_type, "vimerr", VIMERR, TCL_WRITABLE); |
7 | 1723 Tcl_SetStdChannel(ch1, TCL_STDOUT); |
1724 Tcl_SetStdChannel(ch2, TCL_STDERR); | |
1725 | |
1726 interp = Tcl_CreateInterp(); | |
1727 Tcl_Preserve(interp); | |
1728 if (Tcl_Init(interp) == TCL_ERROR) | |
1729 { | |
1730 Tcl_Release(interp); | |
1731 Tcl_DeleteInterp(interp); | |
1732 return FAIL; | |
1733 } | |
1734 #if 0 | |
1735 /* VIM sure is interactive */ | |
1736 Tcl_SetVar(interp, "tcl_interactive", "1", TCL_GLOBAL_ONLY); | |
1737 #endif | |
1738 | |
1739 Tcl_SetChannelOption(interp, ch1, "-buffering", "line"); | |
3369 | 1740 #ifdef WIN3264 |
1741 Tcl_SetChannelOption(interp, ch1, "-translation", "lf"); | |
1742 #endif | |
7 | 1743 Tcl_SetChannelOption(interp, ch2, "-buffering", "line"); |
3369 | 1744 #ifdef WIN3264 |
1745 Tcl_SetChannelOption(interp, ch2, "-translation", "lf"); | |
1746 #endif | |
7 | 1747 |
3369 | 1748 /* replace standard Tcl exit command */ |
7 | 1749 Tcl_DeleteCommand(interp, "exit"); |
1750 Tcl_CreateObjCommand(interp, "exit", exitcmd, | |
1751 (ClientData)NULL, (Tcl_CmdDeleteProc *)NULL); | |
1752 | |
1753 /* new commands, in ::vim namespace */ | |
1754 Tcl_CreateObjCommand(interp, "::vim::buffer", buffercmd, | |
1755 (ClientData)NULL, (Tcl_CmdDeleteProc *)NULL); | |
1756 Tcl_CreateObjCommand(interp, "::vim::window", windowcmd, | |
1757 (ClientData)NULL, (Tcl_CmdDeleteProc *)NULL); | |
1758 Tcl_CreateObjCommand(interp, "::vim::command", commandcmd, | |
1759 (ClientData)NULL, (Tcl_CmdDeleteProc *)NULL); | |
1760 Tcl_CreateObjCommand(interp, "::vim::beep", beepcmd, | |
1761 (ClientData)NULL, (Tcl_CmdDeleteProc *)NULL); | |
1762 Tcl_CreateObjCommand(interp, "::vim::option", optioncmd, | |
1763 (ClientData)NULL, (Tcl_CmdDeleteProc *)NULL); | |
1764 Tcl_CreateObjCommand(interp, "::vim::expr", exprcmd, | |
1765 (ClientData)NULL, (Tcl_CmdDeleteProc *)NULL); | |
1766 | |
1767 /* "lbase" variable */ | |
1768 tclinfo.lbase = 1; | |
1769 strcpy(varname, VAR_LBASE); | |
1770 Tcl_LinkVar(interp, varname, (char *)&tclinfo.lbase, TCL_LINK_INT); | |
1771 | |
1772 /* "range" variable */ | |
1773 tclinfo.range_start = eap->line1; | |
1774 strcpy(varname, VAR_RANGE1); | |
1775 Tcl_LinkVar(interp, varname, (char *)&tclinfo.range_start, TCL_LINK_INT|TCL_LINK_READ_ONLY); | |
1776 strcpy(varname, VAR_RANGE2); | |
1777 Tcl_LinkVar(interp, varname, (char *)&tclinfo.range_start, TCL_LINK_INT|TCL_LINK_READ_ONLY); | |
1778 tclinfo.range_end = eap->line2; | |
1779 strcpy(varname, VAR_RANGE3); | |
1780 Tcl_LinkVar(interp, varname, (char *)&tclinfo.range_end, TCL_LINK_INT|TCL_LINK_READ_ONLY); | |
1781 | |
1782 /* "current" variable */ | |
1783 tclinfo.curbuf = Tcl_Alloc(VARNAME_SIZE); | |
1784 tclinfo.curwin = Tcl_Alloc(VARNAME_SIZE); | |
1785 name = tclgetbuffer(interp, curbuf); | |
1786 strcpy(tclinfo.curbuf, name); | |
1787 strcpy(varname, VAR_CURBUF); | |
1788 Tcl_LinkVar(interp, varname, (char *)&tclinfo.curbuf, TCL_LINK_STRING|TCL_LINK_READ_ONLY); | |
1789 name = tclgetwindow(interp, curwin); | |
1790 strcpy(tclinfo.curwin, name); | |
1791 strcpy(varname, VAR_CURWIN); | |
1792 Tcl_LinkVar(interp, varname, (char *)&tclinfo.curwin, TCL_LINK_STRING|TCL_LINK_READ_ONLY); | |
1793 | |
1794 tclinfo.interp = interp; | |
1795 } | |
1796 else | |
1797 { | |
1798 /* Interpreter already exists, just update variables */ | |
1799 tclinfo.range_start = row2tcl(eap->line1); | |
1800 tclinfo.range_end = row2tcl(eap->line2); | |
1801 tclupdatevars(); | |
1802 } | |
3369 | 1803 |
1804 tclinfo.exitvalue = 0; | |
7 | 1805 return OK; |
1806 } | |
1807 | |
1808 static void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1809 tclerrmsg(char *text) |
7 | 1810 { |
1811 char *next; | |
1812 | |
1813 while ((next=strchr(text, '\n'))) | |
1814 { | |
1815 *next++ = '\0'; | |
1816 EMSG(text); | |
1817 text = next; | |
1818 } | |
1819 if (*text) | |
1820 EMSG(text); | |
1821 } | |
1822 | |
1823 static void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1824 tclmsg(char *text) |
7 | 1825 { |
1826 char *next; | |
1827 | |
1828 while ((next=strchr(text, '\n'))) | |
1829 { | |
1830 *next++ = '\0'; | |
1831 MSG(text); | |
1832 text = next; | |
1833 } | |
1834 if (*text) | |
1835 MSG(text); | |
1836 } | |
1837 | |
1838 static void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1839 tcldelthisinterp(void) |
7 | 1840 { |
1841 if (!Tcl_InterpDeleted(tclinfo.interp)) | |
1842 Tcl_DeleteInterp(tclinfo.interp); | |
1843 Tcl_Release(tclinfo.interp); | |
1844 /* The interpreter is now gets deleted. All registered commands (esp. | |
1845 * window and buffer commands) are deleted, triggering their deletion | |
1846 * callback, which deletes all refs pointing to this interpreter. | |
1847 * We could garbage-collect the unused ref structs in all windows and | |
1848 * buffers, but unless the user creates hundreds of sub-interpreters | |
1222 | 1849 * all referring to lots of windows and buffers, this is hardly worth |
7 | 1850 * the effort. Unused refs are recycled by other interpreters, and |
1851 * all refs are free'd when the window/buffer gets closed by vim. | |
1852 */ | |
1853 | |
1854 tclinfo.interp = NULL; | |
1855 Tcl_Free(tclinfo.curbuf); | |
1856 Tcl_Free(tclinfo.curwin); | |
1857 tclinfo.curbuf = tclinfo.curwin = NULL; | |
1858 } | |
1859 | |
1860 static int | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1861 tclexit(int error) |
7 | 1862 { |
1863 int newerr = OK; | |
1864 | |
3369 | 1865 if (Tcl_InterpDeleted(tclinfo.interp) /* True if we intercepted Tcl's exit command */ |
1866 #if (TCL_MAJOR_VERSION == 8 && TCL_MINOR_VERSION >= 5) || TCL_MAJOR_VERSION > 8 | |
1867 || Tcl_LimitExceeded(tclinfo.interp) /* True if the interpreter cannot continue */ | |
1868 #endif | |
1869 ) | |
7 | 1870 { |
274 | 1871 char buf[50]; |
7 | 1872 |
3369 | 1873 sprintf(buf, _("E572: exit code %d"), tclinfo.exitvalue); |
1874 tclerrmsg(buf); | |
1875 if (tclinfo.exitvalue == 0) | |
7 | 1876 { |
3369 | 1877 did_emsg = 0; |
1878 newerr = OK; | |
7 | 1879 } |
1880 else | |
3369 | 1881 newerr = FAIL; |
7 | 1882 |
1883 tcldelthisinterp(); | |
1884 } | |
1885 else | |
1886 { | |
1887 char *result; | |
1888 | |
135 | 1889 result = (char *)Tcl_GetStringResult(tclinfo.interp); |
7 | 1890 if (error == TCL_OK) |
1891 { | |
1892 tclmsg(result); | |
1893 newerr = OK; | |
1894 } | |
1895 else | |
1896 { | |
1897 tclerrmsg(result); | |
1898 newerr = FAIL; | |
1899 } | |
1900 } | |
1901 | |
1902 return newerr; | |
1903 } | |
1904 | |
1905 /* | |
1906 * ":tcl" | |
1907 */ | |
1908 void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1909 ex_tcl(exarg_T *eap) |
7 | 1910 { |
1911 char_u *script; | |
1912 int err; | |
1913 | |
1914 script = script_get(eap, eap->arg); | |
1915 if (!eap->skip) | |
1916 { | |
1917 err = tclinit(eap); | |
1918 if (err == OK) | |
1919 { | |
1920 Tcl_AllowExceptions(tclinfo.interp); | |
1921 if (script == NULL) | |
1922 err = Tcl_Eval(tclinfo.interp, (char *)eap->arg); | |
1923 else | |
1924 err = Tcl_Eval(tclinfo.interp, (char *)script); | |
1925 err = tclexit(err); | |
1926 } | |
1927 } | |
1928 vim_free(script); | |
1929 } | |
1930 | |
1931 /* | |
1932 * ":tclfile" | |
1933 */ | |
1934 void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1935 ex_tclfile(exarg_T *eap) |
7 | 1936 { |
1937 char *file = (char *)eap->arg; | |
1938 int err; | |
1939 | |
1940 err = tclinit(eap); | |
1941 if (err == OK) | |
1942 { | |
1943 Tcl_AllowExceptions(tclinfo.interp); | |
1944 err = Tcl_EvalFile(tclinfo.interp, file); | |
1945 err = tclexit(err); | |
1946 } | |
1947 } | |
1948 | |
1949 /* | |
1950 * ":tcldo" | |
1951 */ | |
1952 void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1953 ex_tcldo(exarg_T *eap) |
7 | 1954 { |
1955 char *script, *line; | |
1956 int err, rs, re, lnum; | |
1957 char var_lnum[VARNAME_SIZE]; /* must be writeable memory */ | |
1958 char var_line[VARNAME_SIZE]; | |
1959 linenr_T first_line = 0; | |
1960 linenr_T last_line = 0; | |
10763
ae0bbbbe2a38
patch 8.0.0271: may get ml_get error when :tcldo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1961 buf_T *was_curbuf = curbuf; |
7 | 1962 |
1963 rs = eap->line1; | |
1964 re = eap->line2; | |
1965 script = (char *)eap->arg; | |
1966 strcpy(var_lnum, VAR_CURLNUM); | |
1967 strcpy(var_line, VAR_CURLINE); | |
1968 | |
1969 err = tclinit(eap); | |
1970 if (err != OK) | |
1971 return; | |
1972 | |
1973 lnum = row2tcl(rs); | |
1974 Tcl_LinkVar(tclinfo.interp, var_lnum, (char *)&lnum, TCL_LINK_INT|TCL_LINK_READ_ONLY); | |
1975 err = TCL_OK; | |
1976 if (u_save((linenr_T)(rs-1), (linenr_T)(re+1)) != OK) | |
1977 { | |
1978 Tcl_SetResult(tclinfo.interp, _("cannot save undo information"), TCL_STATIC); | |
1979 err = TCL_ERROR; | |
1980 } | |
1981 while (err == TCL_OK && rs <= re) | |
1982 { | |
10763
ae0bbbbe2a38
patch 8.0.0271: may get ml_get error when :tcldo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1983 if ((linenr_T)rs > curbuf->b_ml.ml_line_count) |
ae0bbbbe2a38
patch 8.0.0271: may get ml_get error when :tcldo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1984 break; |
7 | 1985 line = (char *)ml_get_buf(curbuf, (linenr_T)rs, FALSE); |
1986 if (!line) | |
1987 { | |
1988 Tcl_SetResult(tclinfo.interp, _("cannot get line"), TCL_STATIC); | |
1989 err = TCL_ERROR; | |
1990 break; | |
1991 } | |
1992 Tcl_SetVar(tclinfo.interp, var_line, line, 0); | |
1993 Tcl_AllowExceptions(tclinfo.interp); | |
1994 err = Tcl_Eval(tclinfo.interp, script); | |
3369 | 1995 if (err != TCL_OK |
1996 || Tcl_InterpDeleted(tclinfo.interp) | |
1997 #if (TCL_MAJOR_VERSION == 8 && TCL_MINOR_VERSION >= 5) || TCL_MAJOR_VERSION > 8 | |
1998 || Tcl_LimitExceeded(tclinfo.interp) | |
1999 #endif | |
10763
ae0bbbbe2a38
patch 8.0.0271: may get ml_get error when :tcldo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2000 || curbuf != was_curbuf) |
7 | 2001 break; |
135 | 2002 line = (char *)Tcl_GetVar(tclinfo.interp, var_line, 0); |
7 | 2003 if (line) |
2004 { | |
2005 if (ml_replace((linenr_T)rs, (char_u *)line, TRUE) != OK) | |
2006 { | |
2007 Tcl_SetResult(tclinfo.interp, _("cannot replace line"), TCL_STATIC); | |
2008 err = TCL_ERROR; | |
2009 break; | |
2010 } | |
2011 if (first_line == 0) | |
2012 first_line = rs; | |
2013 last_line = rs; | |
2014 } | |
2015 ++rs; | |
2016 ++lnum; | |
2017 Tcl_UpdateLinkedVar(tclinfo.interp, var_lnum); | |
2018 } | |
2019 if (first_line) | |
2020 changed_lines(first_line, 0, last_line + 1, (long)0); | |
2021 | |
2022 Tcl_UnsetVar(tclinfo.interp, var_line, 0); | |
2023 Tcl_UnlinkVar(tclinfo.interp, var_lnum); | |
2024 if (err == TCL_OK) | |
2025 Tcl_ResetResult(tclinfo.interp); | |
2026 | |
2027 (void)tclexit(err); | |
2028 } | |
2029 | |
2030 static void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
2031 tcldelallrefs(struct ref *ref) |
7 | 2032 { |
2033 struct ref *next; | |
2034 int err; | |
2035 char *result; | |
2036 | |
7564
aee06f1762e0
commit https://github.com/vim/vim/commit/858b96f382eeb8f1eab5100639e7b09523a6a2a1
Christian Brabandt <cb@256bit.org>
parents:
7538
diff
changeset
|
2037 #ifdef DYNAMIC_TCL |
7538
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
2038 /* TODO: this code currently crashes Vim on exit */ |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
2039 if (exiting) |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
2040 return; |
7564
aee06f1762e0
commit https://github.com/vim/vim/commit/858b96f382eeb8f1eab5100639e7b09523a6a2a1
Christian Brabandt <cb@256bit.org>
parents:
7538
diff
changeset
|
2041 #endif |
7538
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
2042 |
7 | 2043 while (ref != NULL) |
2044 { | |
2045 next = ref->next; | |
2046 if (ref->interp) | |
2047 { | |
2048 if (ref->delcmd) | |
2049 { | |
2050 err = Tcl_GlobalEvalObj(ref->interp, ref->delcmd); | |
2051 if (err != TCL_OK) | |
2052 { | |
135 | 2053 result = (char *)Tcl_GetStringResult(ref->interp); |
7 | 2054 if (result) |
2055 tclerrmsg(result); | |
2056 } | |
2057 Tcl_DecrRefCount(ref->delcmd); | |
2058 ref->delcmd = NULL; | |
2059 } | |
2060 Tcl_DeleteCommandFromToken(ref->interp, ref->cmd); | |
2061 } | |
2062 Tcl_Free((char *)ref); | |
2063 ref = next; | |
2064 } | |
2065 } | |
2066 | |
2067 void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
2068 tcl_buffer_free(buf_T *buf) |
7 | 2069 { |
2070 struct ref *reflist; | |
2071 | |
2072 #ifdef DYNAMIC_TCL | |
2073 if (!stubs_initialized) /* Not using Tcl, nothing to do. */ | |
2074 return; | |
2075 #endif | |
2076 | |
502 | 2077 reflist = (struct ref *)(buf->b_tcl_ref); |
7 | 2078 if (reflist != &refsdeleted) |
2079 { | |
502 | 2080 buf->b_tcl_ref = (void *)&refsdeleted; |
7 | 2081 tcldelallrefs(reflist); |
502 | 2082 buf->b_tcl_ref = NULL; |
7 | 2083 } |
2084 } | |
2085 | |
2086 void | |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
2087 tcl_window_free(win_T *win) |
7 | 2088 { |
2089 struct ref *reflist; | |
2090 | |
2091 #ifdef DYNAMIC_TCL | |
2092 if (!stubs_initialized) /* Not using Tcl, nothing to do. */ | |
2093 return; | |
2094 #endif | |
2095 | |
502 | 2096 reflist = (struct ref*)(win->w_tcl_ref); |
7 | 2097 if (reflist != &refsdeleted) |
2098 { | |
502 | 2099 win->w_tcl_ref = (void *)&refsdeleted; |
7 | 2100 tcldelallrefs(reflist); |
502 | 2101 win->w_tcl_ref = NULL; |
7 | 2102 } |
2103 } | |
2104 | |
2105 /* The End */ |