Mercurial > vim
annotate src/netbeans.c @ 7249:56c48d316ed0
Added tag v7.4.932 for changeset dc7b1567d0574b7b256a58f745051404eb28657d
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 21 Nov 2015 14:45:04 +0100 |
parents | 62ba356c2d4e |
children | 1886f2863437 |
rev | line source |
---|---|
7 | 1 /* vi:set ts=8 sts=4 sw=4: |
2 * | |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * Netbeans integration by David Weatherford | |
5 * Adopted for Win32 by Sergey Khorev | |
6 * | |
7 * Do ":help uganda" in Vim to read copying and usage conditions. | |
8 * Do ":help credits" in Vim to see a list of people who contributed. | |
9 */ | |
10 | |
11 /* | |
12 * Implements client side of org.netbeans.modules.emacs editor | |
13 * integration protocol. Be careful! The protocol uses offsets | |
14 * which are *between* characters, whereas vim uses line number | |
15 * and column number which are *on* characters. | |
16 * See ":help netbeans-protocol" for explanation. | |
3151 | 17 * |
18 * The Netbeans messages are received and queued in the gui event loop, or in | |
19 * the select loop when Vim runs in a terminal. These messages are processed | |
20 * by netbeans_parse_messages() which is invoked in the idle loop when Vim is | |
21 * waiting for user input. The function netbeans_parse_messages() is also | |
22 * called from the ":sleep" command, to allow the execution of test cases that | |
23 * may not invoke the idle loop. | |
7 | 24 */ |
25 | |
26 #include "vim.h" | |
27 | |
28 #if defined(FEAT_NETBEANS_INTG) || defined(PROTO) | |
29 | |
2210 | 30 /* TODO: when should this not be defined? */ |
31 #define INET_SOCKETS | |
32 | |
7 | 33 /* Note: when making changes here also adjust configure.in. */ |
34 #ifdef WIN32 | |
35 # ifdef DEBUG | |
36 # include <tchar.h> /* for _T definition for TRACEn macros */ | |
37 # endif | |
38 /* WinSock API is separated from C API, thus we can't use read(), write(), | |
39 * errno... */ | |
2213
0e0e99d1092e
Fix for Netbeans on MS-Windows not compiling.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
40 # define SOCK_ERRNO errno = WSAGetLastError() |
1909 | 41 # undef ECONNREFUSED |
7 | 42 # define ECONNREFUSED WSAECONNREFUSED |
43 # ifdef EINTR | |
44 # undef EINTR | |
45 # endif | |
46 # define EINTR WSAEINTR | |
47 # define sock_write(sd, buf, len) send(sd, buf, len, 0) | |
48 # define sock_read(sd, buf, len) recv(sd, buf, len, 0) | |
49 # define sock_close(sd) closesocket(sd) | |
50 # define sleep(t) Sleep(t*1000) /* WinAPI Sleep() accepts milliseconds */ | |
51 #else | |
2210 | 52 # ifdef INET_SOCKETS |
53 # include <netdb.h> | |
54 # include <netinet/in.h> | |
55 # else | |
56 # include <sys/un.h> | |
57 # endif | |
58 | |
7 | 59 # include <sys/socket.h> |
60 # ifdef HAVE_LIBGEN_H | |
61 # include <libgen.h> | |
62 # endif | |
2213
0e0e99d1092e
Fix for Netbeans on MS-Windows not compiling.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
63 # define SOCK_ERRNO |
7 | 64 # define sock_write(sd, buf, len) write(sd, buf, len) |
65 # define sock_read(sd, buf, len) read(sd, buf, len) | |
66 # define sock_close(sd) close(sd) | |
67 #endif | |
68 | |
69 #include "version.h" | |
70 | |
71 #define GUARDED 10000 /* typenr for "guarded" annotation */ | |
72 #define GUARDEDOFFSET 1000000 /* base for "guarded" sign id's */ | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
73 #define MAX_COLOR_LENGTH 32 /* max length of color name in defineAnnoType */ |
7 | 74 |
75 /* The first implementation (working only with Netbeans) returned "1.1". The | |
76 * protocol implemented here also supports A-A-P. */ | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
77 static char *ExtEdProtocolVersion = "2.5"; |
7 | 78 |
79 static long pos2off __ARGS((buf_T *, pos_T *)); | |
80 static pos_T *off2pos __ARGS((buf_T *, long)); | |
81 static pos_T *get_off_or_lnum __ARGS((buf_T *buf, char_u **argp)); | |
82 static long get_buf_size __ARGS((buf_T *)); | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
83 static int netbeans_keystring __ARGS((char_u *keystr)); |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
84 static void postpone_keycommand __ARGS((char_u *keystr)); |
33 | 85 static void special_keys __ARGS((char_u *args)); |
7 | 86 |
2210 | 87 static int netbeans_connect __ARGS((char *, int)); |
7 | 88 static int getConnInfo __ARGS((char *file, char **host, char **port, char **password)); |
89 | |
90 static void nb_init_graphics __ARGS((void)); | |
91 static void coloncmd __ARGS((char *cmd, ...)); | |
659 | 92 static void nb_set_curbuf __ARGS((buf_T *buf)); |
2592 | 93 #ifdef FEAT_GUI_X11 |
7 | 94 static void messageFromNetbeans __ARGS((XtPointer, int *, XtInputId *)); |
95 #endif | |
96 #ifdef FEAT_GUI_GTK | |
97 static void messageFromNetbeans __ARGS((gpointer, gint, GdkInputCondition)); | |
98 #endif | |
99 static void nb_parse_cmd __ARGS((char_u *)); | |
100 static int nb_do_cmd __ARGS((int, char_u *, int, int, char_u *)); | |
101 static void nb_send __ARGS((char *buf, char *fun)); | |
2210 | 102 static void nb_free __ARGS((void)); |
7 | 103 |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
104 /* TRUE when netbeans is running with a GUI. */ |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
105 #ifdef FEAT_GUI |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
106 # define NB_HAS_GUI (gui.in_use || gui.starting) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
107 #endif |
7 | 108 |
835 | 109 #ifdef WIN64 |
110 typedef __int64 NBSOCK; | |
111 #else | |
112 typedef int NBSOCK; | |
113 #endif | |
114 | |
2210 | 115 static NBSOCK nbsock = -1; /* socket fd for Netbeans connection */ |
116 #define NETBEANS_OPEN (nbsock != -1) | |
117 | |
2592 | 118 #ifdef FEAT_GUI_X11 |
2210 | 119 static XtInputId inputHandler = (XtInputId)NULL; /* Cookie for input */ |
7 | 120 #endif |
121 #ifdef FEAT_GUI_GTK | |
2210 | 122 static gint inputHandler = 0; /* Cookie for input */ |
7 | 123 #endif |
124 #ifdef FEAT_GUI_W32 | |
125 static int inputHandler = -1; /* simply ret.value of WSAAsyncSelect() */ | |
126 extern HWND s_hwnd; /* Gvim's Window handle */ | |
127 #endif | |
944 | 128 static int r_cmdno; /* current command number for reply */ |
33 | 129 static int dosetvisible = FALSE; |
130 | |
7 | 131 /* |
132 * Include the debugging code if wanted. | |
133 */ | |
134 #ifdef NBDEBUG | |
135 # include "nbdebug.c" | |
136 #endif | |
137 | |
2210 | 138 static int needupdate = 0; |
139 static int inAtomic = 0; | |
7 | 140 |
2639 | 141 /* |
142 * Close the socket and remove the input handlers. | |
143 */ | |
7 | 144 static void |
2639 | 145 nb_close_socket(void) |
7 | 146 { |
6689 | 147 buf_T *buf; |
148 | |
149 for (buf = firstbuf; buf != NULL; buf = buf->b_next) | |
150 buf->b_has_sign_column = FALSE; | |
151 | |
2592 | 152 #ifdef FEAT_GUI_X11 |
7 | 153 if (inputHandler != (XtInputId)NULL) |
154 { | |
155 XtRemoveInput(inputHandler); | |
156 inputHandler = (XtInputId)NULL; | |
157 } | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
158 #else |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
159 # ifdef FEAT_GUI_GTK |
7 | 160 if (inputHandler != 0) |
161 { | |
162 gdk_input_remove(inputHandler); | |
163 inputHandler = 0; | |
164 } | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
165 # else |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
166 # ifdef FEAT_GUI_W32 |
7 | 167 if (inputHandler == 0) |
168 { | |
2210 | 169 WSAAsyncSelect(nbsock, s_hwnd, 0, 0); |
7 | 170 inputHandler = -1; |
171 } | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
172 # endif |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
173 # endif |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
174 #endif |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
175 |
2639 | 176 sock_close(nbsock); |
177 nbsock = -1; | |
178 } | |
179 | |
180 /* | |
181 * Close the connection and cleanup. | |
182 * May be called when nb_close_socket() was called earlier. | |
183 */ | |
184 static void | |
185 netbeans_close(void) | |
186 { | |
187 if (NETBEANS_OPEN) | |
188 { | |
189 netbeans_send_disconnect(); | |
190 nb_close_socket(); | |
191 } | |
192 | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
193 #ifdef FEAT_BEVAL |
183 | 194 bevalServers &= ~BEVAL_NETBEANS; |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
195 #endif |
2210 | 196 |
197 needupdate = 0; | |
198 inAtomic = 0; | |
199 nb_free(); | |
200 | |
201 /* remove all signs and update the screen after gutter removal */ | |
202 coloncmd(":sign unplace *"); | |
203 changed_window_setting(); | |
204 update_screen(CLEAR); | |
205 setcursor(); | |
2745 | 206 cursor_on(); |
2210 | 207 out_flush(); |
208 #ifdef FEAT_GUI | |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
209 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
210 { |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
211 gui_update_cursor(TRUE, FALSE); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
212 gui_mch_flush(); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
213 } |
2210 | 214 #endif |
7 | 215 } |
216 | |
217 #define NB_DEF_HOST "localhost" | |
218 #define NB_DEF_ADDR "3219" | |
219 #define NB_DEF_PASS "changeme" | |
220 | |
2210 | 221 static int |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
222 netbeans_connect(char *params, int doabort) |
7 | 223 { |
224 #ifdef INET_SOCKETS | |
225 struct sockaddr_in server; | |
226 struct hostent * host; | |
227 # ifdef FEAT_GUI_W32 | |
228 u_short port; | |
229 # else | |
230 int port; | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
231 # endif |
7 | 232 #else |
233 struct sockaddr_un server; | |
234 #endif | |
2210 | 235 int sd; |
7 | 236 char buf[32]; |
237 char *hostname = NULL; | |
238 char *address = NULL; | |
239 char *password = NULL; | |
240 char *fname; | |
241 char *arg = NULL; | |
242 | |
2210 | 243 if (*params == '=') |
7 | 244 { |
2210 | 245 /* "=fname": Read info from specified file. */ |
246 if (getConnInfo(params + 1, &hostname, &address, &password) | |
7 | 247 == FAIL) |
2210 | 248 return FAIL; |
7 | 249 } |
250 else | |
251 { | |
2210 | 252 if (*params == ':') |
253 /* ":<host>:<addr>:<password>": get info from argument */ | |
254 arg = params + 1; | |
7 | 255 if (arg == NULL && (fname = getenv("__NETBEANS_CONINFO")) != NULL) |
256 { | |
2210 | 257 /* "": get info from file specified in environment */ |
7 | 258 if (getConnInfo(fname, &hostname, &address, &password) == FAIL) |
2210 | 259 return FAIL; |
7 | 260 } |
261 else | |
262 { | |
263 if (arg != NULL) | |
264 { | |
2210 | 265 /* ":<host>:<addr>:<password>": get info from argument */ |
7 | 266 hostname = arg; |
267 address = strchr(hostname, ':'); | |
268 if (address != NULL) | |
269 { | |
270 *address++ = '\0'; | |
271 password = strchr(address, ':'); | |
272 if (password != NULL) | |
273 *password++ = '\0'; | |
274 } | |
275 } | |
276 | |
277 /* Get the missing values from the environment. */ | |
278 if (hostname == NULL || *hostname == '\0') | |
279 hostname = getenv("__NETBEANS_HOST"); | |
280 if (address == NULL) | |
281 address = getenv("__NETBEANS_SOCKET"); | |
282 if (password == NULL) | |
283 password = getenv("__NETBEANS_VIM_PASSWORD"); | |
284 | |
285 /* Move values to allocated memory. */ | |
286 if (hostname != NULL) | |
287 hostname = (char *)vim_strsave((char_u *)hostname); | |
288 if (address != NULL) | |
289 address = (char *)vim_strsave((char_u *)address); | |
290 if (password != NULL) | |
291 password = (char *)vim_strsave((char_u *)password); | |
292 } | |
293 } | |
294 | |
295 /* Use the default when a value is missing. */ | |
296 if (hostname == NULL || *hostname == '\0') | |
297 { | |
298 vim_free(hostname); | |
299 hostname = (char *)vim_strsave((char_u *)NB_DEF_HOST); | |
300 } | |
301 if (address == NULL || *address == '\0') | |
302 { | |
303 vim_free(address); | |
304 address = (char *)vim_strsave((char_u *)NB_DEF_ADDR); | |
305 } | |
306 if (password == NULL || *password == '\0') | |
307 { | |
308 vim_free(password); | |
309 password = (char *)vim_strsave((char_u *)NB_DEF_PASS); | |
310 } | |
311 if (hostname == NULL || address == NULL || password == NULL) | |
312 goto theend; /* out of memory */ | |
313 | |
2210 | 314 #ifdef FEAT_GUI_W32 |
315 netbeans_init_winsock(); | |
316 #endif | |
317 | |
7 | 318 #ifdef INET_SOCKETS |
319 port = atoi(address); | |
320 | |
835 | 321 if ((sd = (NBSOCK)socket(AF_INET, SOCK_STREAM, 0)) == (NBSOCK)-1) |
7 | 322 { |
1618 | 323 nbdebug(("error in socket() in netbeans_connect()\n")); |
7 | 324 PERROR("socket() in netbeans_connect()"); |
325 goto theend; | |
326 } | |
327 | |
328 /* Get the server internet address and put into addr structure */ | |
329 /* fill in the socket address structure and connect to server */ | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2213
diff
changeset
|
330 vim_memset((char *)&server, '\0', sizeof(server)); |
7 | 331 server.sin_family = AF_INET; |
332 server.sin_port = htons(port); | |
333 if ((host = gethostbyname(hostname)) == NULL) | |
334 { | |
1618 | 335 nbdebug(("error in gethostbyname() in netbeans_connect()\n")); |
7 | 336 PERROR("gethostbyname() in netbeans_connect()"); |
2677 | 337 sock_close(sd); |
7 | 338 goto theend; |
339 } | |
340 memcpy((char *)&server.sin_addr, host->h_addr, host->h_length); | |
341 #else | |
342 if ((sd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) | |
343 { | |
1618 | 344 nbdebug(("error in socket() in netbeans_connect()\n")); |
345 PERROR("socket() in netbeans_connect()"); | |
7 | 346 goto theend; |
347 } | |
348 | |
349 server.sun_family = AF_UNIX; | |
350 strcpy(server.sun_path, address); | |
351 #endif | |
352 /* Connect to server */ | |
353 if (connect(sd, (struct sockaddr *)&server, sizeof(server))) | |
354 { | |
2213
0e0e99d1092e
Fix for Netbeans on MS-Windows not compiling.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
355 SOCK_ERRNO; |
0e0e99d1092e
Fix for Netbeans on MS-Windows not compiling.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
356 nbdebug(("netbeans_connect: Connect failed with errno %d\n", errno)); |
0e0e99d1092e
Fix for Netbeans on MS-Windows not compiling.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
357 if (errno == ECONNREFUSED) |
7 | 358 { |
359 sock_close(sd); | |
360 #ifdef INET_SOCKETS | |
835 | 361 if ((sd = (NBSOCK)socket(AF_INET, SOCK_STREAM, 0)) == (NBSOCK)-1) |
7 | 362 { |
2213
0e0e99d1092e
Fix for Netbeans on MS-Windows not compiling.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
363 SOCK_ERRNO; |
1618 | 364 nbdebug(("socket()#2 in netbeans_connect()\n")); |
7 | 365 PERROR("socket()#2 in netbeans_connect()"); |
366 goto theend; | |
367 } | |
368 #else | |
369 if ((sd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) | |
370 { | |
2213
0e0e99d1092e
Fix for Netbeans on MS-Windows not compiling.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
371 SOCK_ERRNO; |
1618 | 372 nbdebug(("socket()#2 in netbeans_connect()\n")); |
7 | 373 PERROR("socket()#2 in netbeans_connect()"); |
374 goto theend; | |
375 } | |
376 #endif | |
377 if (connect(sd, (struct sockaddr *)&server, sizeof(server))) | |
378 { | |
379 int retries = 36; | |
380 int success = FALSE; | |
2213
0e0e99d1092e
Fix for Netbeans on MS-Windows not compiling.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
381 |
0e0e99d1092e
Fix for Netbeans on MS-Windows not compiling.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
382 SOCK_ERRNO; |
0e0e99d1092e
Fix for Netbeans on MS-Windows not compiling.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
383 while (retries-- && ((errno == ECONNREFUSED) |
0e0e99d1092e
Fix for Netbeans on MS-Windows not compiling.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
384 || (errno == EINTR))) |
7 | 385 { |
386 nbdebug(("retrying...\n")); | |
2677 | 387 mch_delay(3000L, TRUE); |
388 ui_breakcheck(); | |
389 if (got_int) | |
2210 | 390 { |
2677 | 391 errno = EINTR; |
392 break; | |
2210 | 393 } |
7 | 394 if (connect(sd, (struct sockaddr *)&server, |
2213
0e0e99d1092e
Fix for Netbeans on MS-Windows not compiling.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
395 sizeof(server)) == 0) |
7 | 396 { |
397 success = TRUE; | |
398 break; | |
399 } | |
2213
0e0e99d1092e
Fix for Netbeans on MS-Windows not compiling.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
400 SOCK_ERRNO; |
7 | 401 } |
402 if (!success) | |
403 { | |
404 /* Get here when the server can't be found. */ | |
1618 | 405 nbdebug(("Cannot connect to Netbeans #2\n")); |
7 | 406 PERROR(_("Cannot connect to Netbeans #2")); |
2677 | 407 sock_close(sd); |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
408 if (doabort) |
2210 | 409 getout(1); |
410 goto theend; | |
7 | 411 } |
412 } | |
413 } | |
414 else | |
415 { | |
1618 | 416 nbdebug(("Cannot connect to Netbeans\n")); |
7 | 417 PERROR(_("Cannot connect to Netbeans")); |
2677 | 418 sock_close(sd); |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
419 if (doabort) |
2210 | 420 getout(1); |
421 goto theend; | |
7 | 422 } |
423 } | |
424 | |
2210 | 425 nbsock = sd; |
272 | 426 vim_snprintf(buf, sizeof(buf), "AUTH %s\n", password); |
7 | 427 nb_send(buf, "netbeans_connect"); |
428 | |
429 sprintf(buf, "0:version=0 \"%s\"\n", ExtEdProtocolVersion); | |
430 nb_send(buf, "externaleditor_version"); | |
431 | |
432 theend: | |
433 vim_free(hostname); | |
434 vim_free(address); | |
435 vim_free(password); | |
2210 | 436 return NETBEANS_OPEN ? OK : FAIL; |
7 | 437 } |
438 | |
439 /* | |
440 * Obtain the NetBeans hostname, port address and password from a file. | |
441 * Return the strings in allocated memory. | |
442 * Return FAIL if the file could not be read, OK otherwise (no matter what it | |
443 * contains). | |
444 */ | |
445 static int | |
446 getConnInfo(char *file, char **host, char **port, char **auth) | |
447 { | |
448 FILE *fp; | |
449 char_u buf[BUFSIZ]; | |
450 char_u *lp; | |
3265 | 451 char_u *nlp; |
7 | 452 #ifdef UNIX |
453 struct stat st; | |
454 | |
455 /* | |
456 * For Unix only accept the file when it's not accessible by others. | |
457 * The open will then fail if we don't own the file. | |
458 */ | |
459 if (mch_stat(file, &st) == 0 && (st.st_mode & 0077) != 0) | |
460 { | |
1618 | 461 nbdebug(("Wrong access mode for NetBeans connection info file: \"%s\"\n", |
462 file)); | |
7 | 463 EMSG2(_("E668: Wrong access mode for NetBeans connection info file: \"%s\""), |
464 file); | |
465 return FAIL; | |
466 } | |
467 #endif | |
468 | |
469 fp = mch_fopen(file, "r"); | |
470 if (fp == NULL) | |
471 { | |
1618 | 472 nbdebug(("Cannot open NetBeans connection info file\n")); |
7 | 473 PERROR("E660: Cannot open NetBeans connection info file"); |
474 return FAIL; | |
475 } | |
476 | |
477 /* Read the file. There should be one of each parameter */ | |
478 while ((lp = (char_u *)fgets((char *)buf, BUFSIZ, fp)) != NULL) | |
479 { | |
3265 | 480 if ((nlp = vim_strchr(lp, '\n')) != NULL) |
481 *nlp = 0; /* strip off the trailing newline */ | |
7 | 482 |
483 if (STRNCMP(lp, "host=", 5) == 0) | |
484 { | |
485 vim_free(*host); | |
486 *host = (char *)vim_strsave(&buf[5]); | |
487 } | |
488 else if (STRNCMP(lp, "port=", 5) == 0) | |
489 { | |
490 vim_free(*port); | |
491 *port = (char *)vim_strsave(&buf[5]); | |
492 } | |
493 else if (STRNCMP(lp, "auth=", 5) == 0) | |
494 { | |
495 vim_free(*auth); | |
496 *auth = (char *)vim_strsave(&buf[5]); | |
497 } | |
498 } | |
499 fclose(fp); | |
500 | |
501 return OK; | |
502 } | |
503 | |
504 | |
505 struct keyqueue | |
506 { | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
507 char_u *keystr; |
7 | 508 struct keyqueue *next; |
509 struct keyqueue *prev; | |
510 }; | |
511 | |
512 typedef struct keyqueue keyQ_T; | |
513 | |
514 static keyQ_T keyHead; /* dummy node, header for circular queue */ | |
515 | |
516 | |
517 /* | |
518 * Queue up key commands sent from netbeans. | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
519 * We store the string, because it may depend on the global mod_mask and |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
520 * :nbkey doesn't have a key number. |
7 | 521 */ |
522 static void | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
523 postpone_keycommand(char_u *keystr) |
7 | 524 { |
525 keyQ_T *node; | |
526 | |
527 node = (keyQ_T *)alloc(sizeof(keyQ_T)); | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
528 if (node == NULL) |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
529 return; /* out of memory, drop the key */ |
7 | 530 |
531 if (keyHead.next == NULL) /* initialize circular queue */ | |
532 { | |
533 keyHead.next = &keyHead; | |
534 keyHead.prev = &keyHead; | |
535 } | |
536 | |
537 /* insert node at tail of queue */ | |
538 node->next = &keyHead; | |
539 node->prev = keyHead.prev; | |
540 keyHead.prev->next = node; | |
541 keyHead.prev = node; | |
542 | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
543 node->keystr = vim_strsave(keystr); |
7 | 544 } |
545 | |
546 /* | |
547 * Handle any queued-up NetBeans keycommands to be send. | |
548 */ | |
549 static void | |
550 handle_key_queue(void) | |
551 { | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
552 int postponed = FALSE; |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
553 |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
554 while (!postponed && keyHead.next && keyHead.next != &keyHead) |
7 | 555 { |
556 /* first, unlink the node */ | |
557 keyQ_T *node = keyHead.next; | |
558 keyHead.next = node->next; | |
559 node->next->prev = node->prev; | |
560 | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
561 /* Now, send the keycommand. This may cause it to be postponed again |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
562 * and change keyHead. */ |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
563 if (node->keystr != NULL) |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
564 postponed = !netbeans_keystring(node->keystr); |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
565 vim_free(node->keystr); |
7 | 566 |
567 /* Finally, dispose of the node */ | |
568 vim_free(node); | |
569 } | |
570 } | |
571 | |
572 | |
573 struct cmdqueue | |
574 { | |
575 char_u *buffer; | |
576 struct cmdqueue *next; | |
577 struct cmdqueue *prev; | |
578 }; | |
579 | |
580 typedef struct cmdqueue queue_T; | |
581 | |
582 static queue_T head; /* dummy node, header for circular queue */ | |
583 | |
584 | |
585 /* | |
586 * Put the buffer on the work queue; possibly save it to a file as well. | |
587 */ | |
588 static void | |
589 save(char_u *buf, int len) | |
590 { | |
591 queue_T *node; | |
592 | |
593 node = (queue_T *)alloc(sizeof(queue_T)); | |
594 if (node == NULL) | |
595 return; /* out of memory */ | |
596 node->buffer = alloc(len + 1); | |
597 if (node->buffer == NULL) | |
598 { | |
599 vim_free(node); | |
600 return; /* out of memory */ | |
601 } | |
602 mch_memmove(node->buffer, buf, (size_t)len); | |
603 node->buffer[len] = NUL; | |
604 | |
605 if (head.next == NULL) /* initialize circular queue */ | |
606 { | |
607 head.next = &head; | |
608 head.prev = &head; | |
609 } | |
610 | |
611 /* insert node at tail of queue */ | |
612 node->next = &head; | |
613 node->prev = head.prev; | |
614 head.prev->next = node; | |
615 head.prev = node; | |
616 | |
617 #ifdef NBDEBUG | |
618 { | |
619 static int outfd = -2; | |
620 | |
621 /* possibly write buffer out to a file */ | |
622 if (outfd == -3) | |
623 return; | |
624 | |
625 if (outfd == -2) | |
626 { | |
627 char *file = getenv("__NETBEANS_SAVE"); | |
628 if (file == NULL) | |
629 outfd = -3; | |
630 else | |
631 outfd = mch_open(file, O_WRONLY|O_CREAT|O_TRUNC, 0666); | |
632 } | |
633 | |
634 if (outfd >= 0) | |
635 write(outfd, buf, len); | |
636 } | |
637 #endif | |
638 } | |
639 | |
640 | |
641 /* | |
642 * While there's still a command in the work queue, parse and execute it. | |
643 */ | |
1618 | 644 void |
645 netbeans_parse_messages(void) | |
7 | 646 { |
647 char_u *p; | |
648 queue_T *node; | |
2653 | 649 int own_node; |
7 | 650 |
1618 | 651 while (head.next != NULL && head.next != &head) |
7 | 652 { |
653 node = head.next; | |
654 | |
655 /* Locate the first line in the first buffer. */ | |
656 p = vim_strchr(node->buffer, '\n'); | |
657 if (p == NULL) | |
658 { | |
659 /* Command isn't complete. If there is no following buffer, | |
660 * return (wait for more). If there is another buffer following, | |
661 * prepend the text to that buffer and delete this one. */ | |
662 if (node->next == &head) | |
663 return; | |
1618 | 664 p = alloc((unsigned)(STRLEN(node->buffer) |
665 + STRLEN(node->next->buffer) + 1)); | |
7 | 666 if (p == NULL) |
667 return; /* out of memory */ | |
668 STRCPY(p, node->buffer); | |
669 STRCAT(p, node->next->buffer); | |
670 vim_free(node->next->buffer); | |
671 node->next->buffer = p; | |
672 | |
673 /* dispose of the node and buffer */ | |
674 head.next = node->next; | |
675 node->next->prev = node->prev; | |
676 vim_free(node->buffer); | |
677 vim_free(node); | |
678 } | |
679 else | |
680 { | |
681 /* There is a complete command at the start of the buffer. | |
682 * Terminate it with a NUL. When no more text is following unlink | |
683 * the buffer. Do this before executing, because new buffers can | |
684 * be added while busy handling the command. */ | |
685 *p++ = NUL; | |
686 if (*p == NUL) | |
687 { | |
2653 | 688 own_node = TRUE; |
7 | 689 head.next = node->next; |
690 node->next->prev = node->prev; | |
691 } | |
2653 | 692 else |
693 own_node = FALSE; | |
7 | 694 |
695 /* now, parse and execute the commands */ | |
696 nb_parse_cmd(node->buffer); | |
697 | |
2653 | 698 if (own_node) |
7 | 699 { |
700 /* buffer finished, dispose of the node and buffer */ | |
701 vim_free(node->buffer); | |
702 vim_free(node); | |
703 } | |
2653 | 704 /* Check that "head" wasn't changed under our fingers, e.g. when a |
705 * DETACH command was handled. */ | |
706 else if (head.next == node) | |
7 | 707 { |
708 /* more follows, move to the start */ | |
1618 | 709 STRMOVE(node->buffer, p); |
7 | 710 } |
711 } | |
712 } | |
713 } | |
714 | |
715 /* Buffer size for reading incoming messages. */ | |
716 #define MAXMSGSIZE 4096 | |
717 | |
718 /* | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
719 * Read a command from netbeans. |
7 | 720 */ |
2592 | 721 #ifdef FEAT_GUI_X11 |
7 | 722 static void |
1885 | 723 messageFromNetbeans(XtPointer clientData UNUSED, |
1884 | 724 int *unused1 UNUSED, |
725 XtInputId *unused2 UNUSED) | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
726 { |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
727 netbeans_read(); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
728 } |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
729 #endif |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
730 |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
731 #ifdef FEAT_GUI_GTK |
7 | 732 static void |
1884 | 733 messageFromNetbeans(gpointer clientData UNUSED, |
734 gint unused1 UNUSED, | |
735 GdkInputCondition unused2 UNUSED) | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
736 { |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
737 netbeans_read(); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
738 } |
7 | 739 #endif |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
740 |
2639 | 741 #define DETACH_MSG "DETACH\n" |
742 | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
743 void |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
744 netbeans_read() |
7 | 745 { |
746 static char_u *buf = NULL; | |
2156
e8ef654038c4
Small fix for compiler warning in Netbeans.
Bram Moolenaar <bram@vim.org>
parents:
2109
diff
changeset
|
747 int len = 0; |
7 | 748 int readlen = 0; |
2109
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
749 #ifdef HAVE_SELECT |
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
750 struct timeval tval; |
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
751 fd_set rfds; |
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
752 #else |
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
753 # ifdef HAVE_POLL |
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
754 struct pollfd fds; |
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
755 # endif |
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
756 #endif |
7 | 757 |
2210 | 758 if (!NETBEANS_OPEN) |
7 | 759 { |
760 nbdebug(("messageFromNetbeans() called without a socket\n")); | |
761 return; | |
762 } | |
763 | |
764 /* Allocate a buffer to read into. */ | |
765 if (buf == NULL) | |
766 { | |
767 buf = alloc(MAXMSGSIZE); | |
768 if (buf == NULL) | |
769 return; /* out of memory! */ | |
770 } | |
771 | |
2109
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
772 /* Keep on reading for as long as there is something to read. |
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
773 * Use select() or poll() to avoid blocking on a message that is exactly |
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
774 * MAXMSGSIZE long. */ |
7 | 775 for (;;) |
776 { | |
2109
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
777 #ifdef HAVE_SELECT |
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
778 FD_ZERO(&rfds); |
2210 | 779 FD_SET(nbsock, &rfds); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
780 tval.tv_sec = 0; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
781 tval.tv_usec = 0; |
2210 | 782 if (select(nbsock + 1, &rfds, NULL, NULL, &tval) <= 0) |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
783 break; |
2109
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
784 #else |
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
785 # ifdef HAVE_POLL |
2210 | 786 fds.fd = nbsock; |
2109
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
787 fds.events = POLLIN; |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
788 if (poll(&fds, 1, 0) <= 0) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
789 break; |
2109
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
790 # endif |
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
791 #endif |
2210 | 792 len = sock_read(nbsock, buf, MAXMSGSIZE); |
7 | 793 if (len <= 0) |
794 break; /* error or nothing more to read */ | |
795 | |
796 /* Store the read message in the queue. */ | |
797 save(buf, len); | |
798 readlen += len; | |
799 if (len < MAXMSGSIZE) | |
800 break; /* did read everything that's available */ | |
801 } | |
802 | |
2639 | 803 /* Reading a socket disconnection (readlen == 0), or a socket error. */ |
7 | 804 if (readlen <= 0) |
805 { | |
2639 | 806 /* Queue a "DETACH" netbeans message in the command queue in order to |
807 * terminate the netbeans session later. Do not end the session here | |
808 * directly as we may be running in the context of a call to | |
809 * netbeans_parse_messages(): | |
810 * netbeans_parse_messages | |
811 * -> autocmd triggered while processing the netbeans cmd | |
812 * -> ui_breakcheck | |
813 * -> gui event loop or select loop | |
814 * -> netbeans_read() | |
815 */ | |
2670 | 816 save((char_u *)DETACH_MSG, (int)strlen(DETACH_MSG)); |
2639 | 817 nb_close_socket(); |
818 | |
7 | 819 if (len < 0) |
1618 | 820 { |
821 nbdebug(("read from Netbeans socket\n")); | |
7 | 822 PERROR(_("read from Netbeans socket")); |
1618 | 823 } |
7 | 824 } |
825 | |
2638 | 826 #if defined(NB_HAS_GUI) && defined(FEAT_GUI_GTK) |
827 if (NB_HAS_GUI && gtk_main_level() > 0) | |
2639 | 828 gtk_main_quit(); |
1618 | 829 #endif |
7 | 830 } |
831 | |
832 /* | |
833 * Handle one NUL terminated command. | |
834 * | |
835 * format of a command from netbeans: | |
836 * | |
837 * 6:setTitle!84 "a.c" | |
838 * | |
839 * bufno | |
840 * colon | |
841 * cmd | |
842 * ! | |
843 * cmdno | |
844 * args | |
845 * | |
846 * for function calls, the ! is replaced by a / | |
847 */ | |
848 static void | |
849 nb_parse_cmd(char_u *cmd) | |
850 { | |
27 | 851 char *verb; |
852 char *q; | |
7 | 853 int bufno; |
854 int isfunc = -1; | |
855 | |
856 if (STRCMP(cmd, "DISCONNECT") == 0) | |
857 { | |
858 /* We assume the server knows that we can safely exit! */ | |
859 /* Disconnect before exiting, Motif hangs in a Select error | |
860 * message otherwise. */ | |
2210 | 861 netbeans_close(); |
7 | 862 getout(0); |
863 /* NOTREACHED */ | |
864 } | |
865 | |
866 if (STRCMP(cmd, "DETACH") == 0) | |
867 { | |
868 /* The IDE is breaking the connection. */ | |
2210 | 869 netbeans_close(); |
7 | 870 return; |
871 } | |
872 | |
27 | 873 bufno = strtol((char *)cmd, &verb, 10); |
7 | 874 |
875 if (*verb != ':') | |
876 { | |
1618 | 877 nbdebug((" missing colon: %s\n", cmd)); |
7 | 878 EMSG2("E627: missing colon: %s", cmd); |
879 return; | |
880 } | |
881 ++verb; /* skip colon */ | |
882 | |
883 for (q = verb; *q; q++) | |
884 { | |
885 if (*q == '!') | |
886 { | |
887 *q++ = NUL; | |
888 isfunc = 0; | |
889 break; | |
890 } | |
891 else if (*q == '/') | |
892 { | |
893 *q++ = NUL; | |
894 isfunc = 1; | |
895 break; | |
896 } | |
897 } | |
898 | |
899 if (isfunc < 0) | |
900 { | |
1618 | 901 nbdebug((" missing ! or / in: %s\n", cmd)); |
7 | 902 EMSG2("E628: missing ! or / in: %s", cmd); |
903 return; | |
904 } | |
905 | |
944 | 906 r_cmdno = strtol(q, &q, 10); |
27 | 907 |
908 q = (char *)skipwhite((char_u *)q); | |
909 | |
944 | 910 if (nb_do_cmd(bufno, (char_u *)verb, isfunc, r_cmdno, (char_u *)q) == FAIL) |
7 | 911 { |
33 | 912 #ifdef NBDEBUG |
913 /* | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1956
diff
changeset
|
914 * This happens because the ExtEd can send a command or 2 after |
33 | 915 * doing a stopDocumentListen command. It doesn't harm anything |
916 * so I'm disabling it except for debugging. | |
917 */ | |
7 | 918 nbdebug(("nb_parse_cmd: Command error for \"%s\"\n", cmd)); |
919 EMSG("E629: bad return from nb_do_cmd"); | |
33 | 920 #endif |
7 | 921 } |
922 } | |
923 | |
924 struct nbbuf_struct | |
925 { | |
926 buf_T *bufp; | |
927 unsigned int fireChanges:1; | |
928 unsigned int initDone:1; | |
33 | 929 unsigned int insertDone:1; |
7 | 930 unsigned int modified:1; |
33 | 931 int nbbuf_number; |
7 | 932 char *displayname; |
933 int *signmap; | |
934 short_u signmaplen; | |
935 short_u signmapused; | |
936 }; | |
937 | |
938 typedef struct nbbuf_struct nbbuf_T; | |
939 | |
2210 | 940 static nbbuf_T *buf_list = NULL; |
344 | 941 static int buf_list_size = 0; /* size of buf_list */ |
942 static int buf_list_used = 0; /* nr of entries in buf_list actually in use */ | |
7 | 943 |
2210 | 944 static char **globalsignmap = NULL; |
945 static int globalsignmaplen = 0; | |
946 static int globalsignmapused = 0; | |
7 | 947 |
948 static int mapsigntype __ARGS((nbbuf_T *, int localsigntype)); | |
949 static void addsigntype __ARGS((nbbuf_T *, int localsigntype, char_u *typeName, | |
950 char_u *tooltip, char_u *glyphfile, | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
951 char_u *fg, char_u *bg)); |
33 | 952 static void print_read_msg __ARGS((nbbuf_T *buf)); |
2241
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
953 static void print_save_msg __ARGS((nbbuf_T *buf, off_t nchars)); |
7 | 954 |
955 static int curPCtype = -1; | |
956 | |
957 /* | |
2210 | 958 * Free netbeans resources. |
959 */ | |
960 static void | |
961 nb_free() | |
962 { | |
963 keyQ_T *key_node = keyHead.next; | |
964 queue_T *cmd_node = head.next; | |
965 nbbuf_T buf; | |
966 int i; | |
967 | |
968 /* free the netbeans buffer list */ | |
969 for (i = 0; i < buf_list_used; i++) | |
970 { | |
971 buf = buf_list[i]; | |
972 vim_free(buf.displayname); | |
973 vim_free(buf.signmap); | |
2656 | 974 if (buf.bufp != NULL) |
2210 | 975 { |
976 buf.bufp->b_netbeans_file = FALSE; | |
977 buf.bufp->b_was_netbeans_file = FALSE; | |
978 } | |
979 } | |
980 vim_free(buf_list); | |
981 buf_list = NULL; | |
982 buf_list_size = 0; | |
983 buf_list_used = 0; | |
984 | |
985 /* free the queued key commands */ | |
3935 | 986 while (key_node != NULL && key_node != &keyHead) |
2210 | 987 { |
988 keyQ_T *next = key_node->next; | |
989 vim_free(key_node->keystr); | |
990 vim_free(key_node); | |
991 if (next == &keyHead) | |
992 { | |
993 keyHead.next = &keyHead; | |
994 keyHead.prev = &keyHead; | |
995 break; | |
996 } | |
997 key_node = next; | |
998 } | |
999 | |
1000 /* free the queued netbeans commands */ | |
3935 | 1001 while (cmd_node != NULL && cmd_node != &head) |
2210 | 1002 { |
1003 queue_T *next = cmd_node->next; | |
1004 vim_free(cmd_node->buffer); | |
1005 vim_free(cmd_node); | |
1006 if (next == &head) | |
1007 { | |
1008 head.next = &head; | |
1009 head.prev = &head; | |
1010 break; | |
1011 } | |
1012 cmd_node = next; | |
1013 } | |
1014 } | |
1015 | |
1016 /* | |
7 | 1017 * Get the Netbeans buffer number for the specified buffer. |
1018 */ | |
1019 static int | |
1020 nb_getbufno(buf_T *bufp) | |
1021 { | |
1022 int i; | |
1023 | |
1024 for (i = 0; i < buf_list_used; i++) | |
1025 if (buf_list[i].bufp == bufp) | |
1026 return i; | |
1027 return -1; | |
1028 } | |
1029 | |
1030 /* | |
1031 * Is this a NetBeans-owned buffer? | |
1032 */ | |
1033 int | |
1034 isNetbeansBuffer(buf_T *bufp) | |
1035 { | |
2210 | 1036 return NETBEANS_OPEN && bufp->b_netbeans_file; |
7 | 1037 } |
1038 | |
1039 /* | |
1040 * NetBeans and Vim have different undo models. In Vim, the file isn't | |
1041 * changed if changes are undone via the undo command. In NetBeans, once | |
1042 * a change has been made the file is marked as modified until saved. It | |
1043 * doesn't matter if the change was undone. | |
1044 * | |
1045 * So this function is for the corner case where Vim thinks a buffer is | |
1046 * unmodified but NetBeans thinks it IS modified. | |
1047 */ | |
1048 int | |
1049 isNetbeansModified(buf_T *bufp) | |
1050 { | |
2210 | 1051 if (isNetbeansBuffer(bufp)) |
33 | 1052 { |
1053 int bufno = nb_getbufno(bufp); | |
1054 | |
1055 if (bufno > 0) | |
1056 return buf_list[bufno].modified; | |
1057 else | |
1058 return FALSE; | |
1059 } | |
7 | 1060 else |
1061 return FALSE; | |
1062 } | |
1063 | |
1064 /* | |
1065 * Given a Netbeans buffer number, return the netbeans buffer. | |
1066 * Returns NULL for 0 or a negative number. A 0 bufno means a | |
1067 * non-buffer related command has been sent. | |
1068 */ | |
1069 static nbbuf_T * | |
1070 nb_get_buf(int bufno) | |
1071 { | |
1072 /* find or create a buffer with the given number */ | |
1073 int incr; | |
1074 | |
1075 if (bufno <= 0) | |
1076 return NULL; | |
1077 | |
1078 if (!buf_list) | |
1079 { | |
1080 /* initialize */ | |
1081 buf_list = (nbbuf_T *)alloc_clear(100 * sizeof(nbbuf_T)); | |
1082 buf_list_size = 100; | |
1083 } | |
1084 if (bufno >= buf_list_used) /* new */ | |
1085 { | |
1086 if (bufno >= buf_list_size) /* grow list */ | |
1087 { | |
6596 | 1088 nbbuf_T *t_buf_list = buf_list; |
1089 | |
7 | 1090 incr = bufno - buf_list_size + 90; |
1091 buf_list_size += incr; | |
1092 buf_list = (nbbuf_T *)vim_realloc( | |
1093 buf_list, buf_list_size * sizeof(nbbuf_T)); | |
6596 | 1094 if (buf_list == NULL) |
1095 { | |
1096 vim_free(t_buf_list); | |
1097 buf_list_size = 0; | |
1098 return NULL; | |
1099 } | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2213
diff
changeset
|
1100 vim_memset(buf_list + buf_list_size - incr, 0, |
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2213
diff
changeset
|
1101 incr * sizeof(nbbuf_T)); |
7 | 1102 } |
1103 | |
1104 while (buf_list_used <= bufno) | |
1105 { | |
1106 /* Default is to fire text changes. */ | |
1107 buf_list[buf_list_used].fireChanges = 1; | |
1108 ++buf_list_used; | |
1109 } | |
1110 } | |
1111 | |
1112 return buf_list + bufno; | |
1113 } | |
1114 | |
1115 /* | |
1116 * Return the number of buffers that are modified. | |
1117 */ | |
1118 static int | |
1119 count_changed_buffers(void) | |
1120 { | |
1121 buf_T *bufp; | |
1122 int n; | |
1123 | |
1124 n = 0; | |
1125 for (bufp = firstbuf; bufp != NULL; bufp = bufp->b_next) | |
1126 if (bufp->b_changed) | |
1127 ++n; | |
1128 return n; | |
1129 } | |
1130 | |
1131 /* | |
1132 * End the netbeans session. | |
1133 */ | |
1134 void | |
1135 netbeans_end(void) | |
1136 { | |
1137 int i; | |
1138 static char buf[128]; | |
1139 | |
2210 | 1140 if (!NETBEANS_OPEN) |
7 | 1141 return; |
1142 | |
1143 for (i = 0; i < buf_list_used; i++) | |
1144 { | |
1145 if (!buf_list[i].bufp) | |
1146 continue; | |
1147 if (netbeansForcedQuit) | |
1148 { | |
1149 /* mark as unmodified so NetBeans won't put up dialog on "killed" */ | |
944 | 1150 sprintf(buf, "%d:unmodified=%d\n", i, r_cmdno); |
7 | 1151 nbdebug(("EVT: %s", buf)); |
1152 nb_send(buf, "netbeans_end"); | |
1153 } | |
944 | 1154 sprintf(buf, "%d:killed=%d\n", i, r_cmdno); |
7 | 1155 nbdebug(("EVT: %s", buf)); |
2210 | 1156 /* nb_send(buf, "netbeans_end"); avoid "write failed" messages */ |
1157 ignored = sock_write(nbsock, buf, (int)STRLEN(buf)); | |
7 | 1158 } |
1159 } | |
1160 | |
1161 /* | |
1162 * Send a message to netbeans. | |
1163 */ | |
1164 static void | |
1165 nb_send(char *buf, char *fun) | |
1166 { | |
1167 /* Avoid giving pages full of error messages when the other side has | |
1168 * exited, only mention the first error until the connection works again. */ | |
1169 static int did_error = FALSE; | |
1170 | |
2210 | 1171 if (!NETBEANS_OPEN) |
7 | 1172 { |
1173 if (!did_error) | |
1618 | 1174 { |
1175 nbdebug((" %s(): write while not connected\n", fun)); | |
7 | 1176 EMSG2("E630: %s(): write while not connected", fun); |
1618 | 1177 } |
7 | 1178 did_error = TRUE; |
1179 } | |
2210 | 1180 else if (sock_write(nbsock, buf, (int)STRLEN(buf)) != (int)STRLEN(buf)) |
7 | 1181 { |
1182 if (!did_error) | |
1618 | 1183 { |
1184 nbdebug((" %s(): write failed\n", fun)); | |
7 | 1185 EMSG2("E631: %s(): write failed", fun); |
1618 | 1186 } |
7 | 1187 did_error = TRUE; |
1188 } | |
1189 else | |
1190 did_error = FALSE; | |
1191 } | |
1192 | |
1193 /* | |
1194 * Some input received from netbeans requires a response. This function | |
1195 * handles a response with no information (except the command number). | |
1196 */ | |
1197 static void | |
1198 nb_reply_nil(int cmdno) | |
1199 { | |
1200 char reply[32]; | |
1201 | |
33 | 1202 nbdebug(("REP %d: <none>\n", cmdno)); |
1203 | |
2639 | 1204 /* Avoid printing an annoying error message. */ |
1205 if (!NETBEANS_OPEN) | |
1206 return; | |
1207 | |
7 | 1208 sprintf(reply, "%d\n", cmdno); |
1209 nb_send(reply, "nb_reply_nil"); | |
1210 } | |
1211 | |
1212 | |
1213 /* | |
1214 * Send a response with text. | |
1215 * "result" must have been quoted already (using nb_quote()). | |
1216 */ | |
1217 static void | |
1218 nb_reply_text(int cmdno, char_u *result) | |
1219 { | |
1220 char_u *reply; | |
1221 | |
33 | 1222 nbdebug(("REP %d: %s\n", cmdno, (char *)result)); |
1223 | |
835 | 1224 reply = alloc((unsigned)STRLEN(result) + 32); |
7 | 1225 sprintf((char *)reply, "%d %s\n", cmdno, (char *)result); |
1226 nb_send((char *)reply, "nb_reply_text"); | |
1227 | |
1228 vim_free(reply); | |
1229 } | |
1230 | |
1231 | |
1232 /* | |
1233 * Send a response with a number result code. | |
1234 */ | |
1235 static void | |
1236 nb_reply_nr(int cmdno, long result) | |
1237 { | |
1238 char reply[32]; | |
1239 | |
33 | 1240 nbdebug(("REP %d: %ld\n", cmdno, result)); |
1241 | |
7 | 1242 sprintf(reply, "%d %ld\n", cmdno, result); |
1243 nb_send(reply, "nb_reply_nr"); | |
1244 } | |
1245 | |
1246 | |
1247 /* | |
1248 * Encode newline, ret, backslash, double quote for transmission to NetBeans. | |
1249 */ | |
1250 static char_u * | |
1251 nb_quote(char_u *txt) | |
1252 { | |
835 | 1253 char_u *buf = alloc((unsigned)(2 * STRLEN(txt) + 1)); |
7 | 1254 char_u *p = txt; |
1255 char_u *q = buf; | |
1256 | |
1257 if (buf == NULL) | |
1258 return NULL; | |
1259 for (; *p; p++) | |
1260 { | |
1261 switch (*p) | |
1262 { | |
1263 case '\"': | |
1264 case '\\': | |
1265 *q++ = '\\'; *q++ = *p; break; | |
1266 /* case '\t': */ | |
1267 /* *q++ = '\\'; *q++ = 't'; break; */ | |
1268 case '\n': | |
1269 *q++ = '\\'; *q++ = 'n'; break; | |
1270 case '\r': | |
1271 *q++ = '\\'; *q++ = 'r'; break; | |
1272 default: | |
1273 *q++ = *p; | |
1274 break; | |
1275 } | |
1276 } | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1956
diff
changeset
|
1277 *q = '\0'; |
7 | 1278 |
1279 return buf; | |
1280 } | |
1281 | |
1282 | |
1283 /* | |
1284 * Remove top level double quotes; convert backslashed chars. | |
1285 * Returns an allocated string (NULL for failure). | |
1286 * If "endp" is not NULL it is set to the character after the terminating | |
1287 * quote. | |
1288 */ | |
1289 static char * | |
1290 nb_unquote(char_u *p, char_u **endp) | |
1291 { | |
1292 char *result = 0; | |
1293 char *q; | |
1294 int done = 0; | |
1295 | |
1296 /* result is never longer than input */ | |
835 | 1297 result = (char *)alloc_clear((unsigned)STRLEN(p) + 1); |
7 | 1298 if (result == NULL) |
1299 return NULL; | |
1300 | |
1301 if (*p++ != '"') | |
1302 { | |
1303 nbdebug(("nb_unquote called with string that doesn't start with a quote!: %s\n", | |
1304 p)); | |
1305 result[0] = NUL; | |
1306 return result; | |
1307 } | |
1308 | |
1309 for (q = result; !done && *p != NUL;) | |
1310 { | |
1311 switch (*p) | |
1312 { | |
1313 case '"': | |
1314 /* | |
1315 * Unbackslashed dquote marks the end, if first char was dquote. | |
1316 */ | |
1317 done = 1; | |
1318 break; | |
1319 | |
1320 case '\\': | |
1321 ++p; | |
1322 switch (*p) | |
1323 { | |
1324 case '\\': *q++ = '\\'; break; | |
1325 case 'n': *q++ = '\n'; break; | |
1326 case 't': *q++ = '\t'; break; | |
1327 case 'r': *q++ = '\r'; break; | |
1328 case '"': *q++ = '"'; break; | |
1329 case NUL: --p; break; | |
1330 /* default: skip over illegal chars */ | |
1331 } | |
1332 ++p; | |
1333 break; | |
1334 | |
1335 default: | |
1336 *q++ = *p++; | |
1337 } | |
1338 } | |
1339 | |
1340 if (endp != NULL) | |
1341 *endp = p; | |
1342 | |
1343 return result; | |
1344 } | |
1345 | |
1492 | 1346 /* |
1347 * Remove from "first" byte to "last" byte (inclusive), at line "lnum" of the | |
1348 * current buffer. Remove to end of line when "last" is MAXCOL. | |
1349 */ | |
1350 static void | |
1351 nb_partialremove(linenr_T lnum, colnr_T first, colnr_T last) | |
1352 { | |
1353 char_u *oldtext, *newtext; | |
1354 int oldlen; | |
1355 int lastbyte = last; | |
1356 | |
1357 oldtext = ml_get(lnum); | |
1570 | 1358 oldlen = (int)STRLEN(oldtext); |
1517 | 1359 if (first >= (colnr_T)oldlen || oldlen == 0) /* just in case */ |
1492 | 1360 return; |
1361 if (lastbyte >= oldlen) | |
1362 lastbyte = oldlen - 1; | |
1363 newtext = alloc(oldlen - (int)(lastbyte - first)); | |
1364 if (newtext != NULL) | |
1365 { | |
1366 mch_memmove(newtext, oldtext, first); | |
1618 | 1367 STRMOVE(newtext + first, oldtext + lastbyte + 1); |
1492 | 1368 nbdebug((" NEW LINE %d: %s\n", lnum, newtext)); |
1369 ml_replace(lnum, newtext, FALSE); | |
1370 } | |
1371 } | |
1372 | |
1373 /* | |
1374 * Replace the "first" line with the concatenation of the "first" and | |
1375 * the "other" line. The "other" line is not removed. | |
1376 */ | |
1377 static void | |
1378 nb_joinlines(linenr_T first, linenr_T other) | |
1379 { | |
1380 int len_first, len_other; | |
1381 char_u *p; | |
1382 | |
1570 | 1383 len_first = (int)STRLEN(ml_get(first)); |
1384 len_other = (int)STRLEN(ml_get(other)); | |
1492 | 1385 p = alloc((unsigned)(len_first + len_other + 1)); |
1386 if (p != NULL) | |
1387 { | |
1388 mch_memmove(p, ml_get(first), len_first); | |
1389 mch_memmove(p + len_first, ml_get(other), len_other + 1); | |
1390 ml_replace(first, p, FALSE); | |
1391 } | |
1392 } | |
1393 | |
7 | 1394 #define SKIP_STOP 2 |
1395 #define streq(a,b) (strcmp(a,b) == 0) | |
1396 | |
1397 /* | |
1398 * Do the actual processing of a single netbeans command or function. | |
1186 | 1399 * The difference between a command and function is that a function |
1400 * gets a response (it's required) but a command does not. | |
7 | 1401 * For arguments see comment for nb_parse_cmd(). |
1402 */ | |
1403 static int | |
1404 nb_do_cmd( | |
1405 int bufno, | |
1406 char_u *cmd, | |
1407 int func, | |
1408 int cmdno, | |
1409 char_u *args) /* points to space before arguments or NUL */ | |
1410 { | |
3263 | 1411 int do_update = 0; |
7 | 1412 long off = 0; |
1413 nbbuf_T *buf = nb_get_buf(bufno); | |
1414 static int skip = 0; | |
1415 int retval = OK; | |
27 | 1416 char *cp; /* for when a char pointer is needed */ |
7 | 1417 |
1418 nbdebug(("%s %d: (%d) %s %s\n", (func) ? "FUN" : "CMD", cmdno, bufno, cmd, | |
1419 STRCMP(cmd, "insert") == 0 ? "<text>" : (char *)args)); | |
1420 | |
1421 if (func) | |
1422 { | |
1423 /* =====================================================================*/ | |
1424 if (streq((char *)cmd, "getModified")) | |
1425 { | |
1426 if (buf == NULL || buf->bufp == NULL) | |
1427 /* Return the number of buffers that are modified. */ | |
1428 nb_reply_nr(cmdno, (long)count_changed_buffers()); | |
1429 else | |
1430 /* Return whether the buffer is modified. */ | |
1431 nb_reply_nr(cmdno, (long)(buf->bufp->b_changed | |
1432 || isNetbeansModified(buf->bufp))); | |
1433 /* =====================================================================*/ | |
1434 } | |
1435 else if (streq((char *)cmd, "saveAndExit")) | |
1436 { | |
1437 /* Note: this will exit Vim if successful. */ | |
1438 coloncmd(":confirm qall"); | |
1439 | |
1440 /* We didn't exit: return the number of changed buffers. */ | |
1441 nb_reply_nr(cmdno, (long)count_changed_buffers()); | |
1442 /* =====================================================================*/ | |
1443 } | |
1444 else if (streq((char *)cmd, "getCursor")) | |
1445 { | |
1446 char_u text[200]; | |
1447 | |
1448 /* Note: nb_getbufno() may return -1. This indicates the IDE | |
1449 * didn't assign a number to the current buffer in response to a | |
1450 * fileOpened event. */ | |
1451 sprintf((char *)text, "%d %ld %d %ld", | |
1452 nb_getbufno(curbuf), | |
1453 (long)curwin->w_cursor.lnum, | |
1454 (int)curwin->w_cursor.col, | |
1455 pos2off(curbuf, &curwin->w_cursor)); | |
1456 nb_reply_text(cmdno, text); | |
1457 /* =====================================================================*/ | |
1458 } | |
1037 | 1459 else if (streq((char *)cmd, "getAnno")) |
1460 { | |
1461 long linenum = 0; | |
1462 #ifdef FEAT_SIGNS | |
1463 if (buf == NULL || buf->bufp == NULL) | |
1464 { | |
1618 | 1465 nbdebug((" Invalid buffer identifier in getAnno\n")); |
1466 EMSG("E652: Invalid buffer identifier in getAnno"); | |
1037 | 1467 retval = FAIL; |
1468 } | |
1469 else | |
1470 { | |
1471 int serNum; | |
1472 | |
1473 cp = (char *)args; | |
1474 serNum = strtol(cp, &cp, 10); | |
1475 /* If the sign isn't found linenum will be zero. */ | |
1476 linenum = (long)buf_findsign(buf->bufp, serNum); | |
1477 } | |
1478 #endif | |
1479 nb_reply_nr(cmdno, linenum); | |
1480 /* =====================================================================*/ | |
1481 } | |
7 | 1482 else if (streq((char *)cmd, "getLength")) |
1483 { | |
1484 long len = 0; | |
1485 | |
1486 if (buf == NULL || buf->bufp == NULL) | |
1487 { | |
1618 | 1488 nbdebug((" invalid buffer identifier in getLength\n")); |
1489 EMSG("E632: invalid buffer identifier in getLength"); | |
7 | 1490 retval = FAIL; |
1491 } | |
1492 else | |
1493 { | |
1494 len = get_buf_size(buf->bufp); | |
1495 } | |
1496 nb_reply_nr(cmdno, len); | |
1497 /* =====================================================================*/ | |
1498 } | |
1499 else if (streq((char *)cmd, "getText")) | |
1500 { | |
1501 long len; | |
1502 linenr_T nlines; | |
1503 char_u *text = NULL; | |
1504 linenr_T lno = 1; | |
1505 char_u *p; | |
1506 char_u *line; | |
1507 | |
1508 if (buf == NULL || buf->bufp == NULL) | |
1509 { | |
1618 | 1510 nbdebug((" invalid buffer identifier in getText\n")); |
1511 EMSG("E633: invalid buffer identifier in getText"); | |
7 | 1512 retval = FAIL; |
1513 } | |
1514 else | |
1515 { | |
1516 len = get_buf_size(buf->bufp); | |
1517 nlines = buf->bufp->b_ml.ml_line_count; | |
1518 text = alloc((unsigned)((len > 0) | |
1519 ? ((len + nlines) * 2) : 4)); | |
1520 if (text == NULL) | |
1521 { | |
1522 nbdebug((" nb_do_cmd: getText has null text field\n")); | |
1523 retval = FAIL; | |
1524 } | |
1525 else | |
1526 { | |
1527 p = text; | |
1528 *p++ = '\"'; | |
1529 for (; lno <= nlines ; lno++) | |
1530 { | |
1531 line = nb_quote(ml_get_buf(buf->bufp, lno, FALSE)); | |
1532 if (line != NULL) | |
1533 { | |
1534 STRCPY(p, line); | |
1535 p += STRLEN(line); | |
1536 *p++ = '\\'; | |
1537 *p++ = 'n'; | |
33 | 1538 vim_free(line); |
7 | 1539 } |
1540 } | |
1541 *p++ = '\"'; | |
1542 *p = '\0'; | |
1543 } | |
1544 } | |
1545 if (text == NULL) | |
1546 nb_reply_text(cmdno, (char_u *)""); | |
1547 else | |
1548 { | |
1549 nb_reply_text(cmdno, text); | |
1550 vim_free(text); | |
1551 } | |
1552 /* =====================================================================*/ | |
1553 } | |
1554 else if (streq((char *)cmd, "remove")) | |
1555 { | |
1556 long count; | |
1557 pos_T first, last; | |
1558 pos_T *pos; | |
1492 | 1559 pos_T *next; |
1560 linenr_T del_from_lnum, del_to_lnum; /* lines to be deleted as a whole */ | |
7 | 1561 int oldFire = netbeansFireChanges; |
1562 int oldSuppress = netbeansSuppressNoLines; | |
1563 int wasChanged; | |
1564 | |
1565 if (skip >= SKIP_STOP) | |
1566 { | |
1567 nbdebug((" Skipping %s command\n", (char *) cmd)); | |
1568 nb_reply_nil(cmdno); | |
1569 return OK; | |
1570 } | |
1571 | |
1572 if (buf == NULL || buf->bufp == NULL) | |
1573 { | |
1618 | 1574 nbdebug((" invalid buffer identifier in remove\n")); |
1575 EMSG("E634: invalid buffer identifier in remove"); | |
7 | 1576 retval = FAIL; |
1577 } | |
1578 else | |
1579 { | |
1580 netbeansFireChanges = FALSE; | |
1581 netbeansSuppressNoLines = TRUE; | |
1582 | |
659 | 1583 nb_set_curbuf(buf->bufp); |
7 | 1584 wasChanged = buf->bufp->b_changed; |
27 | 1585 cp = (char *)args; |
1586 off = strtol(cp, &cp, 10); | |
1587 count = strtol(cp, &cp, 10); | |
1588 args = (char_u *)cp; | |
7 | 1589 /* delete "count" chars, starting at "off" */ |
1590 pos = off2pos(buf->bufp, off); | |
1591 if (!pos) | |
1592 { | |
1618 | 1593 nbdebug((" !bad position\n")); |
7 | 1594 nb_reply_text(cmdno, (char_u *)"!bad position"); |
1595 netbeansFireChanges = oldFire; | |
1596 netbeansSuppressNoLines = oldSuppress; | |
1597 return FAIL; | |
1598 } | |
1599 first = *pos; | |
1956 | 1600 nbdebug((" FIRST POS: line %d, col %d\n", |
1601 first.lnum, first.col)); | |
7 | 1602 pos = off2pos(buf->bufp, off+count-1); |
1603 if (!pos) | |
1604 { | |
1618 | 1605 nbdebug((" !bad count\n")); |
7 | 1606 nb_reply_text(cmdno, (char_u *)"!bad count"); |
1607 netbeansFireChanges = oldFire; | |
1608 netbeansSuppressNoLines = oldSuppress; | |
1609 return FAIL; | |
1610 } | |
1611 last = *pos; | |
1956 | 1612 nbdebug((" LAST POS: line %d, col %d\n", |
1613 last.lnum, last.col)); | |
1492 | 1614 del_from_lnum = first.lnum; |
1615 del_to_lnum = last.lnum; | |
3263 | 1616 do_update = 1; |
7 | 1617 |
1492 | 1618 /* Get the position of the first byte after the deleted |
1619 * section. "next" is NULL when deleting to the end of the | |
1620 * file. */ | |
1621 next = off2pos(buf->bufp, off + count); | |
1622 | |
1623 /* Remove part of the first line. */ | |
1956 | 1624 if (first.col != 0 |
1625 || (next != NULL && first.lnum == next->lnum)) | |
7 | 1626 { |
1492 | 1627 if (first.lnum != last.lnum |
1628 || (next != NULL && first.lnum != next->lnum)) | |
1629 { | |
1630 /* remove to the end of the first line */ | |
1631 nb_partialremove(first.lnum, first.col, | |
1632 (colnr_T)MAXCOL); | |
1633 if (first.lnum == last.lnum) | |
1634 { | |
1635 /* Partial line to remove includes the end of | |
1636 * line. Join the line with the next one, have | |
1637 * the next line deleted below. */ | |
1638 nb_joinlines(first.lnum, next->lnum); | |
1639 del_to_lnum = next->lnum; | |
1640 } | |
1641 } | |
1642 else | |
1643 { | |
1644 /* remove within one line */ | |
1645 nb_partialremove(first.lnum, first.col, last.col); | |
1646 } | |
1647 ++del_from_lnum; /* don't delete the first line */ | |
7 | 1648 } |
1649 | |
1492 | 1650 /* Remove part of the last line. */ |
1651 if (first.lnum != last.lnum && next != NULL | |
1652 && next->col != 0 && last.lnum == next->lnum) | |
1653 { | |
1654 nb_partialremove(last.lnum, 0, last.col); | |
1655 if (del_from_lnum > first.lnum) | |
1656 { | |
1657 /* Join end of last line to start of first line; last | |
1658 * line is deleted below. */ | |
1659 nb_joinlines(first.lnum, last.lnum); | |
1660 } | |
1661 else | |
1662 /* First line is deleted as a whole, keep the last | |
1663 * line. */ | |
1664 --del_to_lnum; | |
1665 } | |
1666 | |
1667 /* First is partial line; last line to remove includes | |
1668 * the end of line; join first line to line following last | |
1669 * line; line following last line is deleted below. */ | |
1670 if (first.lnum != last.lnum && del_from_lnum > first.lnum | |
1671 && next != NULL && last.lnum != next->lnum) | |
1672 { | |
1673 nb_joinlines(first.lnum, next->lnum); | |
1674 del_to_lnum = next->lnum; | |
1675 } | |
1676 | |
1677 /* Delete whole lines if there are any. */ | |
1678 if (del_to_lnum >= del_from_lnum) | |
7 | 1679 { |
1680 int i; | |
1681 | |
1682 /* delete signs from the lines being deleted */ | |
1492 | 1683 for (i = del_from_lnum; i <= del_to_lnum; i++) |
7 | 1684 { |
1685 int id = buf_findsign_id(buf->bufp, (linenr_T)i); | |
1686 if (id > 0) | |
1687 { | |
1956 | 1688 nbdebug((" Deleting sign %d on line %d\n", |
1689 id, i)); | |
7 | 1690 buf_delsign(buf->bufp, id); |
1691 } | |
1692 else | |
1884 | 1693 { |
7 | 1694 nbdebug((" No sign on line %d\n", i)); |
1884 | 1695 } |
7 | 1696 } |
1697 | |
1956 | 1698 nbdebug((" Deleting lines %d through %d\n", |
1699 del_from_lnum, del_to_lnum)); | |
1492 | 1700 curwin->w_cursor.lnum = del_from_lnum; |
1701 curwin->w_cursor.col = 0; | |
1702 del_lines(del_to_lnum - del_from_lnum + 1, FALSE); | |
7 | 1703 } |
1492 | 1704 |
1705 /* Leave cursor at first deleted byte. */ | |
1706 curwin->w_cursor = first; | |
1707 check_cursor_lnum(); | |
7 | 1708 buf->bufp->b_changed = wasChanged; /* logically unchanged */ |
1709 netbeansFireChanges = oldFire; | |
1710 netbeansSuppressNoLines = oldSuppress; | |
1711 | |
1712 u_blockfree(buf->bufp); | |
1713 u_clearall(buf->bufp); | |
1714 } | |
1715 nb_reply_nil(cmdno); | |
1716 /* =====================================================================*/ | |
1717 } | |
1718 else if (streq((char *)cmd, "insert")) | |
1719 { | |
1720 char_u *to_free; | |
1721 | |
1722 if (skip >= SKIP_STOP) | |
1723 { | |
1724 nbdebug((" Skipping %s command\n", (char *) cmd)); | |
1725 nb_reply_nil(cmdno); | |
1726 return OK; | |
1727 } | |
1728 | |
1729 /* get offset */ | |
27 | 1730 cp = (char *)args; |
1731 off = strtol(cp, &cp, 10); | |
1732 args = (char_u *)cp; | |
7 | 1733 |
1734 /* get text to be inserted */ | |
1735 args = skipwhite(args); | |
1736 args = to_free = (char_u *)nb_unquote(args, NULL); | |
33 | 1737 /* |
1738 nbdebug((" CHUNK[%d]: %d bytes at offset %d\n", | |
1739 buf->bufp->b_ml.ml_line_count, STRLEN(args), off)); | |
1740 */ | |
7 | 1741 |
1742 if (buf == NULL || buf->bufp == NULL) | |
1743 { | |
1618 | 1744 nbdebug((" invalid buffer identifier in insert\n")); |
1745 EMSG("E635: invalid buffer identifier in insert"); | |
7 | 1746 retval = FAIL; |
1747 } | |
1748 else if (args != NULL) | |
1749 { | |
718 | 1750 int ff_detected = EOL_UNKNOWN; |
1751 int buf_was_empty = (buf->bufp->b_ml.ml_flags & ML_EMPTY); | |
1752 size_t len = 0; | |
1753 int added = 0; | |
1754 int oldFire = netbeansFireChanges; | |
1755 int old_b_changed; | |
3265 | 1756 char_u *nlp; |
718 | 1757 linenr_T lnum; |
1758 linenr_T lnum_start; | |
1759 pos_T *pos; | |
1760 | |
7 | 1761 netbeansFireChanges = 0; |
718 | 1762 |
1763 /* Jump to the buffer where we insert. After this "curbuf" | |
1764 * can be used. */ | |
659 | 1765 nb_set_curbuf(buf->bufp); |
717 | 1766 old_b_changed = curbuf->b_changed; |
1767 | |
718 | 1768 /* Convert the specified character offset into a lnum/col |
1769 * position. */ | |
717 | 1770 pos = off2pos(curbuf, off); |
1771 if (pos != NULL) | |
7 | 1772 { |
718 | 1773 if (pos->lnum <= 0) |
1774 lnum_start = 1; | |
1775 else | |
1776 lnum_start = pos->lnum; | |
7 | 1777 } |
1778 else | |
1779 { | |
718 | 1780 /* If the given position is not found, assume we want |
7 | 1781 * the end of the file. See setLocAndSize HACK. */ |
718 | 1782 if (buf_was_empty) |
1783 lnum_start = 1; /* above empty line */ | |
1784 else | |
1785 lnum_start = curbuf->b_ml.ml_line_count + 1; | |
7 | 1786 } |
718 | 1787 |
1788 /* "lnum" is the line where we insert: either append to it or | |
1789 * insert a new line above it. */ | |
1790 lnum = lnum_start; | |
1791 | |
1792 /* Loop over the "\n" separated lines of the argument. */ | |
3263 | 1793 do_update = 1; |
718 | 1794 while (*args != NUL) |
33 | 1795 { |
3265 | 1796 nlp = vim_strchr(args, '\n'); |
1797 if (nlp == NULL) | |
7 | 1798 { |
718 | 1799 /* Incomplete line, probably truncated. Next "insert" |
1800 * command should append to this one. */ | |
1801 len = STRLEN(args); | |
7 | 1802 } |
33 | 1803 else |
1804 { | |
3265 | 1805 len = nlp - args; |
718 | 1806 |
1807 /* | |
1808 * We need to detect EOL style, because the commands | |
1809 * use a character offset. | |
1810 */ | |
3265 | 1811 if (nlp > args && nlp[-1] == '\r') |
718 | 1812 { |
1813 ff_detected = EOL_DOS; | |
1814 --len; | |
1815 } | |
1816 else | |
1817 ff_detected = EOL_UNIX; | |
33 | 1818 } |
718 | 1819 args[len] = NUL; |
1820 | |
1821 if (lnum == lnum_start | |
1822 && ((pos != NULL && pos->col > 0) | |
1823 || (lnum == 1 && buf_was_empty))) | |
1824 { | |
1825 char_u *oldline = ml_get(lnum); | |
1826 char_u *newline; | |
1827 | |
3476 | 1828 /* Insert halfway a line. */ |
3265 | 1829 newline = alloc_check( |
1830 (unsigned)(STRLEN(oldline) + len + 1)); | |
718 | 1831 if (newline != NULL) |
1832 { | |
3476 | 1833 mch_memmove(newline, oldline, (size_t)pos->col); |
1834 newline[pos->col] = NUL; | |
718 | 1835 STRCAT(newline, args); |
3476 | 1836 STRCAT(newline, oldline + pos->col); |
718 | 1837 ml_replace(lnum, newline, FALSE); |
1838 } | |
1839 } | |
1840 else | |
1841 { | |
1842 /* Append a new line. Not that we always do this, | |
1843 * also when the text doesn't end in a "\n". */ | |
3265 | 1844 ml_append((linenr_T)(lnum - 1), args, |
1845 (colnr_T)(len + 1), FALSE); | |
718 | 1846 ++added; |
1847 } | |
1848 | |
3265 | 1849 if (nlp == NULL) |
718 | 1850 break; |
1851 ++lnum; | |
3265 | 1852 args = nlp + 1; |
33 | 1853 } |
1854 | |
718 | 1855 /* Adjust the marks below the inserted lines. */ |
1856 appended_lines_mark(lnum_start - 1, (long)added); | |
1857 | |
1858 /* | |
1859 * When starting with an empty buffer set the fileformat. | |
1860 * This is just guessing... | |
7 | 1861 */ |
1862 if (buf_was_empty) | |
1863 { | |
1864 if (ff_detected == EOL_UNKNOWN) | |
718 | 1865 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) |
7 | 1866 ff_detected = EOL_DOS; |
718 | 1867 #else |
1868 ff_detected = EOL_UNIX; | |
1869 #endif | |
7 | 1870 set_fileformat(ff_detected, OPT_LOCAL); |
717 | 1871 curbuf->b_start_ffc = *curbuf->b_p_ff; |
7 | 1872 } |
1873 | |
1874 /* | |
1875 * XXX - GRP - Is the next line right? If I've inserted | |
1876 * text the buffer has been updated but not written. Will | |
1877 * netbeans guarantee to write it? Even if I do a :q! ? | |
1878 */ | |
717 | 1879 curbuf->b_changed = old_b_changed; /* logically unchanged */ |
7 | 1880 netbeansFireChanges = oldFire; |
1881 | |
718 | 1882 /* Undo info is invalid now... */ |
717 | 1883 u_blockfree(curbuf); |
1884 u_clearall(curbuf); | |
7 | 1885 } |
1886 vim_free(to_free); | |
1887 nb_reply_nil(cmdno); /* or !error */ | |
1888 } | |
1889 else | |
1890 { | |
1891 nbdebug(("UNIMPLEMENTED FUNCTION: %s\n", cmd)); | |
1892 nb_reply_nil(cmdno); | |
1893 retval = FAIL; | |
1894 } | |
1895 } | |
1896 else /* Not a function; no reply required. */ | |
1897 { | |
1898 /* =====================================================================*/ | |
1899 if (streq((char *)cmd, "create")) | |
1900 { | |
1901 /* Create a buffer without a name. */ | |
1902 if (buf == NULL) | |
1903 { | |
1618 | 1904 nbdebug((" invalid buffer identifier in create\n")); |
1905 EMSG("E636: invalid buffer identifier in create"); | |
7 | 1906 return FAIL; |
1907 } | |
1908 vim_free(buf->displayname); | |
1909 buf->displayname = NULL; | |
1910 | |
1911 netbeansReadFile = 0; /* don't try to open disk file */ | |
1743 | 1912 do_ecmd(0, NULL, 0, 0, ECMD_ONE, ECMD_HIDE + ECMD_OLDBUF, curwin); |
7 | 1913 netbeansReadFile = 1; |
1914 buf->bufp = curbuf; | |
1915 maketitle(); | |
33 | 1916 buf->insertDone = FALSE; |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1917 #if defined(FEAT_MENU) && defined(FEAT_GUI) |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1918 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1919 gui_update_menus(0); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1920 #endif |
7 | 1921 /* =====================================================================*/ |
1922 } | |
33 | 1923 else if (streq((char *)cmd, "insertDone")) |
1924 { | |
840 | 1925 if (buf == NULL || buf->bufp == NULL) |
1926 { | |
1618 | 1927 nbdebug((" invalid buffer identifier in insertDone\n")); |
840 | 1928 } |
1929 else | |
1930 { | |
1931 buf->bufp->b_start_eol = *args == 'T'; | |
1932 buf->insertDone = TRUE; | |
1933 args += 2; | |
1934 buf->bufp->b_p_ro = *args == 'T'; | |
1935 print_read_msg(buf); | |
1936 } | |
33 | 1937 /* =====================================================================*/ |
1938 } | |
1939 else if (streq((char *)cmd, "saveDone")) | |
1940 { | |
840 | 1941 long savedChars = atol((char *)args); |
1942 | |
1943 if (buf == NULL || buf->bufp == NULL) | |
1944 { | |
1618 | 1945 nbdebug((" invalid buffer identifier in saveDone\n")); |
840 | 1946 } |
1947 else | |
1948 print_save_msg(buf, savedChars); | |
33 | 1949 /* =====================================================================*/ |
1950 } | |
7 | 1951 else if (streq((char *)cmd, "startDocumentListen")) |
1952 { | |
1953 if (buf == NULL) | |
1954 { | |
1618 | 1955 nbdebug((" invalid buffer identifier in startDocumentListen\n")); |
1956 EMSG("E637: invalid buffer identifier in startDocumentListen"); | |
7 | 1957 return FAIL; |
1958 } | |
1959 buf->fireChanges = 1; | |
1960 /* =====================================================================*/ | |
1961 } | |
1962 else if (streq((char *)cmd, "stopDocumentListen")) | |
1963 { | |
1964 if (buf == NULL) | |
1965 { | |
1618 | 1966 nbdebug((" invalid buffer identifier in stopDocumentListen\n")); |
1967 EMSG("E638: invalid buffer identifier in stopDocumentListen"); | |
7 | 1968 return FAIL; |
1969 } | |
1970 buf->fireChanges = 0; | |
152 | 1971 if (buf->bufp != NULL && buf->bufp->b_was_netbeans_file) |
33 | 1972 { |
152 | 1973 if (!buf->bufp->b_netbeans_file) |
1618 | 1974 { |
1975 nbdebug(("E658: NetBeans connection lost for buffer %ld\n", buf->bufp->b_fnum)); | |
33 | 1976 EMSGN(_("E658: NetBeans connection lost for buffer %ld"), |
7 | 1977 buf->bufp->b_fnum); |
1618 | 1978 } |
33 | 1979 else |
1980 { | |
152 | 1981 /* NetBeans uses stopDocumentListen when it stops editing |
1982 * a file. It then expects the buffer in Vim to | |
1983 * disappear. */ | |
1984 do_bufdel(DOBUF_DEL, (char_u *)"", 1, | |
1985 buf->bufp->b_fnum, buf->bufp->b_fnum, TRUE); | |
33 | 1986 vim_memset(buf, 0, sizeof(nbbuf_T)); |
1987 } | |
1988 } | |
7 | 1989 /* =====================================================================*/ |
1990 } | |
1991 else if (streq((char *)cmd, "setTitle")) | |
1992 { | |
1993 if (buf == NULL) | |
1994 { | |
1618 | 1995 nbdebug((" invalid buffer identifier in setTitle\n")); |
1996 EMSG("E639: invalid buffer identifier in setTitle"); | |
7 | 1997 return FAIL; |
1998 } | |
1999 vim_free(buf->displayname); | |
2000 buf->displayname = nb_unquote(args, NULL); | |
2001 /* =====================================================================*/ | |
2002 } | |
2003 else if (streq((char *)cmd, "initDone")) | |
2004 { | |
2005 if (buf == NULL || buf->bufp == NULL) | |
2006 { | |
1618 | 2007 nbdebug((" invalid buffer identifier in initDone\n")); |
2008 EMSG("E640: invalid buffer identifier in initDone"); | |
7 | 2009 return FAIL; |
2010 } | |
3263 | 2011 do_update = 1; |
33 | 2012 buf->initDone = TRUE; |
659 | 2013 nb_set_curbuf(buf->bufp); |
7 | 2014 #if defined(FEAT_AUTOCMD) |
2015 apply_autocmds(EVENT_BUFREADPOST, 0, 0, FALSE, buf->bufp); | |
2016 #endif | |
2017 | |
2018 /* handle any postponed key commands */ | |
2019 handle_key_queue(); | |
2020 /* =====================================================================*/ | |
2021 } | |
2022 else if (streq((char *)cmd, "setBufferNumber") | |
2023 || streq((char *)cmd, "putBufferNumber")) | |
2024 { | |
33 | 2025 char_u *path; |
7 | 2026 buf_T *bufp; |
2027 | |
2028 if (buf == NULL) | |
2029 { | |
1618 | 2030 nbdebug((" invalid buffer identifier in setBufferNumber\n")); |
2031 EMSG("E641: invalid buffer identifier in setBufferNumber"); | |
7 | 2032 return FAIL; |
2033 } | |
33 | 2034 path = (char_u *)nb_unquote(args, NULL); |
2035 if (path == NULL) | |
7 | 2036 return FAIL; |
33 | 2037 bufp = buflist_findname(path); |
2038 vim_free(path); | |
7 | 2039 if (bufp == NULL) |
2040 { | |
1816 | 2041 nbdebug((" File %s not found in setBufferNumber\n", args)); |
7 | 2042 EMSG2("E642: File %s not found in setBufferNumber", args); |
2043 return FAIL; | |
2044 } | |
2045 buf->bufp = bufp; | |
33 | 2046 buf->nbbuf_number = bufp->b_fnum; |
7 | 2047 |
2048 /* "setBufferNumber" has the side effect of jumping to the buffer | |
2049 * (don't know why!). Don't do that for "putBufferNumber". */ | |
2050 if (*cmd != 'p') | |
2051 coloncmd(":buffer %d", bufp->b_fnum); | |
2052 else | |
2053 { | |
33 | 2054 buf->initDone = TRUE; |
7 | 2055 |
2056 /* handle any postponed key commands */ | |
2057 handle_key_queue(); | |
2058 } | |
2059 | |
2060 /* =====================================================================*/ | |
2061 } | |
2062 else if (streq((char *)cmd, "setFullName")) | |
2063 { | |
2064 if (buf == NULL) | |
2065 { | |
1618 | 2066 nbdebug((" invalid buffer identifier in setFullName\n")); |
2067 EMSG("E643: invalid buffer identifier in setFullName"); | |
7 | 2068 return FAIL; |
2069 } | |
2070 vim_free(buf->displayname); | |
2071 buf->displayname = nb_unquote(args, NULL); | |
2072 | |
2073 netbeansReadFile = 0; /* don't try to open disk file */ | |
2074 do_ecmd(0, (char_u *)buf->displayname, 0, 0, ECMD_ONE, | |
1743 | 2075 ECMD_HIDE + ECMD_OLDBUF, curwin); |
7 | 2076 netbeansReadFile = 1; |
2077 buf->bufp = curbuf; | |
2078 maketitle(); | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2079 #if defined(FEAT_MENU) && defined(FEAT_GUI) |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2080 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2081 gui_update_menus(0); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2082 #endif |
7 | 2083 /* =====================================================================*/ |
2084 } | |
2085 else if (streq((char *)cmd, "editFile")) | |
2086 { | |
2087 if (buf == NULL) | |
2088 { | |
1618 | 2089 nbdebug((" invalid buffer identifier in editFile\n")); |
2090 EMSG("E644: invalid buffer identifier in editFile"); | |
7 | 2091 return FAIL; |
2092 } | |
2093 /* Edit a file: like create + setFullName + read the file. */ | |
2094 vim_free(buf->displayname); | |
2095 buf->displayname = nb_unquote(args, NULL); | |
2096 do_ecmd(0, (char_u *)buf->displayname, NULL, NULL, ECMD_ONE, | |
1743 | 2097 ECMD_HIDE + ECMD_OLDBUF, curwin); |
7 | 2098 buf->bufp = curbuf; |
33 | 2099 buf->initDone = TRUE; |
3263 | 2100 do_update = 1; |
7 | 2101 #if defined(FEAT_TITLE) |
2102 maketitle(); | |
2103 #endif | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2104 #if defined(FEAT_MENU) && defined(FEAT_GUI) |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2105 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2106 gui_update_menus(0); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2107 #endif |
7 | 2108 /* =====================================================================*/ |
2109 } | |
2110 else if (streq((char *)cmd, "setVisible")) | |
2111 { | |
2112 if (buf == NULL || buf->bufp == NULL) | |
2113 { | |
1618 | 2114 nbdebug((" invalid buffer identifier in setVisible\n")); |
2115 /* This message was commented out, probably because it can | |
2116 * happen when shutting down. */ | |
2117 if (p_verbose > 0) | |
2118 EMSG("E645: invalid buffer identifier in setVisible"); | |
7 | 2119 return FAIL; |
2120 } | |
33 | 2121 if (streq((char *)args, "T") && buf->bufp != curbuf) |
7 | 2122 { |
2123 exarg_T exarg; | |
2124 exarg.cmd = (char_u *)"goto"; | |
2125 exarg.forceit = FALSE; | |
33 | 2126 dosetvisible = TRUE; |
7 | 2127 goto_buffer(&exarg, DOBUF_FIRST, FORWARD, buf->bufp->b_fnum); |
3263 | 2128 do_update = 1; |
33 | 2129 dosetvisible = FALSE; |
7 | 2130 |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2131 #ifdef FEAT_GUI |
7 | 2132 /* Side effect!!!. */ |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2133 if (gui.in_use) |
7 | 2134 gui_mch_set_foreground(); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2135 #endif |
7 | 2136 } |
2137 /* =====================================================================*/ | |
2138 } | |
2139 else if (streq((char *)cmd, "raise")) | |
2140 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2141 #ifdef FEAT_GUI |
7 | 2142 /* Bring gvim to the foreground. */ |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2143 if (gui.in_use) |
7 | 2144 gui_mch_set_foreground(); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2145 #endif |
7 | 2146 /* =====================================================================*/ |
2147 } | |
2148 else if (streq((char *)cmd, "setModified")) | |
2149 { | |
1600 | 2150 int prev_b_changed; |
2151 | |
7 | 2152 if (buf == NULL || buf->bufp == NULL) |
2153 { | |
1618 | 2154 nbdebug((" invalid buffer identifier in setModified\n")); |
2155 /* This message was commented out, probably because it can | |
2156 * happen when shutting down. */ | |
2157 if (p_verbose > 0) | |
2158 EMSG("E646: invalid buffer identifier in setModified"); | |
7 | 2159 return FAIL; |
2160 } | |
1600 | 2161 prev_b_changed = buf->bufp->b_changed; |
7 | 2162 if (streq((char *)args, "T")) |
1600 | 2163 buf->bufp->b_changed = TRUE; |
7 | 2164 else |
2165 { | |
2166 struct stat st; | |
2167 | |
2168 /* Assume NetBeans stored the file. Reset the timestamp to | |
2169 * avoid "file changed" warnings. */ | |
2170 if (buf->bufp->b_ffname != NULL | |
2171 && mch_stat((char *)buf->bufp->b_ffname, &st) >= 0) | |
2172 buf_store_time(buf->bufp, &st, buf->bufp->b_ffname); | |
1600 | 2173 buf->bufp->b_changed = FALSE; |
7 | 2174 } |
2175 buf->modified = buf->bufp->b_changed; | |
1600 | 2176 if (prev_b_changed != buf->bufp->b_changed) |
2177 { | |
2178 #ifdef FEAT_WINDOWS | |
2179 check_status(buf->bufp); | |
2180 redraw_tabline = TRUE; | |
2181 #endif | |
2182 #ifdef FEAT_TITLE | |
2183 maketitle(); | |
2184 #endif | |
2185 update_screen(0); | |
2186 } | |
7 | 2187 /* =====================================================================*/ |
2188 } | |
33 | 2189 else if (streq((char *)cmd, "setModtime")) |
2190 { | |
840 | 2191 if (buf == NULL || buf->bufp == NULL) |
1618 | 2192 nbdebug((" invalid buffer identifier in setModtime\n")); |
840 | 2193 else |
2194 buf->bufp->b_mtime = atoi((char *)args); | |
33 | 2195 /* =====================================================================*/ |
2196 } | |
2197 else if (streq((char *)cmd, "setReadOnly")) | |
2198 { | |
840 | 2199 if (buf == NULL || buf->bufp == NULL) |
1618 | 2200 nbdebug((" invalid buffer identifier in setReadOnly\n")); |
840 | 2201 else if (streq((char *)args, "T")) |
33 | 2202 buf->bufp->b_p_ro = TRUE; |
2203 else | |
2204 buf->bufp->b_p_ro = FALSE; | |
2205 /* =====================================================================*/ | |
2206 } | |
7 | 2207 else if (streq((char *)cmd, "setMark")) |
2208 { | |
2209 /* not yet */ | |
2210 /* =====================================================================*/ | |
2211 } | |
2212 else if (streq((char *)cmd, "showBalloon")) | |
2213 { | |
2214 #if defined(FEAT_BEVAL) | |
2215 static char *text = NULL; | |
2216 | |
2217 /* | |
2218 * Set up the Balloon Expression Evaluation area. | |
2219 * Ignore 'ballooneval' here. | |
2220 * The text pointer must remain valid for a while. | |
2221 */ | |
2222 if (balloonEval != NULL) | |
2223 { | |
2224 vim_free(text); | |
2225 text = nb_unquote(args, NULL); | |
2226 if (text != NULL) | |
2227 gui_mch_post_balloon(balloonEval, (char_u *)text); | |
2228 } | |
2229 #endif | |
2230 /* =====================================================================*/ | |
2231 } | |
2232 else if (streq((char *)cmd, "setDot")) | |
2233 { | |
2234 pos_T *pos; | |
2235 #ifdef NBDEBUG | |
2236 char_u *s; | |
2237 #endif | |
2238 | |
2239 if (buf == NULL || buf->bufp == NULL) | |
2240 { | |
1618 | 2241 nbdebug((" invalid buffer identifier in setDot\n")); |
2242 EMSG("E647: invalid buffer identifier in setDot"); | |
7 | 2243 return FAIL; |
2244 } | |
2245 | |
659 | 2246 nb_set_curbuf(buf->bufp); |
2247 | |
7 | 2248 /* Don't want Visual mode now. */ |
2249 if (VIsual_active) | |
2250 end_visual_mode(); | |
2251 #ifdef NBDEBUG | |
2252 s = args; | |
2253 #endif | |
2254 pos = get_off_or_lnum(buf->bufp, &args); | |
2255 if (pos) | |
2256 { | |
2257 curwin->w_cursor = *pos; | |
2258 check_cursor(); | |
2259 #ifdef FEAT_FOLDING | |
2260 foldOpenCursor(); | |
2261 #endif | |
2262 } | |
2263 else | |
1884 | 2264 { |
7 | 2265 nbdebug((" BAD POSITION in setDot: %s\n", s)); |
1884 | 2266 } |
7 | 2267 |
2268 /* gui_update_cursor(TRUE, FALSE); */ | |
2269 /* update_curbuf(NOT_VALID); */ | |
2270 update_topline(); /* scroll to show the line */ | |
2271 update_screen(VALID); | |
2272 setcursor(); | |
2745 | 2273 cursor_on(); |
7 | 2274 out_flush(); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2275 #ifdef FEAT_GUI |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2276 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2277 { |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2278 gui_update_cursor(TRUE, FALSE); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2279 gui_mch_flush(); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2280 } |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2281 #endif |
7 | 2282 /* Quit a hit-return or more prompt. */ |
2283 if (State == HITRETURN || State == ASKMORE) | |
2284 { | |
2285 #ifdef FEAT_GUI_GTK | |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2286 if (gui.in_use && gtk_main_level() > 0) |
7 | 2287 gtk_main_quit(); |
2288 #endif | |
2289 } | |
2290 /* =====================================================================*/ | |
2291 } | |
2292 else if (streq((char *)cmd, "close")) | |
2293 { | |
2294 #ifdef NBDEBUG | |
2295 char *name = "<NONE>"; | |
2296 #endif | |
2297 | |
2298 if (buf == NULL) | |
2299 { | |
1618 | 2300 nbdebug((" invalid buffer identifier in close\n")); |
2301 EMSG("E648: invalid buffer identifier in close"); | |
7 | 2302 return FAIL; |
2303 } | |
2304 | |
2305 #ifdef NBDEBUG | |
2306 if (buf->displayname != NULL) | |
2307 name = buf->displayname; | |
2308 #endif | |
1618 | 2309 if (buf->bufp == NULL) |
2310 { | |
2311 nbdebug((" invalid buffer identifier in close\n")); | |
2312 /* This message was commented out, probably because it can | |
2313 * happen when shutting down. */ | |
2314 if (p_verbose > 0) | |
2315 EMSG("E649: invalid buffer identifier in close"); | |
2316 } | |
7 | 2317 nbdebug((" CLOSE %d: %s\n", bufno, name)); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2318 #ifdef FEAT_GUI |
7 | 2319 need_mouse_correct = TRUE; |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2320 #endif |
7 | 2321 if (buf->bufp != NULL) |
2322 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD, | |
2323 buf->bufp->b_fnum, TRUE); | |
924 | 2324 buf->bufp = NULL; |
2325 buf->initDone = FALSE; | |
3263 | 2326 do_update = 1; |
7 | 2327 /* =====================================================================*/ |
2328 } | |
2329 else if (streq((char *)cmd, "setStyle")) /* obsolete... */ | |
2330 { | |
1618 | 2331 nbdebug((" setStyle is obsolete!\n")); |
7 | 2332 /* =====================================================================*/ |
2333 } | |
2334 else if (streq((char *)cmd, "setExitDelay")) | |
2335 { | |
33 | 2336 /* Only used in version 2.1. */ |
7 | 2337 /* =====================================================================*/ |
2338 } | |
2339 else if (streq((char *)cmd, "defineAnnoType")) | |
2340 { | |
2341 #ifdef FEAT_SIGNS | |
2342 int typeNum; | |
2343 char_u *typeName; | |
2344 char_u *tooltip; | |
2345 char_u *p; | |
2346 char_u *glyphFile; | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2347 int parse_error = FALSE; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2348 char_u *fg; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2349 char_u *bg; |
7 | 2350 |
2351 if (buf == NULL) | |
2352 { | |
1618 | 2353 nbdebug((" invalid buffer identifier in defineAnnoType\n")); |
2354 EMSG("E650: invalid buffer identifier in defineAnnoType"); | |
7 | 2355 return FAIL; |
2356 } | |
2357 | |
27 | 2358 cp = (char *)args; |
2359 typeNum = strtol(cp, &cp, 10); | |
2360 args = (char_u *)cp; | |
7 | 2361 args = skipwhite(args); |
2362 typeName = (char_u *)nb_unquote(args, &args); | |
2363 args = skipwhite(args + 1); | |
2364 tooltip = (char_u *)nb_unquote(args, &args); | |
2365 args = skipwhite(args + 1); | |
2366 | |
2367 p = (char_u *)nb_unquote(args, &args); | |
2368 glyphFile = vim_strsave_escaped(p, escape_chars); | |
2369 vim_free(p); | |
2370 | |
2371 args = skipwhite(args + 1); | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2372 p = skiptowhite(args); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2373 if (*p != NUL) |
7 | 2374 { |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2375 *p = NUL; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2376 p = skipwhite(p + 1); |
7 | 2377 } |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2378 fg = vim_strsave(args); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2379 bg = vim_strsave(p); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2380 if (STRLEN(fg) > MAX_COLOR_LENGTH || STRLEN(bg) > MAX_COLOR_LENGTH) |
7 | 2381 { |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2382 EMSG("E532: highlighting color name too long in defineAnnoType"); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2383 vim_free(typeName); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2384 parse_error = TRUE; |
7 | 2385 } |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2386 else if (typeName != NULL && tooltip != NULL && glyphFile != NULL) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2387 addsigntype(buf, typeNum, typeName, tooltip, glyphFile, fg, bg); |
7 | 2388 else |
2389 vim_free(typeName); | |
2390 | |
2391 /* don't free typeName; it's used directly in addsigntype() */ | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2392 vim_free(fg); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2393 vim_free(bg); |
7 | 2394 vim_free(tooltip); |
2395 vim_free(glyphFile); | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2396 if (parse_error) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2397 return FAIL; |
7 | 2398 |
2399 #endif | |
2400 /* =====================================================================*/ | |
2401 } | |
2402 else if (streq((char *)cmd, "addAnno")) | |
2403 { | |
2404 #ifdef FEAT_SIGNS | |
2405 int serNum; | |
2406 int localTypeNum; | |
2407 int typeNum; | |
2408 pos_T *pos; | |
2409 | |
2410 if (buf == NULL || buf->bufp == NULL) | |
2411 { | |
1618 | 2412 nbdebug((" invalid buffer identifier in addAnno\n")); |
2413 EMSG("E651: invalid buffer identifier in addAnno"); | |
7 | 2414 return FAIL; |
2415 } | |
2416 | |
3263 | 2417 do_update = 1; |
7 | 2418 |
27 | 2419 cp = (char *)args; |
2420 serNum = strtol(cp, &cp, 10); | |
7 | 2421 |
2422 /* Get the typenr specific for this buffer and convert it to | |
2423 * the global typenumber, as used for the sign name. */ | |
27 | 2424 localTypeNum = strtol(cp, &cp, 10); |
2425 args = (char_u *)cp; | |
7 | 2426 typeNum = mapsigntype(buf, localTypeNum); |
2427 | |
2428 pos = get_off_or_lnum(buf->bufp, &args); | |
2429 | |
27 | 2430 cp = (char *)args; |
1757 | 2431 ignored = (int)strtol(cp, &cp, 10); |
27 | 2432 args = (char_u *)cp; |
7 | 2433 # ifdef NBDEBUG |
1757 | 2434 if (ignored != -1) |
7 | 2435 { |
1618 | 2436 nbdebug((" partial line annotation -- Not Yet Implemented!\n")); |
7 | 2437 } |
2438 # endif | |
2439 if (serNum >= GUARDEDOFFSET) | |
2440 { | |
1618 | 2441 nbdebug((" too many annotations! ignoring...\n")); |
7 | 2442 return FAIL; |
2443 } | |
2444 if (pos) | |
2445 { | |
1816 | 2446 coloncmd(":sign place %d line=%ld name=%d buffer=%d", |
7 | 2447 serNum, pos->lnum, typeNum, buf->bufp->b_fnum); |
2448 if (typeNum == curPCtype) | |
2449 coloncmd(":sign jump %d buffer=%d", serNum, | |
2450 buf->bufp->b_fnum); | |
2451 } | |
2452 #endif | |
2453 /* =====================================================================*/ | |
2454 } | |
2455 else if (streq((char *)cmd, "removeAnno")) | |
2456 { | |
2457 #ifdef FEAT_SIGNS | |
2458 int serNum; | |
2459 | |
2460 if (buf == NULL || buf->bufp == NULL) | |
2461 { | |
1618 | 2462 nbdebug((" invalid buffer identifier in removeAnno\n")); |
7 | 2463 return FAIL; |
2464 } | |
3263 | 2465 do_update = 1; |
27 | 2466 cp = (char *)args; |
2467 serNum = strtol(cp, &cp, 10); | |
2468 args = (char_u *)cp; | |
7 | 2469 coloncmd(":sign unplace %d buffer=%d", |
2470 serNum, buf->bufp->b_fnum); | |
2471 redraw_buf_later(buf->bufp, NOT_VALID); | |
2472 #endif | |
2473 /* =====================================================================*/ | |
2474 } | |
2475 else if (streq((char *)cmd, "moveAnnoToFront")) | |
2476 { | |
2477 #ifdef FEAT_SIGNS | |
1618 | 2478 nbdebug((" moveAnnoToFront: Not Yet Implemented!\n")); |
7 | 2479 #endif |
2480 /* =====================================================================*/ | |
2481 } | |
2482 else if (streq((char *)cmd, "guard") || streq((char *)cmd, "unguard")) | |
2483 { | |
2484 int len; | |
2485 pos_T first; | |
2486 pos_T last; | |
2487 pos_T *pos; | |
2488 int un = (cmd[0] == 'u'); | |
2489 static int guardId = GUARDEDOFFSET; | |
2490 | |
2491 if (skip >= SKIP_STOP) | |
2492 { | |
2493 nbdebug((" Skipping %s command\n", (char *) cmd)); | |
2494 return OK; | |
2495 } | |
2496 | |
2497 nb_init_graphics(); | |
2498 | |
2499 if (buf == NULL || buf->bufp == NULL) | |
2500 { | |
1618 | 2501 nbdebug((" invalid buffer identifier in %s command\n", cmd)); |
7 | 2502 return FAIL; |
2503 } | |
659 | 2504 nb_set_curbuf(buf->bufp); |
27 | 2505 cp = (char *)args; |
2506 off = strtol(cp, &cp, 10); | |
2507 len = strtol(cp, NULL, 10); | |
2508 args = (char_u *)cp; | |
7 | 2509 pos = off2pos(buf->bufp, off); |
3263 | 2510 do_update = 1; |
7 | 2511 if (!pos) |
2512 nbdebug((" no such start pos in %s, %ld\n", cmd, off)); | |
2513 else | |
2514 { | |
2515 first = *pos; | |
2516 pos = off2pos(buf->bufp, off + len - 1); | |
33 | 2517 if (pos != NULL && pos->col == 0) |
2518 { | |
7 | 2519 /* |
2520 * In Java Swing the offset is a position between 2 | |
2521 * characters. If col == 0 then we really want the | |
2522 * previous line as the end. | |
2523 */ | |
2524 pos = off2pos(buf->bufp, off + len - 2); | |
2525 } | |
2526 if (!pos) | |
2527 nbdebug((" no such end pos in %s, %ld\n", | |
2528 cmd, off + len - 1)); | |
2529 else | |
2530 { | |
2531 long lnum; | |
2532 last = *pos; | |
2533 /* set highlight for region */ | |
2534 nbdebug((" %sGUARD %ld,%d to %ld,%d\n", (un) ? "UN" : "", | |
2535 first.lnum, first.col, | |
2536 last.lnum, last.col)); | |
2537 #ifdef FEAT_SIGNS | |
2538 for (lnum = first.lnum; lnum <= last.lnum; lnum++) | |
2539 { | |
2540 if (un) | |
2541 { | |
2542 /* never used */ | |
2543 } | |
2544 else | |
2545 { | |
2546 if (buf_findsigntype_id(buf->bufp, lnum, | |
2547 GUARDED) == 0) | |
2548 { | |
2549 coloncmd( | |
1816 | 2550 ":sign place %d line=%ld name=%d buffer=%d", |
7 | 2551 guardId++, lnum, GUARDED, |
2552 buf->bufp->b_fnum); | |
2553 } | |
2554 } | |
2555 } | |
2556 #endif | |
2557 redraw_buf_later(buf->bufp, NOT_VALID); | |
2558 } | |
2559 } | |
2560 /* =====================================================================*/ | |
2561 } | |
2562 else if (streq((char *)cmd, "startAtomic")) | |
2563 { | |
2564 inAtomic = 1; | |
2565 /* =====================================================================*/ | |
2566 } | |
2567 else if (streq((char *)cmd, "endAtomic")) | |
2568 { | |
2569 inAtomic = 0; | |
2570 if (needupdate) | |
2571 { | |
3263 | 2572 do_update = 1; |
7 | 2573 needupdate = 0; |
2574 } | |
2575 /* =====================================================================*/ | |
2576 } | |
2577 else if (streq((char *)cmd, "save")) | |
2578 { | |
33 | 2579 /* |
2580 * NOTE - This command is obsolete wrt NetBeans. Its left in | |
2581 * only for historical reasons. | |
2582 */ | |
7 | 2583 if (buf == NULL || buf->bufp == NULL) |
2584 { | |
1618 | 2585 nbdebug((" invalid buffer identifier in %s command\n", cmd)); |
7 | 2586 return FAIL; |
2587 } | |
2588 | |
2589 /* the following is taken from ex_cmds.c (do_wqall function) */ | |
2590 if (bufIsChanged(buf->bufp)) | |
2591 { | |
2592 /* Only write if the buffer can be written. */ | |
2593 if (p_write | |
2594 && !buf->bufp->b_p_ro | |
2595 && buf->bufp->b_ffname != NULL | |
2596 #ifdef FEAT_QUICKFIX | |
2597 && !bt_dontwrite(buf->bufp) | |
2598 #endif | |
2599 ) | |
2600 { | |
2601 buf_write_all(buf->bufp, FALSE); | |
2602 #ifdef FEAT_AUTOCMD | |
2603 /* an autocommand may have deleted the buffer */ | |
2604 if (!buf_valid(buf->bufp)) | |
2605 buf->bufp = NULL; | |
2606 #endif | |
2607 } | |
2608 } | |
1618 | 2609 else |
2610 { | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2611 nbdebug((" Buffer has no changes!\n")); |
1618 | 2612 } |
7 | 2613 /* =====================================================================*/ |
2614 } | |
2615 else if (streq((char *)cmd, "netbeansBuffer")) | |
2616 { | |
2617 if (buf == NULL || buf->bufp == NULL) | |
2618 { | |
1618 | 2619 nbdebug((" invalid buffer identifier in %s command\n", cmd)); |
7 | 2620 return FAIL; |
2621 } | |
2622 if (*args == 'T') | |
2623 { | |
2624 buf->bufp->b_netbeans_file = TRUE; | |
2625 buf->bufp->b_was_netbeans_file = TRUE; | |
2626 } | |
2627 else | |
2628 buf->bufp->b_netbeans_file = FALSE; | |
2629 /* =====================================================================*/ | |
2630 } | |
33 | 2631 else if (streq((char *)cmd, "specialKeys")) |
2632 { | |
2633 special_keys(args); | |
2634 /* =====================================================================*/ | |
2635 } | |
2636 else if (streq((char *)cmd, "actionMenuItem")) | |
2637 { | |
2638 /* not used yet */ | |
2639 /* =====================================================================*/ | |
2640 } | |
7 | 2641 else if (streq((char *)cmd, "version")) |
2642 { | |
33 | 2643 /* not used yet */ |
7 | 2644 } |
1618 | 2645 else |
2646 { | |
2647 nbdebug(("Unrecognised command: %s\n", cmd)); | |
2648 } | |
7 | 2649 /* |
2650 * Unrecognized command is ignored. | |
2651 */ | |
2652 } | |
3263 | 2653 if (inAtomic && do_update) |
7 | 2654 { |
2655 needupdate = 1; | |
3263 | 2656 do_update = 0; |
7 | 2657 } |
2658 | |
33 | 2659 /* |
2660 * Is this needed? I moved the netbeans_Xt_connect() later during startup | |
2661 * and it may no longer be necessary. If its not needed then needupdate | |
3263 | 2662 * and do_update can also be removed. |
33 | 2663 */ |
3263 | 2664 if (buf != NULL && buf->initDone && do_update) |
7 | 2665 { |
2666 update_screen(NOT_VALID); | |
2667 setcursor(); | |
2745 | 2668 cursor_on(); |
7 | 2669 out_flush(); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2670 #ifdef FEAT_GUI |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2671 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2672 { |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2673 gui_update_cursor(TRUE, FALSE); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2674 gui_mch_flush(); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2675 } |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2676 #endif |
7 | 2677 /* Quit a hit-return or more prompt. */ |
2678 if (State == HITRETURN || State == ASKMORE) | |
2679 { | |
2680 #ifdef FEAT_GUI_GTK | |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2681 if (gui.in_use && gtk_main_level() > 0) |
7 | 2682 gtk_main_quit(); |
2683 #endif | |
2684 } | |
2685 } | |
2686 | |
2687 return retval; | |
2688 } | |
2689 | |
2690 | |
2691 /* | |
659 | 2692 * If "buf" is not the current buffer try changing to a window that edits this |
2693 * buffer. If there is no such window then close the current buffer and set | |
2694 * the current buffer as "buf". | |
2695 */ | |
2696 static void | |
1492 | 2697 nb_set_curbuf(buf_T *buf) |
659 | 2698 { |
6677 | 2699 if (curbuf != buf) { |
2700 if (buf_jump_open_win(buf) != NULL) | |
2701 return; | |
2702 # ifdef FEAT_WINDOWS | |
2703 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf) != NULL) | |
2704 return; | |
2705 # endif | |
659 | 2706 set_curbuf(buf, DOBUF_GOTO); |
6677 | 2707 } |
659 | 2708 } |
2709 | |
2710 /* | |
7 | 2711 * Process a vim colon command. |
2712 */ | |
2713 static void | |
2714 coloncmd(char *cmd, ...) | |
2715 { | |
2716 char buf[1024]; | |
2717 va_list ap; | |
2718 | |
2719 va_start(ap, cmd); | |
1916 | 2720 vim_vsnprintf(buf, sizeof(buf), cmd, ap, NULL); |
7 | 2721 va_end(ap); |
2722 | |
2723 nbdebug((" COLONCMD %s\n", buf)); | |
2724 | |
2725 /* ALT_INPUT_LOCK_ON; */ | |
2726 do_cmdline((char_u *)buf, NULL, NULL, DOCMD_NOWAIT | DOCMD_KEYTYPED); | |
2727 /* ALT_INPUT_LOCK_OFF; */ | |
2728 | |
2729 setcursor(); /* restore the cursor position */ | |
2730 out_flush(); /* make sure output has been written */ | |
2731 | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2732 #ifdef FEAT_GUI |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2733 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2734 { |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2735 gui_update_cursor(TRUE, FALSE); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2736 gui_mch_flush(); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2737 } |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2738 #endif |
7 | 2739 } |
2740 | |
2741 | |
2742 /* | |
33 | 2743 * Parse the specialKeys argument and issue the appropriate map commands. |
2744 */ | |
2745 static void | |
2746 special_keys(char_u *args) | |
2747 { | |
2748 char *save_str = nb_unquote(args, NULL); | |
2749 char *tok = strtok(save_str, " "); | |
2750 char *sep; | |
2751 char keybuf[64]; | |
2752 char cmdbuf[256]; | |
2753 | |
2754 while (tok != NULL) | |
2755 { | |
2756 int i = 0; | |
2757 | |
2758 if ((sep = strchr(tok, '-')) != NULL) | |
2759 { | |
36 | 2760 *sep = NUL; |
33 | 2761 while (*tok) |
2762 { | |
2763 switch (*tok) | |
2764 { | |
2765 case 'A': | |
2766 case 'M': | |
2767 case 'C': | |
2768 case 'S': | |
2769 keybuf[i++] = *tok; | |
2770 keybuf[i++] = '-'; | |
2771 break; | |
2772 } | |
2773 tok++; | |
2774 } | |
2775 tok++; | |
2776 } | |
2777 | |
2778 strcpy(&keybuf[i], tok); | |
272 | 2779 vim_snprintf(cmdbuf, sizeof(cmdbuf), |
2780 "<silent><%s> :nbkey %s<CR>", keybuf, keybuf); | |
33 | 2781 do_map(0, (char_u *)cmdbuf, NORMAL, FALSE); |
2782 tok = strtok(NULL, " "); | |
2783 } | |
2784 vim_free(save_str); | |
2785 } | |
2786 | |
2210 | 2787 void |
2788 ex_nbclose(eap) | |
2789 exarg_T *eap UNUSED; | |
2790 { | |
2791 netbeans_close(); | |
2792 } | |
33 | 2793 |
2794 void | |
2795 ex_nbkey(eap) | |
2796 exarg_T *eap; | |
2797 { | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2798 (void)netbeans_keystring(eap->arg); |
33 | 2799 } |
2800 | |
2210 | 2801 void |
2802 ex_nbstart(eap) | |
2803 exarg_T *eap; | |
2804 { | |
2595 | 2805 #ifdef FEAT_GUI |
2806 # if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \ | |
2639 | 2807 && !defined(FEAT_GUI_W32) |
2595 | 2808 if (gui.in_use) |
2809 { | |
2639 | 2810 EMSG(_("E838: netbeans is not supported with this GUI")); |
2811 return; | |
2595 | 2812 } |
2813 # endif | |
2814 #endif | |
2210 | 2815 netbeans_open((char *)eap->arg, FALSE); |
2816 } | |
33 | 2817 |
2818 /* | |
7 | 2819 * Initialize highlights and signs for use by netbeans (mostly obsolete) |
2820 */ | |
2821 static void | |
2822 nb_init_graphics(void) | |
2823 { | |
2824 static int did_init = FALSE; | |
2825 | |
2826 if (!did_init) | |
2827 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2828 coloncmd(":highlight NBGuarded guibg=Cyan guifg=Black" |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2829 " ctermbg=LightCyan ctermfg=Black"); |
7 | 2830 coloncmd(":sign define %d linehl=NBGuarded", GUARDED); |
2831 | |
2832 did_init = TRUE; | |
2833 } | |
2834 } | |
2835 | |
2836 /* | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2837 * Convert key to netbeans name. This uses the global "mod_mask". |
7 | 2838 */ |
2839 static void | |
2840 netbeans_keyname(int key, char *buf) | |
2841 { | |
2842 char *name = 0; | |
2843 char namebuf[2]; | |
2844 int ctrl = 0; | |
2845 int shift = 0; | |
2846 int alt = 0; | |
2847 | |
2848 if (mod_mask & MOD_MASK_CTRL) | |
2849 ctrl = 1; | |
2850 if (mod_mask & MOD_MASK_SHIFT) | |
2851 shift = 1; | |
2852 if (mod_mask & MOD_MASK_ALT) | |
2853 alt = 1; | |
2854 | |
2855 | |
2856 switch (key) | |
2857 { | |
2858 case K_F1: name = "F1"; break; | |
2859 case K_S_F1: name = "F1"; shift = 1; break; | |
2860 case K_F2: name = "F2"; break; | |
2861 case K_S_F2: name = "F2"; shift = 1; break; | |
2862 case K_F3: name = "F3"; break; | |
2863 case K_S_F3: name = "F3"; shift = 1; break; | |
2864 case K_F4: name = "F4"; break; | |
2865 case K_S_F4: name = "F4"; shift = 1; break; | |
2866 case K_F5: name = "F5"; break; | |
2867 case K_S_F5: name = "F5"; shift = 1; break; | |
2868 case K_F6: name = "F6"; break; | |
2869 case K_S_F6: name = "F6"; shift = 1; break; | |
2870 case K_F7: name = "F7"; break; | |
2871 case K_S_F7: name = "F7"; shift = 1; break; | |
2872 case K_F8: name = "F8"; break; | |
2873 case K_S_F8: name = "F8"; shift = 1; break; | |
2874 case K_F9: name = "F9"; break; | |
2875 case K_S_F9: name = "F9"; shift = 1; break; | |
2876 case K_F10: name = "F10"; break; | |
2877 case K_S_F10: name = "F10"; shift = 1; break; | |
2878 case K_F11: name = "F11"; break; | |
2879 case K_S_F11: name = "F11"; shift = 1; break; | |
2880 case K_F12: name = "F12"; break; | |
2881 case K_S_F12: name = "F12"; shift = 1; break; | |
2882 default: | |
2883 if (key >= ' ' && key <= '~') | |
2884 { | |
2885 /* Allow ASCII characters. */ | |
2886 name = namebuf; | |
2887 namebuf[0] = key; | |
2888 namebuf[1] = NUL; | |
2889 } | |
2890 else | |
2891 name = "X"; | |
2892 break; | |
2893 } | |
2894 | |
2895 buf[0] = '\0'; | |
2896 if (ctrl) | |
2897 strcat(buf, "C"); | |
2898 if (shift) | |
2899 strcat(buf, "S"); | |
2900 if (alt) | |
2901 strcat(buf, "M"); /* META */ | |
2902 if (ctrl || shift || alt) | |
2903 strcat(buf, "-"); | |
2904 strcat(buf, name); | |
2905 } | |
2906 | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2907 #if defined(FEAT_BEVAL) || defined(PROTO) |
7 | 2908 /* |
2909 * Function to be called for balloon evaluation. Grabs the text under the | |
2910 * cursor and sends it to the debugger for evaluation. The debugger should | |
2911 * respond with a showBalloon command when there is a useful result. | |
2912 */ | |
183 | 2913 void |
7 | 2914 netbeans_beval_cb( |
2915 BalloonEval *beval, | |
1884 | 2916 int state UNUSED) |
7 | 2917 { |
183 | 2918 win_T *wp; |
7 | 2919 char_u *text; |
183 | 2920 linenr_T lnum; |
7 | 2921 int col; |
2770 | 2922 char *buf; |
7 | 2923 char_u *p; |
2924 | |
2925 /* Don't do anything when 'ballooneval' is off, messages scrolled the | |
2926 * windows up or we have no connection. */ | |
2210 | 2927 if (!p_beval || msg_scrolled > 0 || !NETBEANS_OPEN) |
7 | 2928 return; |
2929 | |
183 | 2930 if (get_beval_info(beval, TRUE, &wp, &lnum, &text, &col) == OK) |
7 | 2931 { |
2932 /* Send debugger request. Only when the text is of reasonable | |
2933 * length. */ | |
2934 if (text != NULL && text[0] != NUL && STRLEN(text) < MAXPATHL) | |
2935 { | |
2770 | 2936 buf = (char *)alloc(MAXPATHL * 2 + 25); |
2937 if (buf != NULL) | |
33 | 2938 { |
2770 | 2939 p = nb_quote(text); |
2940 if (p != NULL) | |
2941 { | |
2942 vim_snprintf(buf, MAXPATHL * 2 + 25, | |
2943 "0:balloonText=%d \"%s\"\n", r_cmdno, p); | |
2944 vim_free(p); | |
2945 } | |
2946 nbdebug(("EVT: %s", buf)); | |
2947 nb_send(buf, "netbeans_beval_cb"); | |
2948 vim_free(buf); | |
33 | 2949 } |
7 | 2950 } |
2951 vim_free(text); | |
2952 } | |
2953 } | |
2954 #endif | |
2955 | |
2956 /* | |
2210 | 2957 * Return TRUE when the netbeans connection is closed. |
2958 */ | |
2959 int | |
2960 netbeans_active(void) | |
2961 { | |
2962 return NETBEANS_OPEN; | |
2963 } | |
2964 | |
2965 /* | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2966 * Return netbeans file descriptor. |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2967 */ |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2968 int |
2210 | 2969 netbeans_filedesc(void) |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2970 { |
2210 | 2971 return nbsock; |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2972 } |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2973 |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2974 #if defined(FEAT_GUI) || defined(PROTO) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2975 /* |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2976 * Register our file descriptor with the gui event handling system. |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2977 */ |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2978 void |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2979 netbeans_gui_register(void) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2980 { |
2210 | 2981 if (!NB_HAS_GUI || !NETBEANS_OPEN) |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2982 return; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2983 |
2592 | 2984 # ifdef FEAT_GUI_X11 |
2210 | 2985 /* tell notifier we are interested in being called |
2986 * when there is input on the editor connection socket | |
2987 */ | |
2988 if (inputHandler == (XtInputId)NULL) | |
2989 inputHandler = XtAppAddInput((XtAppContext)app_context, nbsock, | |
2990 (XtPointer)(XtInputReadMask + XtInputExceptMask), | |
2991 messageFromNetbeans, NULL); | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2992 # else |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2993 # ifdef FEAT_GUI_GTK |
2210 | 2994 /* |
2995 * Tell gdk we are interested in being called when there | |
2996 * is input on the editor connection socket | |
2997 */ | |
2998 if (inputHandler == 0) | |
2999 inputHandler = gdk_input_add((gint)nbsock, (GdkInputCondition) | |
3000 ((int)GDK_INPUT_READ + (int)GDK_INPUT_EXCEPTION), | |
3001 messageFromNetbeans, NULL); | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3002 # else |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3003 # ifdef FEAT_GUI_W32 |
2210 | 3004 /* |
3005 * Tell Windows we are interested in receiving message when there | |
3006 * is input on the editor connection socket | |
3007 */ | |
3008 if (inputHandler == -1) | |
3009 inputHandler = WSAAsyncSelect(nbsock, s_hwnd, WM_NETBEANS, FD_READ); | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3010 # endif |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3011 # endif |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3012 # endif |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3013 |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3014 # ifdef FEAT_BEVAL |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3015 bevalServers |= BEVAL_NETBEANS; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3016 # endif |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3017 } |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3018 #endif |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3019 |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3020 /* |
7 | 3021 * Tell netbeans that the window was opened, ready for commands. |
3022 */ | |
3023 void | |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
3024 netbeans_open(char *params, int doabort) |
7 | 3025 { |
3026 char *cmd = "0:startupDone=0\n"; | |
3027 | |
2210 | 3028 if (NETBEANS_OPEN) |
3029 { | |
3030 EMSG(_("E511: netbeans already connected")); | |
7 | 3031 return; |
2210 | 3032 } |
3033 | |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
3034 if (netbeans_connect(params, doabort) != OK) |
7 | 3035 return; |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3036 #ifdef FEAT_GUI |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3037 netbeans_gui_register(); |
183 | 3038 #endif |
3039 | |
7 | 3040 nbdebug(("EVT: %s", cmd)); |
3041 nb_send(cmd, "netbeans_startup_done"); | |
2210 | 3042 |
3043 /* update the screen after having added the gutter */ | |
3044 changed_window_setting(); | |
3045 update_screen(CLEAR); | |
3046 setcursor(); | |
2745 | 3047 cursor_on(); |
2210 | 3048 out_flush(); |
3049 #ifdef FEAT_GUI | |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
3050 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
3051 { |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
3052 gui_update_cursor(TRUE, FALSE); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
3053 gui_mch_flush(); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
3054 } |
2210 | 3055 #endif |
7 | 3056 } |
3057 | |
33 | 3058 /* |
3059 * Tell netbeans that we're exiting. This should be called right | |
3060 * before calling exit. | |
3061 */ | |
3062 void | |
3063 netbeans_send_disconnect() | |
3064 { | |
3065 char buf[128]; | |
3066 | |
2210 | 3067 if (NETBEANS_OPEN) |
33 | 3068 { |
944 | 3069 sprintf(buf, "0:disconnect=%d\n", r_cmdno); |
33 | 3070 nbdebug(("EVT: %s", buf)); |
3071 nb_send(buf, "netbeans_disconnect"); | |
3072 } | |
3073 } | |
3074 | |
2592 | 3075 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_W32) || defined(PROTO) |
7 | 3076 /* |
3077 * Tell netbeans that the window was moved or resized. | |
3078 */ | |
3079 void | |
3080 netbeans_frame_moved(int new_x, int new_y) | |
3081 { | |
3082 char buf[128]; | |
3083 | |
2210 | 3084 if (!NETBEANS_OPEN) |
7 | 3085 return; |
3086 | |
3087 sprintf(buf, "0:geometry=%d %d %d %d %d\n", | |
944 | 3088 r_cmdno, (int)Columns, (int)Rows, new_x, new_y); |
33 | 3089 /*nbdebug(("EVT: %s", buf)); happens too many times during a move */ |
7 | 3090 nb_send(buf, "netbeans_frame_moved"); |
3091 } | |
3092 #endif | |
3093 | |
3094 /* | |
33 | 3095 * Tell netbeans the user opened or activated a file. |
3096 */ | |
3097 void | |
3098 netbeans_file_activated(buf_T *bufp) | |
3099 { | |
3100 int bufno = nb_getbufno(bufp); | |
3101 nbbuf_T *bp = nb_get_buf(bufno); | |
3102 char buffer[2*MAXPATHL]; | |
3103 char_u *q; | |
3104 | |
2210 | 3105 if (!NETBEANS_OPEN || !bufp->b_netbeans_file || dosetvisible) |
33 | 3106 return; |
3107 | |
3108 q = nb_quote(bufp->b_ffname); | |
840 | 3109 if (q == NULL || bp == NULL) |
33 | 3110 return; |
3111 | |
272 | 3112 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n", |
33 | 3113 bufno, |
3114 bufno, | |
3115 (char *)q, | |
3116 "T", /* open in NetBeans */ | |
3117 "F"); /* modified */ | |
3118 | |
3119 vim_free(q); | |
3120 nbdebug(("EVT: %s", buffer)); | |
3121 | |
3122 nb_send(buffer, "netbeans_file_opened"); | |
3123 } | |
3124 | |
3125 /* | |
7 | 3126 * Tell netbeans the user opened a file. |
3127 */ | |
3128 void | |
33 | 3129 netbeans_file_opened(buf_T *bufp) |
7 | 3130 { |
33 | 3131 int bufno = nb_getbufno(bufp); |
7 | 3132 char buffer[2*MAXPATHL]; |
3133 char_u *q; | |
33 | 3134 nbbuf_T *bp = nb_get_buf(nb_getbufno(bufp)); |
3135 int bnum; | |
7 | 3136 |
2210 | 3137 if (!NETBEANS_OPEN) |
7 | 3138 return; |
3139 | |
33 | 3140 q = nb_quote(bufp->b_ffname); |
7 | 3141 if (q == NULL) |
3142 return; | |
33 | 3143 if (bp != NULL) |
3144 bnum = bufno; | |
3145 else | |
3146 bnum = 0; | |
3147 | |
272 | 3148 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n", |
33 | 3149 bnum, |
7 | 3150 0, |
3151 (char *)q, | |
3152 "T", /* open in NetBeans */ | |
3153 "F"); /* modified */ | |
3154 | |
3155 vim_free(q); | |
3156 nbdebug(("EVT: %s", buffer)); | |
3157 | |
3158 nb_send(buffer, "netbeans_file_opened"); | |
33 | 3159 if (p_acd && vim_chdirfile(bufp->b_ffname) == OK) |
7 | 3160 shorten_fnames(TRUE); |
3161 } | |
3162 | |
3163 /* | |
1781 | 3164 * Tell netbeans that a file was deleted or wiped out. |
7 | 3165 */ |
3166 void | |
1781 | 3167 netbeans_file_killed(buf_T *bufp) |
7 | 3168 { |
3169 int bufno = nb_getbufno(bufp); | |
3170 nbbuf_T *nbbuf = nb_get_buf(bufno); | |
3171 char buffer[2*MAXPATHL]; | |
3172 | |
2210 | 3173 if (!NETBEANS_OPEN || bufno == -1) |
7 | 3174 return; |
1781 | 3175 |
3176 nbdebug(("netbeans_file_killed:\n")); | |
3177 nbdebug((" Killing bufno: %d", bufno)); | |
7 | 3178 |
944 | 3179 sprintf(buffer, "%d:killed=%d\n", bufno, r_cmdno); |
7 | 3180 |
3181 nbdebug(("EVT: %s", buffer)); | |
3182 | |
1781 | 3183 nb_send(buffer, "netbeans_file_killed"); |
7 | 3184 |
3185 if (nbbuf != NULL) | |
3186 nbbuf->bufp = NULL; | |
3187 } | |
3188 | |
3189 /* | |
3190 * Get a pointer to the Netbeans buffer for Vim buffer "bufp". | |
3191 * Return NULL if there is no such buffer or changes are not to be reported. | |
3192 * Otherwise store the buffer number in "*bufnop". | |
3193 */ | |
3194 static nbbuf_T * | |
3195 nb_bufp2nbbuf_fire(buf_T *bufp, int *bufnop) | |
3196 { | |
3197 int bufno; | |
3198 nbbuf_T *nbbuf; | |
3199 | |
2210 | 3200 if (!NETBEANS_OPEN || !netbeansFireChanges) |
7 | 3201 return NULL; /* changes are not reported at all */ |
3202 | |
3203 bufno = nb_getbufno(bufp); | |
3204 if (bufno <= 0) | |
3205 return NULL; /* file is not known to NetBeans */ | |
3206 | |
3207 nbbuf = nb_get_buf(bufno); | |
3208 if (nbbuf != NULL && !nbbuf->fireChanges) | |
3209 return NULL; /* changes in this buffer are not reported */ | |
3210 | |
3211 *bufnop = bufno; | |
3212 return nbbuf; | |
3213 } | |
3214 | |
3215 /* | |
3216 * Tell netbeans the user inserted some text. | |
3217 */ | |
3218 void | |
3219 netbeans_inserted( | |
3220 buf_T *bufp, | |
3221 linenr_T linenr, | |
3222 colnr_T col, | |
3223 char_u *txt, | |
3224 int newlen) | |
3225 { | |
3226 char_u *buf; | |
3227 int bufno; | |
3228 nbbuf_T *nbbuf; | |
3229 pos_T pos; | |
3230 long off; | |
3231 char_u *p; | |
3232 char_u *newtxt; | |
3233 | |
2210 | 3234 if (!NETBEANS_OPEN) |
3235 return; | |
3236 | |
7 | 3237 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno); |
3238 if (nbbuf == NULL) | |
3239 return; | |
3240 | |
33 | 3241 /* Don't mark as modified for initial read */ |
3242 if (nbbuf->insertDone) | |
3243 nbbuf->modified = 1; | |
7 | 3244 |
3245 pos.lnum = linenr; | |
3246 pos.col = col; | |
3247 off = pos2off(bufp, &pos); | |
3248 | |
3249 /* send the "insert" EVT */ | |
3250 newtxt = alloc(newlen + 1); | |
416 | 3251 vim_strncpy(newtxt, txt, newlen); |
7 | 3252 p = nb_quote(newtxt); |
3253 if (p != NULL) | |
3254 { | |
33 | 3255 buf = alloc(128 + 2*newlen); |
944 | 3256 sprintf((char *)buf, "%d:insert=%d %ld \"%s\"\n", |
3257 bufno, r_cmdno, off, p); | |
7 | 3258 nbdebug(("EVT: %s", buf)); |
3259 nb_send((char *)buf, "netbeans_inserted"); | |
33 | 3260 vim_free(p); |
3261 vim_free(buf); | |
7 | 3262 } |
3263 vim_free(newtxt); | |
3264 } | |
3265 | |
3266 /* | |
3267 * Tell netbeans some bytes have been removed. | |
3268 */ | |
3269 void | |
3270 netbeans_removed( | |
3271 buf_T *bufp, | |
3272 linenr_T linenr, | |
3273 colnr_T col, | |
3274 long len) | |
3275 { | |
3276 char_u buf[128]; | |
3277 int bufno; | |
3278 nbbuf_T *nbbuf; | |
3279 pos_T pos; | |
3280 long off; | |
3281 | |
2210 | 3282 if (!NETBEANS_OPEN) |
3283 return; | |
3284 | |
7 | 3285 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno); |
3286 if (nbbuf == NULL) | |
3287 return; | |
3288 | |
3289 if (len < 0) | |
3290 { | |
1618 | 3291 nbdebug(("Negative len %ld in netbeans_removed()!\n", len)); |
7 | 3292 return; |
3293 } | |
3294 | |
3295 nbbuf->modified = 1; | |
3296 | |
3297 pos.lnum = linenr; | |
3298 pos.col = col; | |
3299 | |
3300 off = pos2off(bufp, &pos); | |
3301 | |
944 | 3302 sprintf((char *)buf, "%d:remove=%d %ld %ld\n", bufno, r_cmdno, off, len); |
7 | 3303 nbdebug(("EVT: %s", buf)); |
3304 nb_send((char *)buf, "netbeans_removed"); | |
3305 } | |
3306 | |
3307 /* | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1956
diff
changeset
|
3308 * Send netbeans an unmodified command. |
7 | 3309 */ |
3310 void | |
1884 | 3311 netbeans_unmodified(buf_T *bufp UNUSED) |
7 | 3312 { |
2520 | 3313 /* This is a no-op, because NetBeans considers a buffer modified |
7 | 3314 * even when all changes have been undone. */ |
3315 } | |
3316 | |
3317 /* | |
3318 * Send a button release event back to netbeans. Its up to netbeans | |
3319 * to decide what to do (if anything) with this event. | |
3320 */ | |
3321 void | |
3322 netbeans_button_release(int button) | |
3323 { | |
3324 char buf[128]; | |
3325 int bufno; | |
3326 | |
2210 | 3327 if (!NETBEANS_OPEN) |
3328 return; | |
3329 | |
7 | 3330 bufno = nb_getbufno(curbuf); |
3331 | |
3332 if (bufno >= 0 && curwin != NULL && curwin->w_buffer == curbuf) | |
3333 { | |
2178
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2156
diff
changeset
|
3334 int col = mouse_col - W_WINCOL(curwin) |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3335 - ((curwin->w_p_nu || curwin->w_p_rnu) ? 9 : 1); |
7 | 3336 long off = pos2off(curbuf, &curwin->w_cursor); |
3337 | |
3338 /* sync the cursor position */ | |
944 | 3339 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off); |
7 | 3340 nbdebug(("EVT: %s", buf)); |
3341 nb_send(buf, "netbeans_button_release[newDotAndMark]"); | |
3342 | |
944 | 3343 sprintf(buf, "%d:buttonRelease=%d %d %ld %d\n", bufno, r_cmdno, |
7 | 3344 button, (long)curwin->w_cursor.lnum, col); |
3345 nbdebug(("EVT: %s", buf)); | |
3346 nb_send(buf, "netbeans_button_release"); | |
3347 } | |
3348 } | |
3349 | |
3350 | |
3351 /* | |
1186 | 3352 * Send a keypress event back to netbeans. This usually simulates some |
33 | 3353 * kind of function key press. This function operates on a key code. |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3354 * Return TRUE when the key was sent, FALSE when the command has been |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3355 * postponed. |
7 | 3356 */ |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3357 int |
7 | 3358 netbeans_keycommand(int key) |
3359 { | |
33 | 3360 char keyName[60]; |
3361 | |
3362 netbeans_keyname(key, keyName); | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3363 return netbeans_keystring((char_u *)keyName); |
33 | 3364 } |
3365 | |
3366 | |
3367 /* | |
1186 | 3368 * Send a keypress event back to netbeans. This usually simulates some |
33 | 3369 * kind of function key press. This function operates on a key string. |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3370 * Return TRUE when the key was sent, FALSE when the command has been |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3371 * postponed. |
33 | 3372 */ |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3373 static int |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3374 netbeans_keystring(char_u *keyName) |
33 | 3375 { |
7 | 3376 char buf[2*MAXPATHL]; |
33 | 3377 int bufno = nb_getbufno(curbuf); |
7 | 3378 long off; |
3379 char_u *q; | |
3380 | |
2210 | 3381 if (!NETBEANS_OPEN) |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3382 return TRUE; |
7 | 3383 |
3384 if (bufno == -1) | |
3385 { | |
3386 nbdebug(("got keycommand for non-NetBeans buffer, opening...\n")); | |
3387 q = curbuf->b_ffname == NULL ? (char_u *)"" | |
3388 : nb_quote(curbuf->b_ffname); | |
3389 if (q == NULL) | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3390 return TRUE; |
272 | 3391 vim_snprintf(buf, sizeof(buf), "0:fileOpened=%d \"%s\" %s %s\n", 0, |
7 | 3392 q, |
3393 "T", /* open in NetBeans */ | |
3394 "F"); /* modified */ | |
3395 if (curbuf->b_ffname != NULL) | |
3396 vim_free(q); | |
3397 nbdebug(("EVT: %s", buf)); | |
3398 nb_send(buf, "netbeans_keycommand"); | |
3399 | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3400 postpone_keycommand(keyName); |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3401 return FALSE; |
7 | 3402 } |
3403 | |
3404 /* sync the cursor position */ | |
3405 off = pos2off(curbuf, &curwin->w_cursor); | |
944 | 3406 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off); |
7 | 3407 nbdebug(("EVT: %s", buf)); |
3408 nb_send(buf, "netbeans_keycommand"); | |
3409 | |
3410 /* To work on Win32 you must apply patch to ExtEditor module | |
3411 * from ExtEdCaret.java.diff - make EVT_newDotAndMark handler | |
3412 * more synchronous | |
3413 */ | |
3414 | |
3415 /* now send keyCommand event */ | |
272 | 3416 vim_snprintf(buf, sizeof(buf), "%d:keyCommand=%d \"%s\"\n", |
944 | 3417 bufno, r_cmdno, keyName); |
7 | 3418 nbdebug(("EVT: %s", buf)); |
3419 nb_send(buf, "netbeans_keycommand"); | |
3420 | |
3421 /* New: do both at once and include the lnum/col. */ | |
272 | 3422 vim_snprintf(buf, sizeof(buf), "%d:keyAtPos=%d \"%s\" %ld %ld/%ld\n", |
944 | 3423 bufno, r_cmdno, keyName, |
7 | 3424 off, (long)curwin->w_cursor.lnum, (long)curwin->w_cursor.col); |
3425 nbdebug(("EVT: %s", buf)); | |
3426 nb_send(buf, "netbeans_keycommand"); | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3427 return TRUE; |
7 | 3428 } |
3429 | |
3430 | |
3431 /* | |
3432 * Send a save event to netbeans. | |
3433 */ | |
3434 void | |
3435 netbeans_save_buffer(buf_T *bufp) | |
3436 { | |
3437 char_u buf[64]; | |
3438 int bufno; | |
3439 nbbuf_T *nbbuf; | |
3440 | |
2210 | 3441 if (!NETBEANS_OPEN) |
3442 return; | |
3443 | |
7 | 3444 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno); |
3445 if (nbbuf == NULL) | |
3446 return; | |
3447 | |
3448 nbbuf->modified = 0; | |
3449 | |
944 | 3450 sprintf((char *)buf, "%d:save=%d\n", bufno, r_cmdno); |
7 | 3451 nbdebug(("EVT: %s", buf)); |
3452 nb_send((char *)buf, "netbeans_save_buffer"); | |
3453 } | |
3454 | |
3455 | |
3456 /* | |
3457 * Send remove command to netbeans (this command has been turned off). | |
3458 */ | |
3459 void | |
3460 netbeans_deleted_all_lines(buf_T *bufp) | |
3461 { | |
3462 char_u buf[64]; | |
3463 int bufno; | |
3464 nbbuf_T *nbbuf; | |
3465 | |
2210 | 3466 if (!NETBEANS_OPEN) |
3467 return; | |
3468 | |
7 | 3469 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno); |
3470 if (nbbuf == NULL) | |
3471 return; | |
3472 | |
33 | 3473 /* Don't mark as modified for initial read */ |
3474 if (nbbuf->insertDone) | |
3475 nbbuf->modified = 1; | |
7 | 3476 |
944 | 3477 sprintf((char *)buf, "%d:remove=%d 0 -1\n", bufno, r_cmdno); |
7 | 3478 nbdebug(("EVT(suppressed): %s", buf)); |
3479 /* nb_send(buf, "netbeans_deleted_all_lines"); */ | |
3480 } | |
3481 | |
3482 | |
3483 /* | |
3484 * See if the lines are guarded. The top and bot parameters are from | |
3485 * u_savecommon(), these are the line above the change and the line below the | |
3486 * change. | |
3487 */ | |
3488 int | |
3489 netbeans_is_guarded(linenr_T top, linenr_T bot) | |
3490 { | |
3491 signlist_T *p; | |
3492 int lnum; | |
3493 | |
2210 | 3494 if (!NETBEANS_OPEN) |
3495 return FALSE; | |
3496 | |
7 | 3497 for (p = curbuf->b_signlist; p != NULL; p = p->next) |
3498 if (p->id >= GUARDEDOFFSET) | |
3499 for (lnum = top + 1; lnum < bot; lnum++) | |
3500 if (lnum == p->lnum) | |
3501 return TRUE; | |
3502 | |
3503 return FALSE; | |
3504 } | |
3505 | |
2592 | 3506 #if defined(FEAT_GUI_X11) || defined(PROTO) |
7 | 3507 /* |
3508 * We have multiple signs to draw at the same location. Draw the | |
3509 * multi-sign indicator instead. This is the Motif version. | |
3510 */ | |
3511 void | |
3512 netbeans_draw_multisign_indicator(int row) | |
3513 { | |
3514 int i; | |
3515 int y; | |
3516 int x; | |
3517 | |
2210 | 3518 if (!NETBEANS_OPEN) |
3519 return; | |
3520 | |
7 | 3521 x = 0; |
3522 y = row * gui.char_height + 2; | |
3523 | |
3524 for (i = 0; i < gui.char_height - 3; i++) | |
3525 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y++); | |
3526 | |
3527 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+0, y); | |
3528 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y); | |
3529 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+4, y++); | |
3530 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+1, y); | |
3531 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y); | |
3532 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+3, y++); | |
3533 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y); | |
3534 } | |
2592 | 3535 #endif /* FEAT_GUI_X11 */ |
7 | 3536 |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2271
diff
changeset
|
3537 #if defined(FEAT_GUI_GTK) && !defined(PROTO) |
7 | 3538 /* |
3539 * We have multiple signs to draw at the same location. Draw the | |
3540 * multi-sign indicator instead. This is the GTK/Gnome version. | |
3541 */ | |
3542 void | |
3543 netbeans_draw_multisign_indicator(int row) | |
3544 { | |
3545 int i; | |
3546 int y; | |
3547 int x; | |
3548 GdkDrawable *drawable = gui.drawarea->window; | |
3549 | |
2210 | 3550 if (!NETBEANS_OPEN) |
3551 return; | |
3552 | |
7 | 3553 x = 0; |
3554 y = row * gui.char_height + 2; | |
3555 | |
3556 for (i = 0; i < gui.char_height - 3; i++) | |
3557 gdk_draw_point(drawable, gui.text_gc, x+2, y++); | |
3558 | |
3559 gdk_draw_point(drawable, gui.text_gc, x+0, y); | |
3560 gdk_draw_point(drawable, gui.text_gc, x+2, y); | |
3561 gdk_draw_point(drawable, gui.text_gc, x+4, y++); | |
3562 gdk_draw_point(drawable, gui.text_gc, x+1, y); | |
3563 gdk_draw_point(drawable, gui.text_gc, x+2, y); | |
3564 gdk_draw_point(drawable, gui.text_gc, x+3, y++); | |
3565 gdk_draw_point(drawable, gui.text_gc, x+2, y); | |
3566 } | |
3567 #endif /* FEAT_GUI_GTK */ | |
3568 | |
3569 /* | |
3570 * If the mouse is clicked in the gutter of a line with multiple | |
3571 * annotations, cycle through the set of signs. | |
3572 */ | |
3573 void | |
3574 netbeans_gutter_click(linenr_T lnum) | |
3575 { | |
3576 signlist_T *p; | |
3577 | |
2210 | 3578 if (!NETBEANS_OPEN) |
3579 return; | |
3580 | |
7 | 3581 for (p = curbuf->b_signlist; p != NULL; p = p->next) |
3582 { | |
3583 if (p->lnum == lnum && p->next && p->next->lnum == lnum) | |
3584 { | |
3585 signlist_T *tail; | |
3586 | |
3587 /* remove "p" from list, reinsert it at the tail of the sublist */ | |
3588 if (p->prev) | |
3589 p->prev->next = p->next; | |
3590 else | |
3591 curbuf->b_signlist = p->next; | |
3592 p->next->prev = p->prev; | |
3593 /* now find end of sublist and insert p */ | |
3594 for (tail = p->next; | |
3595 tail->next && tail->next->lnum == lnum | |
3596 && tail->next->id < GUARDEDOFFSET; | |
3597 tail = tail->next) | |
3598 ; | |
3599 /* tail now points to last entry with same lnum (except | |
3600 * that "guarded" annotations are always last) */ | |
3601 p->next = tail->next; | |
3602 if (tail->next) | |
3603 tail->next->prev = p; | |
3604 p->prev = tail; | |
3605 tail->next = p; | |
3606 update_debug_sign(curbuf, lnum); | |
3607 break; | |
3608 } | |
3609 } | |
3610 } | |
3611 | |
3612 /* | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1956
diff
changeset
|
3613 * Add a sign of the requested type at the requested location. |
7 | 3614 * |
3615 * Reverse engineering: | |
3616 * Apparently an annotation is defined the first time it is used in a buffer. | |
3617 * When the same annotation is used in two buffers, the second time we do not | |
3618 * need to define a new sign name but reuse the existing one. But since the | |
3619 * ID number used in the second buffer starts counting at one again, a mapping | |
3620 * is made from the ID specifically for the buffer to the global sign name | |
3621 * (which is a number). | |
3622 * | |
3623 * globalsignmap[] stores the signs that have been defined globally. | |
3624 * buf->signmapused[] maps buffer-local annotation IDs to an index in | |
3625 * globalsignmap[]. | |
3626 */ | |
3627 static void | |
3628 addsigntype( | |
3629 nbbuf_T *buf, | |
3630 int typeNum, | |
3631 char_u *typeName, | |
1884 | 3632 char_u *tooltip UNUSED, |
7 | 3633 char_u *glyphFile, |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3634 char_u *fg, |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3635 char_u *bg) |
7 | 3636 { |
3637 int i, j; | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3638 int use_fg = (*fg && STRCMP(fg, "none") != 0); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3639 int use_bg = (*bg && STRCMP(bg, "none") != 0); |
7 | 3640 |
3641 for (i = 0; i < globalsignmapused; i++) | |
3642 if (STRCMP(typeName, globalsignmap[i]) == 0) | |
3643 break; | |
3644 | |
3645 if (i == globalsignmapused) /* not found; add it to global map */ | |
3646 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3647 nbdebug(("DEFINEANNOTYPE(%d,%s,%s,%s,%s,%s)\n", |
7 | 3648 typeNum, typeName, tooltip, glyphFile, fg, bg)); |
3649 if (use_fg || use_bg) | |
3650 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3651 char fgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1]; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3652 char bgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1]; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3653 char *ptr; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3654 int value; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3655 |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3656 value = strtol((char *)fg, &ptr, 10); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3657 if (ptr != (char *)fg) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3658 sprintf(fgbuf, "guifg=#%06x", value & 0xFFFFFF); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3659 else |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3660 sprintf(fgbuf, "guifg=%s ctermfg=%s", fg, fg); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3661 |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3662 value = strtol((char *)bg, &ptr, 10); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3663 if (ptr != (char *)bg) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3664 sprintf(bgbuf, "guibg=#%06x", value & 0xFFFFFF); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3665 else |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3666 sprintf(bgbuf, "guibg=%s ctermbg=%s", bg, bg); |
7 | 3667 |
3668 coloncmd(":highlight NB_%s %s %s", typeName, (use_fg) ? fgbuf : "", | |
3669 (use_bg) ? bgbuf : ""); | |
3670 if (*glyphFile == NUL) | |
3671 /* no glyph, line highlighting only */ | |
3672 coloncmd(":sign define %d linehl=NB_%s", i + 1, typeName); | |
3673 else if (vim_strsize(glyphFile) <= 2) | |
3674 /* one- or two-character glyph name, use as text glyph with | |
3675 * texthl */ | |
3676 coloncmd(":sign define %d text=%s texthl=NB_%s", i + 1, | |
3677 glyphFile, typeName); | |
3678 else | |
3679 /* glyph, line highlighting */ | |
3680 coloncmd(":sign define %d icon=%s linehl=NB_%s", i + 1, | |
3681 glyphFile, typeName); | |
3682 } | |
3683 else | |
3684 /* glyph, no line highlighting */ | |
3685 coloncmd(":sign define %d icon=%s", i + 1, glyphFile); | |
3686 | |
3687 if (STRCMP(typeName,"CurrentPC") == 0) | |
3688 curPCtype = typeNum; | |
3689 | |
3690 if (globalsignmapused == globalsignmaplen) | |
3691 { | |
3692 if (globalsignmaplen == 0) /* first allocation */ | |
3693 { | |
3694 globalsignmaplen = 20; | |
3695 globalsignmap = (char **)alloc_clear(globalsignmaplen*sizeof(char *)); | |
3696 } | |
3697 else /* grow it */ | |
3698 { | |
3699 int incr; | |
3700 int oldlen = globalsignmaplen; | |
6596 | 3701 char **t_globalsignmap = globalsignmap; |
7 | 3702 |
3703 globalsignmaplen *= 2; | |
3704 incr = globalsignmaplen - oldlen; | |
3705 globalsignmap = (char **)vim_realloc(globalsignmap, | |
3706 globalsignmaplen * sizeof(char *)); | |
6596 | 3707 if (globalsignmap == NULL) |
3708 { | |
3709 vim_free(t_globalsignmap); | |
3710 globalsignmaplen = 0; | |
3711 return; | |
3712 } | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2213
diff
changeset
|
3713 vim_memset(globalsignmap + oldlen, 0, incr * sizeof(char *)); |
7 | 3714 } |
3715 } | |
3716 | |
3717 globalsignmap[i] = (char *)typeName; | |
3718 globalsignmapused = i + 1; | |
3719 } | |
3720 | |
3721 /* check local map; should *not* be found! */ | |
3722 for (j = 0; j < buf->signmapused; j++) | |
3723 if (buf->signmap[j] == i + 1) | |
3724 return; | |
3725 | |
3726 /* add to local map */ | |
3727 if (buf->signmapused == buf->signmaplen) | |
3728 { | |
3729 if (buf->signmaplen == 0) /* first allocation */ | |
3730 { | |
3731 buf->signmaplen = 5; | |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
3732 buf->signmap = (int *)alloc_clear(buf->signmaplen * sizeof(int)); |
7 | 3733 } |
3734 else /* grow it */ | |
3735 { | |
3736 int incr; | |
3737 int oldlen = buf->signmaplen; | |
6596 | 3738 int *t_signmap = buf->signmap; |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
3739 |
7 | 3740 buf->signmaplen *= 2; |
3741 incr = buf->signmaplen - oldlen; | |
3742 buf->signmap = (int *)vim_realloc(buf->signmap, | |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
3743 buf->signmaplen * sizeof(int)); |
6596 | 3744 if (buf->signmap == NULL) |
3745 { | |
3746 vim_free(t_signmap); | |
3747 buf->signmaplen = 0; | |
3748 return; | |
3749 } | |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
3750 vim_memset(buf->signmap + oldlen, 0, incr * sizeof(int)); |
7 | 3751 } |
3752 } | |
3753 | |
3754 buf->signmap[buf->signmapused++] = i + 1; | |
3755 | |
3756 } | |
3757 | |
3758 | |
3759 /* | |
3760 * See if we have the requested sign type in the buffer. | |
3761 */ | |
3762 static int | |
3763 mapsigntype(nbbuf_T *buf, int localsigntype) | |
3764 { | |
3765 if (--localsigntype >= 0 && localsigntype < buf->signmapused) | |
3766 return buf->signmap[localsigntype]; | |
3767 | |
3768 return 0; | |
3769 } | |
3770 | |
3771 | |
3772 /* | |
3773 * Compute length of buffer, don't print anything. | |
3774 */ | |
3775 static long | |
3776 get_buf_size(buf_T *bufp) | |
3777 { | |
3778 linenr_T lnum; | |
3779 long char_count = 0; | |
3780 int eol_size; | |
3781 long last_check = 100000L; | |
3782 | |
3783 if (bufp->b_ml.ml_flags & ML_EMPTY) | |
3784 return 0; | |
3785 else | |
3786 { | |
3787 if (get_fileformat(bufp) == EOL_DOS) | |
3788 eol_size = 2; | |
3789 else | |
3790 eol_size = 1; | |
3791 for (lnum = 1; lnum <= bufp->b_ml.ml_line_count; ++lnum) | |
3792 { | |
1956 | 3793 char_count += (long)STRLEN(ml_get_buf(bufp, lnum, FALSE)) |
3794 + eol_size; | |
7 | 3795 /* Check for a CTRL-C every 100000 characters */ |
3796 if (char_count > last_check) | |
3797 { | |
3798 ui_breakcheck(); | |
3799 if (got_int) | |
3800 return char_count; | |
3801 last_check = char_count + 100000L; | |
3802 } | |
3803 } | |
3804 /* Correction for when last line doesn't have an EOL. */ | |
6933 | 3805 if (!bufp->b_p_eol && (bufp->b_p_bin || !bufp->b_p_fixeol)) |
7 | 3806 char_count -= eol_size; |
3807 } | |
3808 | |
3809 return char_count; | |
3810 } | |
3811 | |
3812 /* | |
3813 * Convert character offset to lnum,col | |
3814 */ | |
3815 static pos_T * | |
3816 off2pos(buf_T *buf, long offset) | |
3817 { | |
3818 linenr_T lnum; | |
3819 static pos_T pos; | |
3820 | |
3821 pos.lnum = 0; | |
3822 pos.col = 0; | |
3823 #ifdef FEAT_VIRTUALEDIT | |
3824 pos.coladd = 0; | |
3825 #endif | |
3826 | |
3827 if (!(buf->b_ml.ml_flags & ML_EMPTY)) | |
3828 { | |
3829 if ((lnum = ml_find_line_or_offset(buf, (linenr_T)0, &offset)) < 0) | |
3830 return NULL; | |
3831 pos.lnum = lnum; | |
3832 pos.col = offset; | |
3833 } | |
3834 | |
3835 return &pos; | |
3836 } | |
3837 | |
3838 /* | |
3839 * Convert an argument in the form "1234" to an offset and compute the | |
3840 * lnum/col from it. Convert an argument in the form "123/12" directly to a | |
3841 * lnum/col. | |
3842 * "argp" is advanced to after the argument. | |
3843 * Return a pointer to the position, NULL if something is wrong. | |
3844 */ | |
3845 static pos_T * | |
3846 get_off_or_lnum(buf_T *buf, char_u **argp) | |
3847 { | |
3848 static pos_T mypos; | |
3849 long off; | |
3850 | |
3851 off = strtol((char *)*argp, (char **)argp, 10); | |
3852 if (**argp == '/') | |
3853 { | |
3854 mypos.lnum = (linenr_T)off; | |
3855 ++*argp; | |
3856 mypos.col = strtol((char *)*argp, (char **)argp, 10); | |
3857 #ifdef FEAT_VIRTUALEDIT | |
3858 mypos.coladd = 0; | |
3859 #endif | |
3860 return &mypos; | |
3861 } | |
3862 return off2pos(buf, off); | |
3863 } | |
3864 | |
3865 | |
3866 /* | |
667 | 3867 * Convert (lnum,col) to byte offset in the file. |
7 | 3868 */ |
3869 static long | |
3870 pos2off(buf_T *buf, pos_T *pos) | |
3871 { | |
3872 long offset = 0; | |
3873 | |
3874 if (!(buf->b_ml.ml_flags & ML_EMPTY)) | |
3875 { | |
3876 if ((offset = ml_find_line_or_offset(buf, pos->lnum, 0)) < 0) | |
3877 return 0; | |
3878 offset += pos->col; | |
3879 } | |
3880 | |
3881 return offset; | |
3882 } | |
3883 | |
3884 | |
33 | 3885 /* |
3886 * This message is printed after NetBeans opens a new file. Its | |
3887 * similar to the message readfile() uses, but since NetBeans | |
3888 * doesn't normally call readfile, we do our own. | |
3889 */ | |
3890 static void | |
3891 print_read_msg(buf) | |
3892 nbbuf_T *buf; | |
3893 { | |
3894 int lnum = buf->bufp->b_ml.ml_line_count; | |
2241
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3895 off_t nchars = buf->bufp->b_orig_size; |
33 | 3896 char_u c; |
3897 | |
3898 msg_add_fname(buf->bufp, buf->bufp->b_ffname); | |
3899 c = FALSE; | |
3900 | |
3901 if (buf->bufp->b_p_ro) | |
3902 { | |
3903 STRCAT(IObuff, shortmess(SHM_RO) ? _("[RO]") : _("[readonly]")); | |
3904 c = TRUE; | |
3905 } | |
3906 if (!buf->bufp->b_start_eol) | |
3907 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3908 STRCAT(IObuff, shortmess(SHM_LAST) ? _("[noeol]") |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3909 : _("[Incomplete last line]")); |
33 | 3910 c = TRUE; |
3911 } | |
3912 msg_add_lines(c, (long)lnum, nchars); | |
3913 | |
3914 /* Now display it */ | |
3915 vim_free(keep_msg); | |
3916 keep_msg = NULL; | |
3917 msg_scrolled_ign = TRUE; | |
3918 msg_trunc_attr(IObuff, FALSE, 0); | |
3919 msg_scrolled_ign = FALSE; | |
3920 } | |
3921 | |
3922 | |
3923 /* | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3924 * Print a message after NetBeans writes the file. This message should be |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3925 * identical to the standard message a non-netbeans user would see when |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3926 * writing a file. |
33 | 3927 */ |
3928 static void | |
3929 print_save_msg(buf, nchars) | |
3930 nbbuf_T *buf; | |
2241
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3931 off_t nchars; |
33 | 3932 { |
3933 char_u c; | |
3934 char_u *p; | |
3935 | |
3936 if (nchars >= 0) | |
3937 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3938 /* put fname in IObuff with quotes */ |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3939 msg_add_fname(buf->bufp, buf->bufp->b_ffname); |
33 | 3940 c = FALSE; |
3941 | |
3942 msg_add_lines(c, buf->bufp->b_ml.ml_line_count, | |
2241
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3943 buf->bufp->b_orig_size); |
33 | 3944 |
3945 vim_free(keep_msg); | |
3946 keep_msg = NULL; | |
3947 msg_scrolled_ign = TRUE; | |
3948 p = msg_trunc_attr(IObuff, FALSE, 0); | |
3949 if ((msg_scrolled && !need_wait_return) || !buf->initDone) | |
3950 { | |
3951 /* Need to repeat the message after redrawing when: | |
3952 * - When reading from stdin (the screen will be cleared next). | |
3953 * - When restart_edit is set (otherwise there will be a delay | |
3954 * before redrawing). | |
3955 * - When the screen was scrolled but there is no wait-return | |
3956 * prompt. */ | |
678 | 3957 set_keep_msg(p, 0); |
33 | 3958 } |
3959 msg_scrolled_ign = FALSE; | |
3960 /* add_to_input_buf((char_u *)"\f", 1); */ | |
3961 } | |
3962 else | |
3963 { | |
2768 | 3964 char_u msgbuf[IOSIZE]; |
3965 | |
3966 vim_snprintf((char *)msgbuf, IOSIZE, | |
3967 _("E505: %s is read-only (add ! to override)"), IObuff); | |
3968 nbdebug((" %s\n", msgbuf)); | |
3969 emsg(msgbuf); | |
33 | 3970 } |
3971 } | |
3972 | |
7 | 3973 #endif /* defined(FEAT_NETBEANS_INTG) */ |