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