blob: 09d3d9bc0cf7c4b8c298f644c51ca14eea0cf6ba [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
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.
Bram Moolenaare3cc6d42011-10-20 21:58:34 +020017 *
18 * The Netbeans messages are received and queued in the gui event loop, or in
19 * the select loop when Vim runs in a terminal. These messages are processed
20 * by netbeans_parse_messages() which is invoked in the idle loop when Vim is
21 * waiting for user input. The function netbeans_parse_messages() is also
22 * called from the ":sleep" command, to allow the execution of test cases that
23 * may not invoke the idle loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +000024 */
25
26#include "vim.h"
27
28#if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
29
Bram Moolenaard04a0202016-01-26 23:30:18 +010030#ifndef WIN32
Bram Moolenaar3e53c702016-01-24 22:17:03 +010031# include <netdb.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +000032# ifdef HAVE_LIBGEN_H
33# include <libgen.h>
34# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000035#endif
36
37#include "version.h"
38
Bram Moolenaar071d4272004-06-13 20:20:40 +000039#define GUARDED 10000 /* typenr for "guarded" annotation */
40#define GUARDEDOFFSET 1000000 /* base for "guarded" sign id's */
Bram Moolenaar67c53842010-05-22 18:28:27 +020041#define MAX_COLOR_LENGTH 32 /* max length of color name in defineAnnoType */
Bram Moolenaar071d4272004-06-13 20:20:40 +000042
43/* The first implementation (working only with Netbeans) returned "1.1". The
44 * protocol implemented here also supports A-A-P. */
Bram Moolenaar67c53842010-05-22 18:28:27 +020045static char *ExtEdProtocolVersion = "2.5";
Bram Moolenaar071d4272004-06-13 20:20:40 +000046
47static long pos2off __ARGS((buf_T *, pos_T *));
48static pos_T *off2pos __ARGS((buf_T *, long));
49static pos_T *get_off_or_lnum __ARGS((buf_T *buf, char_u **argp));
50static long get_buf_size __ARGS((buf_T *));
Bram Moolenaar8065d7f2010-01-19 15:13:14 +010051static int netbeans_keystring __ARGS((char_u *keystr));
52static void postpone_keycommand __ARGS((char_u *keystr));
Bram Moolenaar009b2592004-10-24 19:18:58 +000053static void special_keys __ARGS((char_u *args));
Bram Moolenaar071d4272004-06-13 20:20:40 +000054
Bram Moolenaarb26e6322010-05-22 21:34:09 +020055static int netbeans_connect __ARGS((char *, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +000056static int getConnInfo __ARGS((char *file, char **host, char **port, char **password));
57
58static void nb_init_graphics __ARGS((void));
59static void coloncmd __ARGS((char *cmd, ...));
Bram Moolenaar8b6144b2006-02-08 09:20:24 +000060static void nb_set_curbuf __ARGS((buf_T *buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000061static void nb_parse_cmd __ARGS((char_u *));
62static int nb_do_cmd __ARGS((int, char_u *, int, int, char_u *));
63static void nb_send __ARGS((char *buf, char *fun));
Bram Moolenaarb26e6322010-05-22 21:34:09 +020064static void nb_free __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000065
Bram Moolenaard04a0202016-01-26 23:30:18 +010066#define NETBEANS_OPEN (nb_channel_idx >= 0 && channel_is_open(nb_channel_idx))
67static int nb_channel_idx = -1;
Bram Moolenaar67c53842010-05-22 18:28:27 +020068
Bram Moolenaar89d40322006-08-29 15:30:07 +000069static int r_cmdno; /* current command number for reply */
Bram Moolenaar009b2592004-10-24 19:18:58 +000070static int dosetvisible = FALSE;
71
Bram Moolenaar071d4272004-06-13 20:20:40 +000072/*
73 * Include the debugging code if wanted.
74 */
75#ifdef NBDEBUG
76# include "nbdebug.c"
77#endif
78
Bram Moolenaarb26e6322010-05-22 21:34:09 +020079static int needupdate = 0;
80static int inAtomic = 0;
81
Bram Moolenaar7ad7d012010-11-16 15:49:02 +010082/*
Bram Moolenaard04a0202016-01-26 23:30:18 +010083 * Callback invoked when the channel is closed.
Bram Moolenaar7ad7d012010-11-16 15:49:02 +010084 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000085 static void
Bram Moolenaard04a0202016-01-26 23:30:18 +010086nb_channel_closed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +000087{
Bram Moolenaard04a0202016-01-26 23:30:18 +010088 nb_channel_idx = -1;
Bram Moolenaar7ad7d012010-11-16 15:49:02 +010089}
90
91/*
92 * Close the connection and cleanup.
Bram Moolenaard04a0202016-01-26 23:30:18 +010093 * May be called when the socket was closed earlier.
Bram Moolenaar7ad7d012010-11-16 15:49:02 +010094 */
95 static void
96netbeans_close(void)
97{
98 if (NETBEANS_OPEN)
99 {
100 netbeans_send_disconnect();
Bram Moolenaard04a0202016-01-26 23:30:18 +0100101 if (nb_channel_idx >= 0)
102 /* Close the socket and remove the input handlers. */
103 channel_close(nb_channel_idx);
104 nb_channel_idx = -1;
Bram Moolenaar7ad7d012010-11-16 15:49:02 +0100105 }
106
Bram Moolenaar67c53842010-05-22 18:28:27 +0200107#ifdef FEAT_BEVAL
Bram Moolenaard62bec82005-03-07 22:56:57 +0000108 bevalServers &= ~BEVAL_NETBEANS;
Bram Moolenaar67c53842010-05-22 18:28:27 +0200109#endif
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200110
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200111 needupdate = 0;
112 inAtomic = 0;
113 nb_free();
114
115 /* remove all signs and update the screen after gutter removal */
116 coloncmd(":sign unplace *");
117 changed_window_setting();
118 update_screen(CLEAR);
119 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +0200120 cursor_on();
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200121 out_flush();
122#ifdef FEAT_GUI
Bram Moolenaard54a6882010-08-09 22:49:00 +0200123 if (gui.in_use)
124 {
125 gui_update_cursor(TRUE, FALSE);
126 gui_mch_flush();
127 }
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200128#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130
131#define NB_DEF_HOST "localhost"
132#define NB_DEF_ADDR "3219"
133#define NB_DEF_PASS "changeme"
134
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200135 static int
Bram Moolenaarf506c5b2010-06-22 06:28:58 +0200136netbeans_connect(char *params, int doabort)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137{
Bram Moolenaard04a0202016-01-26 23:30:18 +0100138 int port;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139 char buf[32];
140 char *hostname = NULL;
141 char *address = NULL;
142 char *password = NULL;
143 char *fname;
144 char *arg = NULL;
145
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200146 if (*params == '=')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200148 /* "=fname": Read info from specified file. */
Bram Moolenaare0874f82016-01-24 20:36:41 +0100149 if (getConnInfo(params + 1, &hostname, &address, &password) == FAIL)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200150 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151 }
152 else
153 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200154 if (*params == ':')
155 /* ":<host>:<addr>:<password>": get info from argument */
156 arg = params + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157 if (arg == NULL && (fname = getenv("__NETBEANS_CONINFO")) != NULL)
158 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200159 /* "": get info from file specified in environment */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160 if (getConnInfo(fname, &hostname, &address, &password) == FAIL)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200161 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162 }
163 else
164 {
165 if (arg != NULL)
166 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200167 /* ":<host>:<addr>:<password>": get info from argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168 hostname = arg;
169 address = strchr(hostname, ':');
170 if (address != NULL)
171 {
172 *address++ = '\0';
173 password = strchr(address, ':');
174 if (password != NULL)
175 *password++ = '\0';
176 }
177 }
178
179 /* Get the missing values from the environment. */
180 if (hostname == NULL || *hostname == '\0')
181 hostname = getenv("__NETBEANS_HOST");
182 if (address == NULL)
183 address = getenv("__NETBEANS_SOCKET");
184 if (password == NULL)
185 password = getenv("__NETBEANS_VIM_PASSWORD");
186
187 /* Move values to allocated memory. */
188 if (hostname != NULL)
189 hostname = (char *)vim_strsave((char_u *)hostname);
190 if (address != NULL)
191 address = (char *)vim_strsave((char_u *)address);
192 if (password != NULL)
193 password = (char *)vim_strsave((char_u *)password);
194 }
195 }
196
197 /* Use the default when a value is missing. */
198 if (hostname == NULL || *hostname == '\0')
199 {
200 vim_free(hostname);
201 hostname = (char *)vim_strsave((char_u *)NB_DEF_HOST);
202 }
203 if (address == NULL || *address == '\0')
204 {
205 vim_free(address);
206 address = (char *)vim_strsave((char_u *)NB_DEF_ADDR);
207 }
208 if (password == NULL || *password == '\0')
209 {
210 vim_free(password);
211 password = (char *)vim_strsave((char_u *)NB_DEF_PASS);
212 }
Bram Moolenaard04a0202016-01-26 23:30:18 +0100213 if (hostname != NULL && address != NULL && password != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214 {
Bram Moolenaard04a0202016-01-26 23:30:18 +0100215 port = atoi(address);
216 nb_channel_idx = channel_open(hostname, port, nb_channel_closed);
217 if (nb_channel_idx >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218 {
Bram Moolenaard04a0202016-01-26 23:30:18 +0100219 /* success */
220# ifdef FEAT_BEVAL
221 bevalServers |= BEVAL_NETBEANS;
222# endif
Bram Moolenaarc39125d2010-05-23 12:06:58 +0200223
Bram Moolenaard04a0202016-01-26 23:30:18 +0100224 /* success, login */
225 vim_snprintf(buf, sizeof(buf), "AUTH %s\n", password);
226 nb_send(buf, "netbeans_connect");
227
228 sprintf(buf, "0:version=0 \"%s\"\n", ExtEdProtocolVersion);
229 nb_send(buf, "externaleditor_version");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230 }
231 }
232
Bram Moolenaard04a0202016-01-26 23:30:18 +0100233 if (nb_channel_idx < 0 && doabort)
234 getout(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236 vim_free(hostname);
237 vim_free(address);
238 vim_free(password);
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200239 return NETBEANS_OPEN ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240}
241
242/*
243 * Obtain the NetBeans hostname, port address and password from a file.
244 * Return the strings in allocated memory.
245 * Return FAIL if the file could not be read, OK otherwise (no matter what it
246 * contains).
247 */
248 static int
249getConnInfo(char *file, char **host, char **port, char **auth)
250{
251 FILE *fp;
252 char_u buf[BUFSIZ];
253 char_u *lp;
Bram Moolenaar309cbc32012-01-10 22:31:31 +0100254 char_u *nlp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255#ifdef UNIX
256 struct stat st;
257
258 /*
259 * For Unix only accept the file when it's not accessible by others.
260 * The open will then fail if we don't own the file.
261 */
262 if (mch_stat(file, &st) == 0 && (st.st_mode & 0077) != 0)
263 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000264 nbdebug(("Wrong access mode for NetBeans connection info file: \"%s\"\n",
265 file));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266 EMSG2(_("E668: Wrong access mode for NetBeans connection info file: \"%s\""),
267 file);
268 return FAIL;
269 }
270#endif
271
272 fp = mch_fopen(file, "r");
273 if (fp == NULL)
274 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000275 nbdebug(("Cannot open NetBeans connection info file\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276 PERROR("E660: Cannot open NetBeans connection info file");
277 return FAIL;
278 }
279
280 /* Read the file. There should be one of each parameter */
281 while ((lp = (char_u *)fgets((char *)buf, BUFSIZ, fp)) != NULL)
282 {
Bram Moolenaar309cbc32012-01-10 22:31:31 +0100283 if ((nlp = vim_strchr(lp, '\n')) != NULL)
284 *nlp = 0; /* strip off the trailing newline */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285
286 if (STRNCMP(lp, "host=", 5) == 0)
287 {
288 vim_free(*host);
289 *host = (char *)vim_strsave(&buf[5]);
290 }
291 else if (STRNCMP(lp, "port=", 5) == 0)
292 {
293 vim_free(*port);
294 *port = (char *)vim_strsave(&buf[5]);
295 }
296 else if (STRNCMP(lp, "auth=", 5) == 0)
297 {
298 vim_free(*auth);
299 *auth = (char *)vim_strsave(&buf[5]);
300 }
301 }
302 fclose(fp);
303
304 return OK;
305}
306
307
308struct keyqueue
309{
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100310 char_u *keystr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311 struct keyqueue *next;
312 struct keyqueue *prev;
313};
314
315typedef struct keyqueue keyQ_T;
316
317static keyQ_T keyHead; /* dummy node, header for circular queue */
318
319
320/*
321 * Queue up key commands sent from netbeans.
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100322 * We store the string, because it may depend on the global mod_mask and
323 * :nbkey doesn't have a key number.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324 */
325 static void
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100326postpone_keycommand(char_u *keystr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327{
328 keyQ_T *node;
329
330 node = (keyQ_T *)alloc(sizeof(keyQ_T));
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100331 if (node == NULL)
332 return; /* out of memory, drop the key */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333
334 if (keyHead.next == NULL) /* initialize circular queue */
335 {
336 keyHead.next = &keyHead;
337 keyHead.prev = &keyHead;
338 }
339
340 /* insert node at tail of queue */
341 node->next = &keyHead;
342 node->prev = keyHead.prev;
343 keyHead.prev->next = node;
344 keyHead.prev = node;
345
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100346 node->keystr = vim_strsave(keystr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347}
348
349/*
350 * Handle any queued-up NetBeans keycommands to be send.
351 */
352 static void
353handle_key_queue(void)
354{
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100355 int postponed = FALSE;
356
357 while (!postponed && keyHead.next && keyHead.next != &keyHead)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358 {
359 /* first, unlink the node */
360 keyQ_T *node = keyHead.next;
361 keyHead.next = node->next;
362 node->next->prev = node->prev;
363
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100364 /* Now, send the keycommand. This may cause it to be postponed again
365 * and change keyHead. */
366 if (node->keystr != NULL)
367 postponed = !netbeans_keystring(node->keystr);
368 vim_free(node->keystr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369
370 /* Finally, dispose of the node */
371 vim_free(node);
372 }
373}
374
375
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376/*
377 * While there's still a command in the work queue, parse and execute it.
378 */
Bram Moolenaarf2330482008-06-24 20:19:36 +0000379 void
380netbeans_parse_messages(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381{
Bram Moolenaard04a0202016-01-26 23:30:18 +0100382 char_u *buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383 char_u *p;
Bram Moolenaar863053d2010-12-02 17:09:54 +0100384 int own_node;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385
Bram Moolenaard04a0202016-01-26 23:30:18 +0100386 while (nb_channel_idx >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387 {
Bram Moolenaard04a0202016-01-26 23:30:18 +0100388 buffer = channel_peek(nb_channel_idx);
389 if (buffer == NULL)
390 break; /* nothing to read */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391
392 /* Locate the first line in the first buffer. */
Bram Moolenaard04a0202016-01-26 23:30:18 +0100393 p = vim_strchr(buffer, '\n');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 if (p == NULL)
395 {
396 /* Command isn't complete. If there is no following buffer,
397 * return (wait for more). If there is another buffer following,
398 * prepend the text to that buffer and delete this one. */
Bram Moolenaard04a0202016-01-26 23:30:18 +0100399 if (channel_collapse(nb_channel_idx) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 }
402 else
403 {
404 /* There is a complete command at the start of the buffer.
405 * Terminate it with a NUL. When no more text is following unlink
406 * the buffer. Do this before executing, because new buffers can
407 * be added while busy handling the command. */
408 *p++ = NUL;
409 if (*p == NUL)
410 {
Bram Moolenaar863053d2010-12-02 17:09:54 +0100411 own_node = TRUE;
Bram Moolenaard04a0202016-01-26 23:30:18 +0100412 channel_get(nb_channel_idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413 }
Bram Moolenaar863053d2010-12-02 17:09:54 +0100414 else
415 own_node = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416
417 /* now, parse and execute the commands */
Bram Moolenaard04a0202016-01-26 23:30:18 +0100418 nb_parse_cmd(buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419
Bram Moolenaar863053d2010-12-02 17:09:54 +0100420 if (own_node)
Bram Moolenaard04a0202016-01-26 23:30:18 +0100421 /* buffer finished, dispose of it */
422 vim_free(buffer);
423 else
424 /* more follows, move it to the start */
425 STRMOVE(buffer, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426 }
427 }
428}
429
Bram Moolenaard04a0202016-01-26 23:30:18 +0100430/* TODO: remove */
Bram Moolenaar67c53842010-05-22 18:28:27 +0200431 void
432netbeans_read()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433{
Bram Moolenaard04a0202016-01-26 23:30:18 +0100434 if (nb_channel_idx >= 0)
435 channel_read(nb_channel_idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436}
437
438/*
439 * Handle one NUL terminated command.
440 *
441 * format of a command from netbeans:
442 *
443 * 6:setTitle!84 "a.c"
444 *
445 * bufno
446 * colon
447 * cmd
448 * !
449 * cmdno
450 * args
451 *
452 * for function calls, the ! is replaced by a /
453 */
454 static void
455nb_parse_cmd(char_u *cmd)
456{
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000457 char *verb;
458 char *q;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459 int bufno;
460 int isfunc = -1;
461
462 if (STRCMP(cmd, "DISCONNECT") == 0)
463 {
464 /* We assume the server knows that we can safely exit! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465 /* Disconnect before exiting, Motif hangs in a Select error
466 * message otherwise. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200467 netbeans_close();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468 getout(0);
469 /* NOTREACHED */
470 }
471
Bram Moolenaard04a0202016-01-26 23:30:18 +0100472 if (STRCMP(cmd, "\"DETACH\"") == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 {
Bram Moolenaard04a0202016-01-26 23:30:18 +0100474 buf_T *buf;
475
476 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
477 buf->b_has_sign_column = FALSE;
478
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479 /* The IDE is breaking the connection. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200480 netbeans_close();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481 return;
482 }
483
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000484 bufno = strtol((char *)cmd, &verb, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485
486 if (*verb != ':')
487 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000488 nbdebug((" missing colon: %s\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489 EMSG2("E627: missing colon: %s", cmd);
490 return;
491 }
492 ++verb; /* skip colon */
493
494 for (q = verb; *q; q++)
495 {
496 if (*q == '!')
497 {
498 *q++ = NUL;
499 isfunc = 0;
500 break;
501 }
502 else if (*q == '/')
503 {
504 *q++ = NUL;
505 isfunc = 1;
506 break;
507 }
508 }
509
510 if (isfunc < 0)
511 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000512 nbdebug((" missing ! or / in: %s\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513 EMSG2("E628: missing ! or / in: %s", cmd);
514 return;
515 }
516
Bram Moolenaar89d40322006-08-29 15:30:07 +0000517 r_cmdno = strtol(q, &q, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000519 q = (char *)skipwhite((char_u *)q);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520
Bram Moolenaar89d40322006-08-29 15:30:07 +0000521 if (nb_do_cmd(bufno, (char_u *)verb, isfunc, r_cmdno, (char_u *)q) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522 {
Bram Moolenaar009b2592004-10-24 19:18:58 +0000523#ifdef NBDEBUG
524 /*
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100525 * This happens because the ExtEd can send a command or 2 after
Bram Moolenaar009b2592004-10-24 19:18:58 +0000526 * doing a stopDocumentListen command. It doesn't harm anything
527 * so I'm disabling it except for debugging.
528 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529 nbdebug(("nb_parse_cmd: Command error for \"%s\"\n", cmd));
530 EMSG("E629: bad return from nb_do_cmd");
Bram Moolenaar009b2592004-10-24 19:18:58 +0000531#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532 }
533}
534
535struct nbbuf_struct
536{
537 buf_T *bufp;
538 unsigned int fireChanges:1;
539 unsigned int initDone:1;
Bram Moolenaar009b2592004-10-24 19:18:58 +0000540 unsigned int insertDone:1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541 unsigned int modified:1;
Bram Moolenaar009b2592004-10-24 19:18:58 +0000542 int nbbuf_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543 char *displayname;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000544 int *signmap;
545 short_u signmaplen;
546 short_u signmapused;
547};
548
549typedef struct nbbuf_struct nbbuf_T;
550
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200551static nbbuf_T *buf_list = NULL;
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000552static int buf_list_size = 0; /* size of buf_list */
553static int buf_list_used = 0; /* nr of entries in buf_list actually in use */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200555static char **globalsignmap = NULL;
556static int globalsignmaplen = 0;
557static int globalsignmapused = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558
559static int mapsigntype __ARGS((nbbuf_T *, int localsigntype));
560static void addsigntype __ARGS((nbbuf_T *, int localsigntype, char_u *typeName,
561 char_u *tooltip, char_u *glyphfile,
Bram Moolenaar67c53842010-05-22 18:28:27 +0200562 char_u *fg, char_u *bg));
Bram Moolenaar009b2592004-10-24 19:18:58 +0000563static void print_read_msg __ARGS((nbbuf_T *buf));
Bram Moolenaar914703b2010-05-31 21:59:46 +0200564static void print_save_msg __ARGS((nbbuf_T *buf, off_t nchars));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565
566static int curPCtype = -1;
567
568/*
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200569 * Free netbeans resources.
570 */
571 static void
572nb_free()
573{
574 keyQ_T *key_node = keyHead.next;
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200575 nbbuf_T buf;
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200576 int i;
577
578 /* free the netbeans buffer list */
579 for (i = 0; i < buf_list_used; i++)
580 {
581 buf = buf_list[i];
582 vim_free(buf.displayname);
583 vim_free(buf.signmap);
Bram Moolenaare980d8a2010-12-08 13:11:21 +0100584 if (buf.bufp != NULL)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200585 {
586 buf.bufp->b_netbeans_file = FALSE;
587 buf.bufp->b_was_netbeans_file = FALSE;
588 }
589 }
590 vim_free(buf_list);
591 buf_list = NULL;
592 buf_list_size = 0;
593 buf_list_used = 0;
594
595 /* free the queued key commands */
Bram Moolenaar8d4eecc2012-11-20 17:19:01 +0100596 while (key_node != NULL && key_node != &keyHead)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200597 {
598 keyQ_T *next = key_node->next;
599 vim_free(key_node->keystr);
600 vim_free(key_node);
601 if (next == &keyHead)
602 {
603 keyHead.next = &keyHead;
604 keyHead.prev = &keyHead;
605 break;
606 }
607 key_node = next;
608 }
609
610 /* free the queued netbeans commands */
Bram Moolenaard04a0202016-01-26 23:30:18 +0100611 if (nb_channel_idx >= 0)
612 channel_clear(nb_channel_idx);
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200613}
614
615/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 * Get the Netbeans buffer number for the specified buffer.
617 */
618 static int
619nb_getbufno(buf_T *bufp)
620{
621 int i;
622
623 for (i = 0; i < buf_list_used; i++)
624 if (buf_list[i].bufp == bufp)
625 return i;
626 return -1;
627}
628
629/*
630 * Is this a NetBeans-owned buffer?
631 */
632 int
633isNetbeansBuffer(buf_T *bufp)
634{
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200635 return NETBEANS_OPEN && bufp->b_netbeans_file;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636}
637
638/*
639 * NetBeans and Vim have different undo models. In Vim, the file isn't
640 * changed if changes are undone via the undo command. In NetBeans, once
641 * a change has been made the file is marked as modified until saved. It
642 * doesn't matter if the change was undone.
643 *
644 * So this function is for the corner case where Vim thinks a buffer is
645 * unmodified but NetBeans thinks it IS modified.
646 */
647 int
648isNetbeansModified(buf_T *bufp)
649{
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200650 if (isNetbeansBuffer(bufp))
Bram Moolenaar009b2592004-10-24 19:18:58 +0000651 {
652 int bufno = nb_getbufno(bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653
Bram Moolenaar009b2592004-10-24 19:18:58 +0000654 if (bufno > 0)
655 return buf_list[bufno].modified;
656 else
657 return FALSE;
658 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659 else
660 return FALSE;
661}
662
663/*
664 * Given a Netbeans buffer number, return the netbeans buffer.
665 * Returns NULL for 0 or a negative number. A 0 bufno means a
666 * non-buffer related command has been sent.
667 */
668 static nbbuf_T *
669nb_get_buf(int bufno)
670{
671 /* find or create a buffer with the given number */
672 int incr;
673
674 if (bufno <= 0)
675 return NULL;
676
677 if (!buf_list)
678 {
679 /* initialize */
680 buf_list = (nbbuf_T *)alloc_clear(100 * sizeof(nbbuf_T));
681 buf_list_size = 100;
682 }
683 if (bufno >= buf_list_used) /* new */
684 {
685 if (bufno >= buf_list_size) /* grow list */
686 {
Bram Moolenaar9abd5c62015-02-10 18:34:01 +0100687 nbbuf_T *t_buf_list = buf_list;
688
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689 incr = bufno - buf_list_size + 90;
690 buf_list_size += incr;
691 buf_list = (nbbuf_T *)vim_realloc(
692 buf_list, buf_list_size * sizeof(nbbuf_T));
Bram Moolenaar9abd5c62015-02-10 18:34:01 +0100693 if (buf_list == NULL)
694 {
695 vim_free(t_buf_list);
696 buf_list_size = 0;
697 return NULL;
698 }
Bram Moolenaar7db5fc82010-05-24 11:59:29 +0200699 vim_memset(buf_list + buf_list_size - incr, 0,
700 incr * sizeof(nbbuf_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701 }
702
703 while (buf_list_used <= bufno)
704 {
705 /* Default is to fire text changes. */
706 buf_list[buf_list_used].fireChanges = 1;
707 ++buf_list_used;
708 }
709 }
710
711 return buf_list + bufno;
712}
713
714/*
715 * Return the number of buffers that are modified.
716 */
717 static int
718count_changed_buffers(void)
719{
720 buf_T *bufp;
721 int n;
722
723 n = 0;
724 for (bufp = firstbuf; bufp != NULL; bufp = bufp->b_next)
725 if (bufp->b_changed)
726 ++n;
727 return n;
728}
729
730/*
731 * End the netbeans session.
732 */
733 void
734netbeans_end(void)
735{
736 int i;
737 static char buf[128];
738
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200739 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 return;
741
742 for (i = 0; i < buf_list_used; i++)
743 {
744 if (!buf_list[i].bufp)
745 continue;
746 if (netbeansForcedQuit)
747 {
748 /* mark as unmodified so NetBeans won't put up dialog on "killed" */
Bram Moolenaar89d40322006-08-29 15:30:07 +0000749 sprintf(buf, "%d:unmodified=%d\n", i, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 nbdebug(("EVT: %s", buf));
751 nb_send(buf, "netbeans_end");
752 }
Bram Moolenaar89d40322006-08-29 15:30:07 +0000753 sprintf(buf, "%d:killed=%d\n", i, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754 nbdebug(("EVT: %s", buf));
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200755 /* nb_send(buf, "netbeans_end"); avoid "write failed" messages */
Bram Moolenaard04a0202016-01-26 23:30:18 +0100756 nb_send(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758}
759
760/*
761 * Send a message to netbeans.
Bram Moolenaard04a0202016-01-26 23:30:18 +0100762 * When "fun" is NULL no error is given.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 */
764 static void
765nb_send(char *buf, char *fun)
766{
Bram Moolenaard04a0202016-01-26 23:30:18 +0100767 if (nb_channel_idx >= 0)
768 channel_send(nb_channel_idx, (char_u *)buf, fun);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769}
770
771/*
772 * Some input received from netbeans requires a response. This function
773 * handles a response with no information (except the command number).
774 */
775 static void
776nb_reply_nil(int cmdno)
777{
778 char reply[32];
779
Bram Moolenaar009b2592004-10-24 19:18:58 +0000780 nbdebug(("REP %d: <none>\n", cmdno));
781
Bram Moolenaar7ad7d012010-11-16 15:49:02 +0100782 /* Avoid printing an annoying error message. */
783 if (!NETBEANS_OPEN)
784 return;
785
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 sprintf(reply, "%d\n", cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787 nb_send(reply, "nb_reply_nil");
788}
789
790
791/*
792 * Send a response with text.
793 * "result" must have been quoted already (using nb_quote()).
794 */
795 static void
796nb_reply_text(int cmdno, char_u *result)
797{
798 char_u *reply;
799
Bram Moolenaar009b2592004-10-24 19:18:58 +0000800 nbdebug(("REP %d: %s\n", cmdno, (char *)result));
801
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000802 reply = alloc((unsigned)STRLEN(result) + 32);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 sprintf((char *)reply, "%d %s\n", cmdno, (char *)result);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804 nb_send((char *)reply, "nb_reply_text");
805
806 vim_free(reply);
807}
808
809
810/*
811 * Send a response with a number result code.
812 */
813 static void
814nb_reply_nr(int cmdno, long result)
815{
816 char reply[32];
817
Bram Moolenaar009b2592004-10-24 19:18:58 +0000818 nbdebug(("REP %d: %ld\n", cmdno, result));
819
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 sprintf(reply, "%d %ld\n", cmdno, result);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 nb_send(reply, "nb_reply_nr");
822}
823
824
825/*
826 * Encode newline, ret, backslash, double quote for transmission to NetBeans.
827 */
828 static char_u *
829nb_quote(char_u *txt)
830{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000831 char_u *buf = alloc((unsigned)(2 * STRLEN(txt) + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 char_u *p = txt;
833 char_u *q = buf;
834
835 if (buf == NULL)
836 return NULL;
837 for (; *p; p++)
838 {
839 switch (*p)
840 {
841 case '\"':
842 case '\\':
843 *q++ = '\\'; *q++ = *p; break;
844 /* case '\t': */
845 /* *q++ = '\\'; *q++ = 't'; break; */
846 case '\n':
847 *q++ = '\\'; *q++ = 'n'; break;
848 case '\r':
849 *q++ = '\\'; *q++ = 'r'; break;
850 default:
851 *q++ = *p;
852 break;
853 }
854 }
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100855 *q = '\0';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856
857 return buf;
858}
859
860
861/*
862 * Remove top level double quotes; convert backslashed chars.
863 * Returns an allocated string (NULL for failure).
864 * If "endp" is not NULL it is set to the character after the terminating
865 * quote.
866 */
867 static char *
868nb_unquote(char_u *p, char_u **endp)
869{
870 char *result = 0;
871 char *q;
872 int done = 0;
873
874 /* result is never longer than input */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000875 result = (char *)alloc_clear((unsigned)STRLEN(p) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876 if (result == NULL)
877 return NULL;
878
879 if (*p++ != '"')
880 {
881 nbdebug(("nb_unquote called with string that doesn't start with a quote!: %s\n",
882 p));
883 result[0] = NUL;
884 return result;
885 }
886
887 for (q = result; !done && *p != NUL;)
888 {
889 switch (*p)
890 {
891 case '"':
892 /*
893 * Unbackslashed dquote marks the end, if first char was dquote.
894 */
895 done = 1;
896 break;
897
898 case '\\':
899 ++p;
900 switch (*p)
901 {
902 case '\\': *q++ = '\\'; break;
903 case 'n': *q++ = '\n'; break;
904 case 't': *q++ = '\t'; break;
905 case 'r': *q++ = '\r'; break;
906 case '"': *q++ = '"'; break;
907 case NUL: --p; break;
908 /* default: skip over illegal chars */
909 }
910 ++p;
911 break;
912
913 default:
914 *q++ = *p++;
915 }
916 }
917
918 if (endp != NULL)
919 *endp = p;
920
921 return result;
922}
923
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000924/*
925 * Remove from "first" byte to "last" byte (inclusive), at line "lnum" of the
926 * current buffer. Remove to end of line when "last" is MAXCOL.
927 */
928 static void
929nb_partialremove(linenr_T lnum, colnr_T first, colnr_T last)
930{
931 char_u *oldtext, *newtext;
932 int oldlen;
933 int lastbyte = last;
934
935 oldtext = ml_get(lnum);
Bram Moolenaarcb4cef22008-03-16 15:04:34 +0000936 oldlen = (int)STRLEN(oldtext);
Bram Moolenaarb3c70982008-01-18 10:40:55 +0000937 if (first >= (colnr_T)oldlen || oldlen == 0) /* just in case */
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000938 return;
939 if (lastbyte >= oldlen)
940 lastbyte = oldlen - 1;
941 newtext = alloc(oldlen - (int)(lastbyte - first));
942 if (newtext != NULL)
943 {
944 mch_memmove(newtext, oldtext, first);
Bram Moolenaarf2330482008-06-24 20:19:36 +0000945 STRMOVE(newtext + first, oldtext + lastbyte + 1);
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000946 nbdebug((" NEW LINE %d: %s\n", lnum, newtext));
947 ml_replace(lnum, newtext, FALSE);
948 }
949}
950
951/*
952 * Replace the "first" line with the concatenation of the "first" and
953 * the "other" line. The "other" line is not removed.
954 */
955 static void
956nb_joinlines(linenr_T first, linenr_T other)
957{
958 int len_first, len_other;
959 char_u *p;
960
Bram Moolenaarcb4cef22008-03-16 15:04:34 +0000961 len_first = (int)STRLEN(ml_get(first));
962 len_other = (int)STRLEN(ml_get(other));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000963 p = alloc((unsigned)(len_first + len_other + 1));
964 if (p != NULL)
965 {
966 mch_memmove(p, ml_get(first), len_first);
967 mch_memmove(p + len_first, ml_get(other), len_other + 1);
968 ml_replace(first, p, FALSE);
969 }
970}
971
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972#define SKIP_STOP 2
973#define streq(a,b) (strcmp(a,b) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974
975/*
976 * Do the actual processing of a single netbeans command or function.
Bram Moolenaar143c38c2007-05-10 16:41:10 +0000977 * The difference between a command and function is that a function
978 * gets a response (it's required) but a command does not.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979 * For arguments see comment for nb_parse_cmd().
980 */
981 static int
982nb_do_cmd(
983 int bufno,
984 char_u *cmd,
985 int func,
986 int cmdno,
987 char_u *args) /* points to space before arguments or NUL */
988{
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100989 int do_update = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 long off = 0;
991 nbbuf_T *buf = nb_get_buf(bufno);
992 static int skip = 0;
993 int retval = OK;
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000994 char *cp; /* for when a char pointer is needed */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995
996 nbdebug(("%s %d: (%d) %s %s\n", (func) ? "FUN" : "CMD", cmdno, bufno, cmd,
997 STRCMP(cmd, "insert") == 0 ? "<text>" : (char *)args));
998
999 if (func)
1000 {
1001/* =====================================================================*/
1002 if (streq((char *)cmd, "getModified"))
1003 {
1004 if (buf == NULL || buf->bufp == NULL)
1005 /* Return the number of buffers that are modified. */
1006 nb_reply_nr(cmdno, (long)count_changed_buffers());
1007 else
1008 /* Return whether the buffer is modified. */
1009 nb_reply_nr(cmdno, (long)(buf->bufp->b_changed
1010 || isNetbeansModified(buf->bufp)));
1011/* =====================================================================*/
1012 }
1013 else if (streq((char *)cmd, "saveAndExit"))
1014 {
1015 /* Note: this will exit Vim if successful. */
1016 coloncmd(":confirm qall");
1017
1018 /* We didn't exit: return the number of changed buffers. */
1019 nb_reply_nr(cmdno, (long)count_changed_buffers());
1020/* =====================================================================*/
1021 }
1022 else if (streq((char *)cmd, "getCursor"))
1023 {
1024 char_u text[200];
1025
1026 /* Note: nb_getbufno() may return -1. This indicates the IDE
1027 * didn't assign a number to the current buffer in response to a
1028 * fileOpened event. */
1029 sprintf((char *)text, "%d %ld %d %ld",
1030 nb_getbufno(curbuf),
1031 (long)curwin->w_cursor.lnum,
1032 (int)curwin->w_cursor.col,
1033 pos2off(curbuf, &curwin->w_cursor));
1034 nb_reply_text(cmdno, text);
1035/* =====================================================================*/
1036 }
Bram Moolenaarc65c4912006-11-14 17:29:46 +00001037 else if (streq((char *)cmd, "getAnno"))
1038 {
1039 long linenum = 0;
1040#ifdef FEAT_SIGNS
1041 if (buf == NULL || buf->bufp == NULL)
1042 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001043 nbdebug((" Invalid buffer identifier in getAnno\n"));
1044 EMSG("E652: Invalid buffer identifier in getAnno");
Bram Moolenaarc65c4912006-11-14 17:29:46 +00001045 retval = FAIL;
1046 }
1047 else
1048 {
1049 int serNum;
1050
1051 cp = (char *)args;
1052 serNum = strtol(cp, &cp, 10);
1053 /* If the sign isn't found linenum will be zero. */
1054 linenum = (long)buf_findsign(buf->bufp, serNum);
1055 }
1056#endif
1057 nb_reply_nr(cmdno, linenum);
1058/* =====================================================================*/
1059 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 else if (streq((char *)cmd, "getLength"))
1061 {
1062 long len = 0;
1063
1064 if (buf == NULL || buf->bufp == NULL)
1065 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001066 nbdebug((" invalid buffer identifier in getLength\n"));
1067 EMSG("E632: invalid buffer identifier in getLength");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 retval = FAIL;
1069 }
1070 else
1071 {
1072 len = get_buf_size(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 }
1074 nb_reply_nr(cmdno, len);
1075/* =====================================================================*/
1076 }
1077 else if (streq((char *)cmd, "getText"))
1078 {
1079 long len;
1080 linenr_T nlines;
1081 char_u *text = NULL;
1082 linenr_T lno = 1;
1083 char_u *p;
1084 char_u *line;
1085
1086 if (buf == NULL || buf->bufp == NULL)
1087 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001088 nbdebug((" invalid buffer identifier in getText\n"));
1089 EMSG("E633: invalid buffer identifier in getText");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090 retval = FAIL;
1091 }
1092 else
1093 {
1094 len = get_buf_size(buf->bufp);
1095 nlines = buf->bufp->b_ml.ml_line_count;
1096 text = alloc((unsigned)((len > 0)
1097 ? ((len + nlines) * 2) : 4));
1098 if (text == NULL)
1099 {
1100 nbdebug((" nb_do_cmd: getText has null text field\n"));
1101 retval = FAIL;
1102 }
1103 else
1104 {
1105 p = text;
1106 *p++ = '\"';
1107 for (; lno <= nlines ; lno++)
1108 {
1109 line = nb_quote(ml_get_buf(buf->bufp, lno, FALSE));
1110 if (line != NULL)
1111 {
1112 STRCPY(p, line);
1113 p += STRLEN(line);
1114 *p++ = '\\';
1115 *p++ = 'n';
Bram Moolenaar009b2592004-10-24 19:18:58 +00001116 vim_free(line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 }
1119 *p++ = '\"';
1120 *p = '\0';
1121 }
1122 }
1123 if (text == NULL)
1124 nb_reply_text(cmdno, (char_u *)"");
1125 else
1126 {
1127 nb_reply_text(cmdno, text);
1128 vim_free(text);
1129 }
1130/* =====================================================================*/
1131 }
1132 else if (streq((char *)cmd, "remove"))
1133 {
1134 long count;
1135 pos_T first, last;
1136 pos_T *pos;
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001137 pos_T *next;
1138 linenr_T del_from_lnum, del_to_lnum; /* lines to be deleted as a whole */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 int oldFire = netbeansFireChanges;
1140 int oldSuppress = netbeansSuppressNoLines;
1141 int wasChanged;
1142
1143 if (skip >= SKIP_STOP)
1144 {
1145 nbdebug((" Skipping %s command\n", (char *) cmd));
1146 nb_reply_nil(cmdno);
1147 return OK;
1148 }
1149
1150 if (buf == NULL || buf->bufp == NULL)
1151 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001152 nbdebug((" invalid buffer identifier in remove\n"));
1153 EMSG("E634: invalid buffer identifier in remove");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 retval = FAIL;
1155 }
1156 else
1157 {
1158 netbeansFireChanges = FALSE;
1159 netbeansSuppressNoLines = TRUE;
1160
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001161 nb_set_curbuf(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 wasChanged = buf->bufp->b_changed;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001163 cp = (char *)args;
1164 off = strtol(cp, &cp, 10);
1165 count = strtol(cp, &cp, 10);
1166 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167 /* delete "count" chars, starting at "off" */
1168 pos = off2pos(buf->bufp, off);
1169 if (!pos)
1170 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001171 nbdebug((" !bad position\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 nb_reply_text(cmdno, (char_u *)"!bad position");
1173 netbeansFireChanges = oldFire;
1174 netbeansSuppressNoLines = oldSuppress;
1175 return FAIL;
1176 }
1177 first = *pos;
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001178 nbdebug((" FIRST POS: line %d, col %d\n",
1179 first.lnum, first.col));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180 pos = off2pos(buf->bufp, off+count-1);
1181 if (!pos)
1182 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001183 nbdebug((" !bad count\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 nb_reply_text(cmdno, (char_u *)"!bad count");
1185 netbeansFireChanges = oldFire;
1186 netbeansSuppressNoLines = oldSuppress;
1187 return FAIL;
1188 }
1189 last = *pos;
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001190 nbdebug((" LAST POS: line %d, col %d\n",
1191 last.lnum, last.col));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001192 del_from_lnum = first.lnum;
1193 del_to_lnum = last.lnum;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001194 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001196 /* Get the position of the first byte after the deleted
1197 * section. "next" is NULL when deleting to the end of the
1198 * file. */
1199 next = off2pos(buf->bufp, off + count);
1200
1201 /* Remove part of the first line. */
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001202 if (first.col != 0
1203 || (next != NULL && first.lnum == next->lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 {
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001205 if (first.lnum != last.lnum
1206 || (next != NULL && first.lnum != next->lnum))
1207 {
1208 /* remove to the end of the first line */
1209 nb_partialremove(first.lnum, first.col,
1210 (colnr_T)MAXCOL);
1211 if (first.lnum == last.lnum)
1212 {
1213 /* Partial line to remove includes the end of
1214 * line. Join the line with the next one, have
1215 * the next line deleted below. */
1216 nb_joinlines(first.lnum, next->lnum);
1217 del_to_lnum = next->lnum;
1218 }
1219 }
1220 else
1221 {
1222 /* remove within one line */
1223 nb_partialremove(first.lnum, first.col, last.col);
1224 }
1225 ++del_from_lnum; /* don't delete the first line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 }
1227
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001228 /* Remove part of the last line. */
1229 if (first.lnum != last.lnum && next != NULL
1230 && next->col != 0 && last.lnum == next->lnum)
1231 {
1232 nb_partialremove(last.lnum, 0, last.col);
1233 if (del_from_lnum > first.lnum)
1234 {
1235 /* Join end of last line to start of first line; last
1236 * line is deleted below. */
1237 nb_joinlines(first.lnum, last.lnum);
1238 }
1239 else
1240 /* First line is deleted as a whole, keep the last
1241 * line. */
1242 --del_to_lnum;
1243 }
1244
1245 /* First is partial line; last line to remove includes
1246 * the end of line; join first line to line following last
1247 * line; line following last line is deleted below. */
1248 if (first.lnum != last.lnum && del_from_lnum > first.lnum
1249 && next != NULL && last.lnum != next->lnum)
1250 {
1251 nb_joinlines(first.lnum, next->lnum);
1252 del_to_lnum = next->lnum;
1253 }
1254
1255 /* Delete whole lines if there are any. */
1256 if (del_to_lnum >= del_from_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 {
1258 int i;
1259
1260 /* delete signs from the lines being deleted */
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001261 for (i = del_from_lnum; i <= del_to_lnum; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 {
1263 int id = buf_findsign_id(buf->bufp, (linenr_T)i);
1264 if (id > 0)
1265 {
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001266 nbdebug((" Deleting sign %d on line %d\n",
1267 id, i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 buf_delsign(buf->bufp, id);
1269 }
1270 else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001271 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 nbdebug((" No sign on line %d\n", i));
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001273 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 }
1275
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001276 nbdebug((" Deleting lines %d through %d\n",
1277 del_from_lnum, del_to_lnum));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001278 curwin->w_cursor.lnum = del_from_lnum;
1279 curwin->w_cursor.col = 0;
1280 del_lines(del_to_lnum - del_from_lnum + 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 }
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001282
1283 /* Leave cursor at first deleted byte. */
1284 curwin->w_cursor = first;
1285 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 buf->bufp->b_changed = wasChanged; /* logically unchanged */
1287 netbeansFireChanges = oldFire;
1288 netbeansSuppressNoLines = oldSuppress;
1289
1290 u_blockfree(buf->bufp);
1291 u_clearall(buf->bufp);
1292 }
1293 nb_reply_nil(cmdno);
1294/* =====================================================================*/
1295 }
1296 else if (streq((char *)cmd, "insert"))
1297 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 char_u *to_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299
1300 if (skip >= SKIP_STOP)
1301 {
1302 nbdebug((" Skipping %s command\n", (char *) cmd));
1303 nb_reply_nil(cmdno);
1304 return OK;
1305 }
1306
1307 /* get offset */
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001308 cp = (char *)args;
1309 off = strtol(cp, &cp, 10);
1310 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311
1312 /* get text to be inserted */
1313 args = skipwhite(args);
1314 args = to_free = (char_u *)nb_unquote(args, NULL);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001315 /*
1316 nbdebug((" CHUNK[%d]: %d bytes at offset %d\n",
1317 buf->bufp->b_ml.ml_line_count, STRLEN(args), off));
1318 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319
1320 if (buf == NULL || buf->bufp == NULL)
1321 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001322 nbdebug((" invalid buffer identifier in insert\n"));
1323 EMSG("E635: invalid buffer identifier in insert");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 retval = FAIL;
1325 }
1326 else if (args != NULL)
1327 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001328 int ff_detected = EOL_UNKNOWN;
1329 int buf_was_empty = (buf->bufp->b_ml.ml_flags & ML_EMPTY);
1330 size_t len = 0;
1331 int added = 0;
1332 int oldFire = netbeansFireChanges;
1333 int old_b_changed;
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001334 char_u *nlp;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001335 linenr_T lnum;
1336 linenr_T lnum_start;
1337 pos_T *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 netbeansFireChanges = 0;
1340
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001341 /* Jump to the buffer where we insert. After this "curbuf"
1342 * can be used. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001343 nb_set_curbuf(buf->bufp);
Bram Moolenaara3227e22006-03-08 21:32:40 +00001344 old_b_changed = curbuf->b_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001346 /* Convert the specified character offset into a lnum/col
1347 * position. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001348 pos = off2pos(curbuf, off);
1349 if (pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001351 if (pos->lnum <= 0)
1352 lnum_start = 1;
1353 else
1354 lnum_start = pos->lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355 }
1356 else
1357 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001358 /* If the given position is not found, assume we want
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 * the end of the file. See setLocAndSize HACK. */
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001360 if (buf_was_empty)
1361 lnum_start = 1; /* above empty line */
1362 else
1363 lnum_start = curbuf->b_ml.ml_line_count + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001364 }
1365
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001366 /* "lnum" is the line where we insert: either append to it or
1367 * insert a new line above it. */
1368 lnum = lnum_start;
1369
1370 /* Loop over the "\n" separated lines of the argument. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001371 do_update = 1;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001372 while (*args != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 {
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001374 nlp = vim_strchr(args, '\n');
1375 if (nlp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001377 /* Incomplete line, probably truncated. Next "insert"
1378 * command should append to this one. */
1379 len = STRLEN(args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001381 else
1382 {
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001383 len = nlp - args;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001384
1385 /*
1386 * We need to detect EOL style, because the commands
1387 * use a character offset.
1388 */
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001389 if (nlp > args && nlp[-1] == '\r')
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001390 {
1391 ff_detected = EOL_DOS;
1392 --len;
1393 }
1394 else
1395 ff_detected = EOL_UNIX;
1396 }
1397 args[len] = NUL;
1398
1399 if (lnum == lnum_start
1400 && ((pos != NULL && pos->col > 0)
1401 || (lnum == 1 && buf_was_empty)))
1402 {
1403 char_u *oldline = ml_get(lnum);
1404 char_u *newline;
1405
Bram Moolenaare4365282012-04-20 19:47:05 +02001406 /* Insert halfway a line. */
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001407 newline = alloc_check(
1408 (unsigned)(STRLEN(oldline) + len + 1));
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001409 if (newline != NULL)
1410 {
Bram Moolenaare4365282012-04-20 19:47:05 +02001411 mch_memmove(newline, oldline, (size_t)pos->col);
1412 newline[pos->col] = NUL;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001413 STRCAT(newline, args);
Bram Moolenaare4365282012-04-20 19:47:05 +02001414 STRCAT(newline, oldline + pos->col);
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001415 ml_replace(lnum, newline, FALSE);
1416 }
1417 }
1418 else
1419 {
1420 /* Append a new line. Not that we always do this,
1421 * also when the text doesn't end in a "\n". */
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001422 ml_append((linenr_T)(lnum - 1), args,
1423 (colnr_T)(len + 1), FALSE);
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001424 ++added;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001425 }
1426
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001427 if (nlp == NULL)
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001428 break;
1429 ++lnum;
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001430 args = nlp + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001431 }
1432
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001433 /* Adjust the marks below the inserted lines. */
1434 appended_lines_mark(lnum_start - 1, (long)added);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001436 /*
1437 * When starting with an empty buffer set the fileformat.
1438 * This is just guessing...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 */
1440 if (buf_was_empty)
1441 {
1442 if (ff_detected == EOL_UNKNOWN)
Bram Moolenaare7fedb62015-12-31 19:07:19 +01001443#if defined(MSDOS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444 ff_detected = EOL_DOS;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001445#else
1446 ff_detected = EOL_UNIX;
1447#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 set_fileformat(ff_detected, OPT_LOCAL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00001449 curbuf->b_start_ffc = *curbuf->b_p_ff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450 }
1451
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452 /*
1453 * XXX - GRP - Is the next line right? If I've inserted
1454 * text the buffer has been updated but not written. Will
1455 * netbeans guarantee to write it? Even if I do a :q! ?
1456 */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001457 curbuf->b_changed = old_b_changed; /* logically unchanged */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458 netbeansFireChanges = oldFire;
1459
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001460 /* Undo info is invalid now... */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001461 u_blockfree(curbuf);
1462 u_clearall(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463 }
1464 vim_free(to_free);
1465 nb_reply_nil(cmdno); /* or !error */
1466 }
1467 else
1468 {
1469 nbdebug(("UNIMPLEMENTED FUNCTION: %s\n", cmd));
1470 nb_reply_nil(cmdno);
1471 retval = FAIL;
1472 }
1473 }
1474 else /* Not a function; no reply required. */
1475 {
1476/* =====================================================================*/
1477 if (streq((char *)cmd, "create"))
1478 {
1479 /* Create a buffer without a name. */
1480 if (buf == NULL)
1481 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001482 nbdebug((" invalid buffer identifier in create\n"));
1483 EMSG("E636: invalid buffer identifier in create");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484 return FAIL;
1485 }
1486 vim_free(buf->displayname);
1487 buf->displayname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488
1489 netbeansReadFile = 0; /* don't try to open disk file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001490 do_ecmd(0, NULL, 0, 0, ECMD_ONE, ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 netbeansReadFile = 1;
1492 buf->bufp = curbuf;
1493 maketitle();
Bram Moolenaar009b2592004-10-24 19:18:58 +00001494 buf->insertDone = FALSE;
Bram Moolenaar67c53842010-05-22 18:28:27 +02001495#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02001496 if (gui.in_use)
1497 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001498#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499/* =====================================================================*/
1500 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001501 else if (streq((char *)cmd, "insertDone"))
1502 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001503 if (buf == NULL || buf->bufp == NULL)
1504 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001505 nbdebug((" invalid buffer identifier in insertDone\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001506 }
1507 else
1508 {
1509 buf->bufp->b_start_eol = *args == 'T';
1510 buf->insertDone = TRUE;
1511 args += 2;
1512 buf->bufp->b_p_ro = *args == 'T';
1513 print_read_msg(buf);
1514 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001515/* =====================================================================*/
1516 }
1517 else if (streq((char *)cmd, "saveDone"))
1518 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001519 long savedChars = atol((char *)args);
1520
1521 if (buf == NULL || buf->bufp == NULL)
1522 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001523 nbdebug((" invalid buffer identifier in saveDone\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001524 }
1525 else
1526 print_save_msg(buf, savedChars);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001527/* =====================================================================*/
1528 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 else if (streq((char *)cmd, "startDocumentListen"))
1530 {
1531 if (buf == NULL)
1532 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001533 nbdebug((" invalid buffer identifier in startDocumentListen\n"));
1534 EMSG("E637: invalid buffer identifier in startDocumentListen");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535 return FAIL;
1536 }
1537 buf->fireChanges = 1;
1538/* =====================================================================*/
1539 }
1540 else if (streq((char *)cmd, "stopDocumentListen"))
1541 {
1542 if (buf == NULL)
1543 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001544 nbdebug((" invalid buffer identifier in stopDocumentListen\n"));
1545 EMSG("E638: invalid buffer identifier in stopDocumentListen");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 return FAIL;
1547 }
1548 buf->fireChanges = 0;
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001549 if (buf->bufp != NULL && buf->bufp->b_was_netbeans_file)
Bram Moolenaar009b2592004-10-24 19:18:58 +00001550 {
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001551 if (!buf->bufp->b_netbeans_file)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001552 {
1553 nbdebug(("E658: NetBeans connection lost for buffer %ld\n", buf->bufp->b_fnum));
Bram Moolenaar009b2592004-10-24 19:18:58 +00001554 EMSGN(_("E658: NetBeans connection lost for buffer %ld"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 buf->bufp->b_fnum);
Bram Moolenaarf2330482008-06-24 20:19:36 +00001556 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001557 else
1558 {
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001559 /* NetBeans uses stopDocumentListen when it stops editing
1560 * a file. It then expects the buffer in Vim to
1561 * disappear. */
1562 do_bufdel(DOBUF_DEL, (char_u *)"", 1,
1563 buf->bufp->b_fnum, buf->bufp->b_fnum, TRUE);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001564 vim_memset(buf, 0, sizeof(nbbuf_T));
1565 }
1566 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567/* =====================================================================*/
1568 }
1569 else if (streq((char *)cmd, "setTitle"))
1570 {
1571 if (buf == NULL)
1572 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001573 nbdebug((" invalid buffer identifier in setTitle\n"));
1574 EMSG("E639: invalid buffer identifier in setTitle");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 return FAIL;
1576 }
1577 vim_free(buf->displayname);
1578 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579/* =====================================================================*/
1580 }
1581 else if (streq((char *)cmd, "initDone"))
1582 {
1583 if (buf == NULL || buf->bufp == NULL)
1584 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001585 nbdebug((" invalid buffer identifier in initDone\n"));
1586 EMSG("E640: invalid buffer identifier in initDone");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587 return FAIL;
1588 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001589 do_update = 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001590 buf->initDone = TRUE;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001591 nb_set_curbuf(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592#if defined(FEAT_AUTOCMD)
1593 apply_autocmds(EVENT_BUFREADPOST, 0, 0, FALSE, buf->bufp);
1594#endif
1595
1596 /* handle any postponed key commands */
1597 handle_key_queue();
1598/* =====================================================================*/
1599 }
1600 else if (streq((char *)cmd, "setBufferNumber")
1601 || streq((char *)cmd, "putBufferNumber"))
1602 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001603 char_u *path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 buf_T *bufp;
1605
1606 if (buf == NULL)
1607 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001608 nbdebug((" invalid buffer identifier in setBufferNumber\n"));
1609 EMSG("E641: invalid buffer identifier in setBufferNumber");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610 return FAIL;
1611 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001612 path = (char_u *)nb_unquote(args, NULL);
1613 if (path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 return FAIL;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001615 bufp = buflist_findname(path);
1616 vim_free(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617 if (bufp == NULL)
1618 {
Bram Moolenaarec906222009-02-21 21:14:00 +00001619 nbdebug((" File %s not found in setBufferNumber\n", args));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 EMSG2("E642: File %s not found in setBufferNumber", args);
1621 return FAIL;
1622 }
1623 buf->bufp = bufp;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001624 buf->nbbuf_number = bufp->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625
1626 /* "setBufferNumber" has the side effect of jumping to the buffer
1627 * (don't know why!). Don't do that for "putBufferNumber". */
1628 if (*cmd != 'p')
1629 coloncmd(":buffer %d", bufp->b_fnum);
1630 else
1631 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001632 buf->initDone = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633
1634 /* handle any postponed key commands */
1635 handle_key_queue();
1636 }
1637
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638/* =====================================================================*/
1639 }
1640 else if (streq((char *)cmd, "setFullName"))
1641 {
1642 if (buf == NULL)
1643 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001644 nbdebug((" invalid buffer identifier in setFullName\n"));
1645 EMSG("E643: invalid buffer identifier in setFullName");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 return FAIL;
1647 }
1648 vim_free(buf->displayname);
1649 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650
1651 netbeansReadFile = 0; /* don't try to open disk file */
1652 do_ecmd(0, (char_u *)buf->displayname, 0, 0, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001653 ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 netbeansReadFile = 1;
1655 buf->bufp = curbuf;
1656 maketitle();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001657#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02001658 if (gui.in_use)
1659 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001660#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661/* =====================================================================*/
1662 }
1663 else if (streq((char *)cmd, "editFile"))
1664 {
1665 if (buf == NULL)
1666 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001667 nbdebug((" invalid buffer identifier in editFile\n"));
1668 EMSG("E644: invalid buffer identifier in editFile");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669 return FAIL;
1670 }
1671 /* Edit a file: like create + setFullName + read the file. */
1672 vim_free(buf->displayname);
1673 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 do_ecmd(0, (char_u *)buf->displayname, NULL, NULL, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001675 ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 buf->bufp = curbuf;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001677 buf->initDone = TRUE;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001678 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679#if defined(FEAT_TITLE)
1680 maketitle();
1681#endif
Bram Moolenaar67c53842010-05-22 18:28:27 +02001682#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02001683 if (gui.in_use)
1684 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001685#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686/* =====================================================================*/
1687 }
1688 else if (streq((char *)cmd, "setVisible"))
1689 {
1690 if (buf == NULL || buf->bufp == NULL)
1691 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001692 nbdebug((" invalid buffer identifier in setVisible\n"));
1693 /* This message was commented out, probably because it can
1694 * happen when shutting down. */
1695 if (p_verbose > 0)
1696 EMSG("E645: invalid buffer identifier in setVisible");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 return FAIL;
1698 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001699 if (streq((char *)args, "T") && buf->bufp != curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700 {
1701 exarg_T exarg;
1702 exarg.cmd = (char_u *)"goto";
1703 exarg.forceit = FALSE;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001704 dosetvisible = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705 goto_buffer(&exarg, DOBUF_FIRST, FORWARD, buf->bufp->b_fnum);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001706 do_update = 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001707 dosetvisible = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708
Bram Moolenaar67c53842010-05-22 18:28:27 +02001709#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710 /* Side effect!!!. */
Bram Moolenaard54a6882010-08-09 22:49:00 +02001711 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 gui_mch_set_foreground();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001713#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715/* =====================================================================*/
1716 }
1717 else if (streq((char *)cmd, "raise"))
1718 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02001719#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 /* Bring gvim to the foreground. */
Bram Moolenaard54a6882010-08-09 22:49:00 +02001721 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 gui_mch_set_foreground();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001723#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724/* =====================================================================*/
1725 }
1726 else if (streq((char *)cmd, "setModified"))
1727 {
Bram Moolenaarff064e12008-06-09 13:10:45 +00001728 int prev_b_changed;
1729
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 if (buf == NULL || buf->bufp == NULL)
1731 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001732 nbdebug((" invalid buffer identifier in setModified\n"));
1733 /* This message was commented out, probably because it can
1734 * happen when shutting down. */
1735 if (p_verbose > 0)
1736 EMSG("E646: invalid buffer identifier in setModified");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 return FAIL;
1738 }
Bram Moolenaarff064e12008-06-09 13:10:45 +00001739 prev_b_changed = buf->bufp->b_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 if (streq((char *)args, "T"))
Bram Moolenaarff064e12008-06-09 13:10:45 +00001741 buf->bufp->b_changed = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 else
1743 {
1744 struct stat st;
1745
1746 /* Assume NetBeans stored the file. Reset the timestamp to
1747 * avoid "file changed" warnings. */
1748 if (buf->bufp->b_ffname != NULL
1749 && mch_stat((char *)buf->bufp->b_ffname, &st) >= 0)
1750 buf_store_time(buf->bufp, &st, buf->bufp->b_ffname);
Bram Moolenaarff064e12008-06-09 13:10:45 +00001751 buf->bufp->b_changed = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 }
1753 buf->modified = buf->bufp->b_changed;
Bram Moolenaarff064e12008-06-09 13:10:45 +00001754 if (prev_b_changed != buf->bufp->b_changed)
1755 {
1756#ifdef FEAT_WINDOWS
1757 check_status(buf->bufp);
1758 redraw_tabline = TRUE;
1759#endif
1760#ifdef FEAT_TITLE
1761 maketitle();
1762#endif
1763 update_screen(0);
1764 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765/* =====================================================================*/
1766 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001767 else if (streq((char *)cmd, "setModtime"))
1768 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001769 if (buf == NULL || buf->bufp == NULL)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001770 nbdebug((" invalid buffer identifier in setModtime\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001771 else
1772 buf->bufp->b_mtime = atoi((char *)args);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001773/* =====================================================================*/
1774 }
1775 else if (streq((char *)cmd, "setReadOnly"))
1776 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001777 if (buf == NULL || buf->bufp == NULL)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001778 nbdebug((" invalid buffer identifier in setReadOnly\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001779 else if (streq((char *)args, "T"))
Bram Moolenaar009b2592004-10-24 19:18:58 +00001780 buf->bufp->b_p_ro = TRUE;
1781 else
1782 buf->bufp->b_p_ro = FALSE;
1783/* =====================================================================*/
1784 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 else if (streq((char *)cmd, "setMark"))
1786 {
1787 /* not yet */
1788/* =====================================================================*/
1789 }
1790 else if (streq((char *)cmd, "showBalloon"))
1791 {
1792#if defined(FEAT_BEVAL)
1793 static char *text = NULL;
1794
1795 /*
1796 * Set up the Balloon Expression Evaluation area.
1797 * Ignore 'ballooneval' here.
1798 * The text pointer must remain valid for a while.
1799 */
1800 if (balloonEval != NULL)
1801 {
1802 vim_free(text);
1803 text = nb_unquote(args, NULL);
1804 if (text != NULL)
1805 gui_mch_post_balloon(balloonEval, (char_u *)text);
1806 }
1807#endif
1808/* =====================================================================*/
1809 }
1810 else if (streq((char *)cmd, "setDot"))
1811 {
1812 pos_T *pos;
1813#ifdef NBDEBUG
1814 char_u *s;
1815#endif
1816
1817 if (buf == NULL || buf->bufp == NULL)
1818 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001819 nbdebug((" invalid buffer identifier in setDot\n"));
1820 EMSG("E647: invalid buffer identifier in setDot");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 return FAIL;
1822 }
1823
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001824 nb_set_curbuf(buf->bufp);
1825
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 /* Don't want Visual mode now. */
1827 if (VIsual_active)
1828 end_visual_mode();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829#ifdef NBDEBUG
1830 s = args;
1831#endif
1832 pos = get_off_or_lnum(buf->bufp, &args);
1833 if (pos)
1834 {
1835 curwin->w_cursor = *pos;
1836 check_cursor();
1837#ifdef FEAT_FOLDING
1838 foldOpenCursor();
1839#endif
1840 }
1841 else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001842 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 nbdebug((" BAD POSITION in setDot: %s\n", s));
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001844 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845
1846 /* gui_update_cursor(TRUE, FALSE); */
1847 /* update_curbuf(NOT_VALID); */
1848 update_topline(); /* scroll to show the line */
1849 update_screen(VALID);
1850 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02001851 cursor_on();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 out_flush();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001853#ifdef FEAT_GUI
Bram Moolenaard54a6882010-08-09 22:49:00 +02001854 if (gui.in_use)
1855 {
1856 gui_update_cursor(TRUE, FALSE);
1857 gui_mch_flush();
1858 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02001859#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 /* Quit a hit-return or more prompt. */
1861 if (State == HITRETURN || State == ASKMORE)
1862 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863#ifdef FEAT_GUI_GTK
Bram Moolenaard54a6882010-08-09 22:49:00 +02001864 if (gui.in_use && gtk_main_level() > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 gtk_main_quit();
1866#endif
1867 }
1868/* =====================================================================*/
1869 }
1870 else if (streq((char *)cmd, "close"))
1871 {
1872#ifdef NBDEBUG
1873 char *name = "<NONE>";
1874#endif
1875
1876 if (buf == NULL)
1877 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001878 nbdebug((" invalid buffer identifier in close\n"));
1879 EMSG("E648: invalid buffer identifier in close");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 return FAIL;
1881 }
1882
1883#ifdef NBDEBUG
1884 if (buf->displayname != NULL)
1885 name = buf->displayname;
1886#endif
Bram Moolenaarf2330482008-06-24 20:19:36 +00001887 if (buf->bufp == NULL)
1888 {
1889 nbdebug((" invalid buffer identifier in close\n"));
1890 /* This message was commented out, probably because it can
1891 * happen when shutting down. */
1892 if (p_verbose > 0)
1893 EMSG("E649: invalid buffer identifier in close");
1894 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 nbdebug((" CLOSE %d: %s\n", bufno, name));
Bram Moolenaar67c53842010-05-22 18:28:27 +02001896#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 need_mouse_correct = TRUE;
Bram Moolenaar67c53842010-05-22 18:28:27 +02001898#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 if (buf->bufp != NULL)
1900 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD,
1901 buf->bufp->b_fnum, TRUE);
Bram Moolenaar8d602722006-08-08 19:34:19 +00001902 buf->bufp = NULL;
1903 buf->initDone = FALSE;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001904 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905/* =====================================================================*/
1906 }
1907 else if (streq((char *)cmd, "setStyle")) /* obsolete... */
1908 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001909 nbdebug((" setStyle is obsolete!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910/* =====================================================================*/
1911 }
1912 else if (streq((char *)cmd, "setExitDelay"))
1913 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001914 /* Only used in version 2.1. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915/* =====================================================================*/
1916 }
1917 else if (streq((char *)cmd, "defineAnnoType"))
1918 {
1919#ifdef FEAT_SIGNS
1920 int typeNum;
1921 char_u *typeName;
1922 char_u *tooltip;
1923 char_u *p;
1924 char_u *glyphFile;
Bram Moolenaar67c53842010-05-22 18:28:27 +02001925 int parse_error = FALSE;
1926 char_u *fg;
1927 char_u *bg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928
1929 if (buf == NULL)
1930 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001931 nbdebug((" invalid buffer identifier in defineAnnoType\n"));
1932 EMSG("E650: invalid buffer identifier in defineAnnoType");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 return FAIL;
1934 }
1935
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001936 cp = (char *)args;
1937 typeNum = strtol(cp, &cp, 10);
1938 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 args = skipwhite(args);
1940 typeName = (char_u *)nb_unquote(args, &args);
1941 args = skipwhite(args + 1);
1942 tooltip = (char_u *)nb_unquote(args, &args);
1943 args = skipwhite(args + 1);
1944
1945 p = (char_u *)nb_unquote(args, &args);
1946 glyphFile = vim_strsave_escaped(p, escape_chars);
1947 vim_free(p);
1948
1949 args = skipwhite(args + 1);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001950 p = skiptowhite(args);
1951 if (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02001953 *p = NUL;
1954 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02001956 fg = vim_strsave(args);
1957 bg = vim_strsave(p);
1958 if (STRLEN(fg) > MAX_COLOR_LENGTH || STRLEN(bg) > MAX_COLOR_LENGTH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02001960 EMSG("E532: highlighting color name too long in defineAnnoType");
1961 vim_free(typeName);
1962 parse_error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02001964 else if (typeName != NULL && tooltip != NULL && glyphFile != NULL)
1965 addsigntype(buf, typeNum, typeName, tooltip, glyphFile, fg, bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 else
1967 vim_free(typeName);
1968
1969 /* don't free typeName; it's used directly in addsigntype() */
Bram Moolenaar67c53842010-05-22 18:28:27 +02001970 vim_free(fg);
1971 vim_free(bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 vim_free(tooltip);
1973 vim_free(glyphFile);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001974 if (parse_error)
1975 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976
1977#endif
1978/* =====================================================================*/
1979 }
1980 else if (streq((char *)cmd, "addAnno"))
1981 {
1982#ifdef FEAT_SIGNS
1983 int serNum;
1984 int localTypeNum;
1985 int typeNum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 pos_T *pos;
1987
1988 if (buf == NULL || buf->bufp == NULL)
1989 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001990 nbdebug((" invalid buffer identifier in addAnno\n"));
1991 EMSG("E651: invalid buffer identifier in addAnno");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 return FAIL;
1993 }
1994
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001995 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001997 cp = (char *)args;
1998 serNum = strtol(cp, &cp, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999
2000 /* Get the typenr specific for this buffer and convert it to
2001 * the global typenumber, as used for the sign name. */
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002002 localTypeNum = strtol(cp, &cp, 10);
2003 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 typeNum = mapsigntype(buf, localTypeNum);
2005
2006 pos = get_off_or_lnum(buf->bufp, &args);
2007
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002008 cp = (char *)args;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002009 ignored = (int)strtol(cp, &cp, 10);
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002010 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011# ifdef NBDEBUG
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002012 if (ignored != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002014 nbdebug((" partial line annotation -- Not Yet Implemented!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 }
2016# endif
2017 if (serNum >= GUARDEDOFFSET)
2018 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002019 nbdebug((" too many annotations! ignoring...\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 return FAIL;
2021 }
2022 if (pos)
2023 {
Bram Moolenaarec906222009-02-21 21:14:00 +00002024 coloncmd(":sign place %d line=%ld name=%d buffer=%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 serNum, pos->lnum, typeNum, buf->bufp->b_fnum);
2026 if (typeNum == curPCtype)
2027 coloncmd(":sign jump %d buffer=%d", serNum,
2028 buf->bufp->b_fnum);
2029 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030#endif
2031/* =====================================================================*/
2032 }
2033 else if (streq((char *)cmd, "removeAnno"))
2034 {
2035#ifdef FEAT_SIGNS
2036 int serNum;
2037
2038 if (buf == NULL || buf->bufp == NULL)
2039 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002040 nbdebug((" invalid buffer identifier in removeAnno\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 return FAIL;
2042 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002043 do_update = 1;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002044 cp = (char *)args;
2045 serNum = strtol(cp, &cp, 10);
2046 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 coloncmd(":sign unplace %d buffer=%d",
2048 serNum, buf->bufp->b_fnum);
2049 redraw_buf_later(buf->bufp, NOT_VALID);
2050#endif
2051/* =====================================================================*/
2052 }
2053 else if (streq((char *)cmd, "moveAnnoToFront"))
2054 {
2055#ifdef FEAT_SIGNS
Bram Moolenaarf2330482008-06-24 20:19:36 +00002056 nbdebug((" moveAnnoToFront: Not Yet Implemented!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057#endif
2058/* =====================================================================*/
2059 }
2060 else if (streq((char *)cmd, "guard") || streq((char *)cmd, "unguard"))
2061 {
2062 int len;
2063 pos_T first;
2064 pos_T last;
2065 pos_T *pos;
2066 int un = (cmd[0] == 'u');
2067 static int guardId = GUARDEDOFFSET;
2068
2069 if (skip >= SKIP_STOP)
2070 {
2071 nbdebug((" Skipping %s command\n", (char *) cmd));
2072 return OK;
2073 }
2074
2075 nb_init_graphics();
2076
2077 if (buf == NULL || buf->bufp == NULL)
2078 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002079 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 return FAIL;
2081 }
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002082 nb_set_curbuf(buf->bufp);
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002083 cp = (char *)args;
2084 off = strtol(cp, &cp, 10);
2085 len = strtol(cp, NULL, 10);
2086 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 pos = off2pos(buf->bufp, off);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002088 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089 if (!pos)
2090 nbdebug((" no such start pos in %s, %ld\n", cmd, off));
2091 else
2092 {
2093 first = *pos;
2094 pos = off2pos(buf->bufp, off + len - 1);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002095 if (pos != NULL && pos->col == 0)
2096 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097 /*
2098 * In Java Swing the offset is a position between 2
2099 * characters. If col == 0 then we really want the
2100 * previous line as the end.
2101 */
2102 pos = off2pos(buf->bufp, off + len - 2);
2103 }
2104 if (!pos)
2105 nbdebug((" no such end pos in %s, %ld\n",
2106 cmd, off + len - 1));
2107 else
2108 {
2109 long lnum;
2110 last = *pos;
2111 /* set highlight for region */
2112 nbdebug((" %sGUARD %ld,%d to %ld,%d\n", (un) ? "UN" : "",
2113 first.lnum, first.col,
2114 last.lnum, last.col));
2115#ifdef FEAT_SIGNS
2116 for (lnum = first.lnum; lnum <= last.lnum; lnum++)
2117 {
2118 if (un)
2119 {
2120 /* never used */
2121 }
2122 else
2123 {
2124 if (buf_findsigntype_id(buf->bufp, lnum,
2125 GUARDED) == 0)
2126 {
2127 coloncmd(
Bram Moolenaarec906222009-02-21 21:14:00 +00002128 ":sign place %d line=%ld name=%d buffer=%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129 guardId++, lnum, GUARDED,
2130 buf->bufp->b_fnum);
2131 }
2132 }
2133 }
2134#endif
2135 redraw_buf_later(buf->bufp, NOT_VALID);
2136 }
2137 }
2138/* =====================================================================*/
2139 }
2140 else if (streq((char *)cmd, "startAtomic"))
2141 {
2142 inAtomic = 1;
2143/* =====================================================================*/
2144 }
2145 else if (streq((char *)cmd, "endAtomic"))
2146 {
2147 inAtomic = 0;
2148 if (needupdate)
2149 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002150 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151 needupdate = 0;
2152 }
2153/* =====================================================================*/
2154 }
2155 else if (streq((char *)cmd, "save"))
2156 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002157 /*
2158 * NOTE - This command is obsolete wrt NetBeans. Its left in
2159 * only for historical reasons.
2160 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 if (buf == NULL || buf->bufp == NULL)
2162 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002163 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 return FAIL;
2165 }
2166
2167 /* the following is taken from ex_cmds.c (do_wqall function) */
2168 if (bufIsChanged(buf->bufp))
2169 {
2170 /* Only write if the buffer can be written. */
2171 if (p_write
2172 && !buf->bufp->b_p_ro
2173 && buf->bufp->b_ffname != NULL
2174#ifdef FEAT_QUICKFIX
2175 && !bt_dontwrite(buf->bufp)
2176#endif
2177 )
2178 {
2179 buf_write_all(buf->bufp, FALSE);
2180#ifdef FEAT_AUTOCMD
2181 /* an autocommand may have deleted the buffer */
2182 if (!buf_valid(buf->bufp))
2183 buf->bufp = NULL;
2184#endif
2185 }
2186 }
Bram Moolenaarf2330482008-06-24 20:19:36 +00002187 else
2188 {
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002189 nbdebug((" Buffer has no changes!\n"));
Bram Moolenaarf2330482008-06-24 20:19:36 +00002190 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191/* =====================================================================*/
2192 }
2193 else if (streq((char *)cmd, "netbeansBuffer"))
2194 {
2195 if (buf == NULL || buf->bufp == NULL)
2196 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002197 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 return FAIL;
2199 }
2200 if (*args == 'T')
2201 {
2202 buf->bufp->b_netbeans_file = TRUE;
2203 buf->bufp->b_was_netbeans_file = TRUE;
2204 }
2205 else
2206 buf->bufp->b_netbeans_file = FALSE;
2207/* =====================================================================*/
2208 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00002209 else if (streq((char *)cmd, "specialKeys"))
2210 {
2211 special_keys(args);
2212/* =====================================================================*/
2213 }
2214 else if (streq((char *)cmd, "actionMenuItem"))
2215 {
2216 /* not used yet */
2217/* =====================================================================*/
2218 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 else if (streq((char *)cmd, "version"))
2220 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002221 /* not used yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222 }
Bram Moolenaarf2330482008-06-24 20:19:36 +00002223 else
2224 {
2225 nbdebug(("Unrecognised command: %s\n", cmd));
2226 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 /*
2228 * Unrecognized command is ignored.
2229 */
2230 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002231 if (inAtomic && do_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 {
2233 needupdate = 1;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002234 do_update = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 }
2236
Bram Moolenaar009b2592004-10-24 19:18:58 +00002237 /*
2238 * Is this needed? I moved the netbeans_Xt_connect() later during startup
2239 * and it may no longer be necessary. If its not needed then needupdate
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002240 * and do_update can also be removed.
Bram Moolenaar009b2592004-10-24 19:18:58 +00002241 */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002242 if (buf != NULL && buf->initDone && do_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 {
2244 update_screen(NOT_VALID);
2245 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02002246 cursor_on();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 out_flush();
Bram Moolenaar67c53842010-05-22 18:28:27 +02002248#ifdef FEAT_GUI
Bram Moolenaard54a6882010-08-09 22:49:00 +02002249 if (gui.in_use)
2250 {
2251 gui_update_cursor(TRUE, FALSE);
2252 gui_mch_flush();
2253 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02002254#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255 /* Quit a hit-return or more prompt. */
2256 if (State == HITRETURN || State == ASKMORE)
2257 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258#ifdef FEAT_GUI_GTK
Bram Moolenaard54a6882010-08-09 22:49:00 +02002259 if (gui.in_use && gtk_main_level() > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 gtk_main_quit();
2261#endif
2262 }
2263 }
2264
2265 return retval;
2266}
2267
2268
2269/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002270 * If "buf" is not the current buffer try changing to a window that edits this
2271 * buffer. If there is no such window then close the current buffer and set
2272 * the current buffer as "buf".
2273 */
2274 static void
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00002275nb_set_curbuf(buf_T *buf)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002276{
Bram Moolenaar404c9422015-03-14 15:35:52 +01002277 if (curbuf != buf) {
2278 if (buf_jump_open_win(buf) != NULL)
2279 return;
2280# ifdef FEAT_WINDOWS
2281 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf) != NULL)
2282 return;
2283# endif
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002284 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaar404c9422015-03-14 15:35:52 +01002285 }
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002286}
2287
2288/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289 * Process a vim colon command.
2290 */
2291 static void
2292coloncmd(char *cmd, ...)
2293{
2294 char buf[1024];
2295 va_list ap;
2296
2297 va_start(ap, cmd);
Bram Moolenaar0dc79e82009-06-24 14:50:12 +00002298 vim_vsnprintf(buf, sizeof(buf), cmd, ap, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299 va_end(ap);
2300
2301 nbdebug((" COLONCMD %s\n", buf));
2302
2303/* ALT_INPUT_LOCK_ON; */
2304 do_cmdline((char_u *)buf, NULL, NULL, DOCMD_NOWAIT | DOCMD_KEYTYPED);
2305/* ALT_INPUT_LOCK_OFF; */
2306
2307 setcursor(); /* restore the cursor position */
2308 out_flush(); /* make sure output has been written */
2309
Bram Moolenaar67c53842010-05-22 18:28:27 +02002310#ifdef FEAT_GUI
Bram Moolenaard54a6882010-08-09 22:49:00 +02002311 if (gui.in_use)
2312 {
2313 gui_update_cursor(TRUE, FALSE);
2314 gui_mch_flush();
2315 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02002316#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317}
2318
2319
2320/*
Bram Moolenaar009b2592004-10-24 19:18:58 +00002321 * Parse the specialKeys argument and issue the appropriate map commands.
2322 */
2323 static void
2324special_keys(char_u *args)
2325{
2326 char *save_str = nb_unquote(args, NULL);
2327 char *tok = strtok(save_str, " ");
2328 char *sep;
2329 char keybuf[64];
2330 char cmdbuf[256];
2331
2332 while (tok != NULL)
2333 {
2334 int i = 0;
2335
2336 if ((sep = strchr(tok, '-')) != NULL)
2337 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002338 *sep = NUL;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002339 while (*tok)
2340 {
2341 switch (*tok)
2342 {
2343 case 'A':
2344 case 'M':
2345 case 'C':
2346 case 'S':
2347 keybuf[i++] = *tok;
2348 keybuf[i++] = '-';
2349 break;
2350 }
2351 tok++;
2352 }
2353 tok++;
2354 }
2355
2356 strcpy(&keybuf[i], tok);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002357 vim_snprintf(cmdbuf, sizeof(cmdbuf),
2358 "<silent><%s> :nbkey %s<CR>", keybuf, keybuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002359 do_map(0, (char_u *)cmdbuf, NORMAL, FALSE);
2360 tok = strtok(NULL, " ");
2361 }
2362 vim_free(save_str);
2363}
2364
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002365 void
2366ex_nbclose(eap)
2367 exarg_T *eap UNUSED;
2368{
2369 netbeans_close();
2370}
Bram Moolenaar009b2592004-10-24 19:18:58 +00002371
2372 void
2373ex_nbkey(eap)
2374 exarg_T *eap;
2375{
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002376 (void)netbeans_keystring(eap->arg);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002377}
2378
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002379 void
2380ex_nbstart(eap)
2381 exarg_T *eap;
2382{
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002383#ifdef FEAT_GUI
2384# if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \
Bram Moolenaar7ad7d012010-11-16 15:49:02 +01002385 && !defined(FEAT_GUI_W32)
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002386 if (gui.in_use)
2387 {
Bram Moolenaar7ad7d012010-11-16 15:49:02 +01002388 EMSG(_("E838: netbeans is not supported with this GUI"));
2389 return;
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002390 }
2391# endif
2392#endif
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002393 netbeans_open((char *)eap->arg, FALSE);
2394}
Bram Moolenaar009b2592004-10-24 19:18:58 +00002395
2396/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 * Initialize highlights and signs for use by netbeans (mostly obsolete)
2398 */
2399 static void
2400nb_init_graphics(void)
2401{
2402 static int did_init = FALSE;
2403
2404 if (!did_init)
2405 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002406 coloncmd(":highlight NBGuarded guibg=Cyan guifg=Black"
2407 " ctermbg=LightCyan ctermfg=Black");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 coloncmd(":sign define %d linehl=NBGuarded", GUARDED);
2409
2410 did_init = TRUE;
2411 }
2412}
2413
2414/*
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002415 * Convert key to netbeans name. This uses the global "mod_mask".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 */
2417 static void
2418netbeans_keyname(int key, char *buf)
2419{
2420 char *name = 0;
2421 char namebuf[2];
2422 int ctrl = 0;
2423 int shift = 0;
2424 int alt = 0;
2425
2426 if (mod_mask & MOD_MASK_CTRL)
2427 ctrl = 1;
2428 if (mod_mask & MOD_MASK_SHIFT)
2429 shift = 1;
2430 if (mod_mask & MOD_MASK_ALT)
2431 alt = 1;
2432
2433
2434 switch (key)
2435 {
2436 case K_F1: name = "F1"; break;
2437 case K_S_F1: name = "F1"; shift = 1; break;
2438 case K_F2: name = "F2"; break;
2439 case K_S_F2: name = "F2"; shift = 1; break;
2440 case K_F3: name = "F3"; break;
2441 case K_S_F3: name = "F3"; shift = 1; break;
2442 case K_F4: name = "F4"; break;
2443 case K_S_F4: name = "F4"; shift = 1; break;
2444 case K_F5: name = "F5"; break;
2445 case K_S_F5: name = "F5"; shift = 1; break;
2446 case K_F6: name = "F6"; break;
2447 case K_S_F6: name = "F6"; shift = 1; break;
2448 case K_F7: name = "F7"; break;
2449 case K_S_F7: name = "F7"; shift = 1; break;
2450 case K_F8: name = "F8"; break;
2451 case K_S_F8: name = "F8"; shift = 1; break;
2452 case K_F9: name = "F9"; break;
2453 case K_S_F9: name = "F9"; shift = 1; break;
2454 case K_F10: name = "F10"; break;
2455 case K_S_F10: name = "F10"; shift = 1; break;
2456 case K_F11: name = "F11"; break;
2457 case K_S_F11: name = "F11"; shift = 1; break;
2458 case K_F12: name = "F12"; break;
2459 case K_S_F12: name = "F12"; shift = 1; break;
2460 default:
2461 if (key >= ' ' && key <= '~')
2462 {
2463 /* Allow ASCII characters. */
2464 name = namebuf;
2465 namebuf[0] = key;
2466 namebuf[1] = NUL;
2467 }
2468 else
2469 name = "X";
2470 break;
2471 }
2472
2473 buf[0] = '\0';
2474 if (ctrl)
2475 strcat(buf, "C");
2476 if (shift)
2477 strcat(buf, "S");
2478 if (alt)
2479 strcat(buf, "M"); /* META */
2480 if (ctrl || shift || alt)
2481 strcat(buf, "-");
2482 strcat(buf, name);
2483}
2484
Bram Moolenaar67c53842010-05-22 18:28:27 +02002485#if defined(FEAT_BEVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486/*
2487 * Function to be called for balloon evaluation. Grabs the text under the
2488 * cursor and sends it to the debugger for evaluation. The debugger should
2489 * respond with a showBalloon command when there is a useful result.
2490 */
Bram Moolenaard62bec82005-03-07 22:56:57 +00002491 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492netbeans_beval_cb(
2493 BalloonEval *beval,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002494 int state UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495{
Bram Moolenaard62bec82005-03-07 22:56:57 +00002496 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 char_u *text;
Bram Moolenaard62bec82005-03-07 22:56:57 +00002498 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499 int col;
Bram Moolenaard9462e32011-04-11 21:35:11 +02002500 char *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501 char_u *p;
2502
2503 /* Don't do anything when 'ballooneval' is off, messages scrolled the
2504 * windows up or we have no connection. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002505 if (!p_beval || msg_scrolled > 0 || !NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506 return;
2507
Bram Moolenaard62bec82005-03-07 22:56:57 +00002508 if (get_beval_info(beval, TRUE, &wp, &lnum, &text, &col) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 {
2510 /* Send debugger request. Only when the text is of reasonable
2511 * length. */
2512 if (text != NULL && text[0] != NUL && STRLEN(text) < MAXPATHL)
2513 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002514 buf = (char *)alloc(MAXPATHL * 2 + 25);
2515 if (buf != NULL)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002516 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002517 p = nb_quote(text);
2518 if (p != NULL)
2519 {
2520 vim_snprintf(buf, MAXPATHL * 2 + 25,
2521 "0:balloonText=%d \"%s\"\n", r_cmdno, p);
2522 vim_free(p);
2523 }
2524 nbdebug(("EVT: %s", buf));
2525 nb_send(buf, "netbeans_beval_cb");
2526 vim_free(buf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002527 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528 }
2529 vim_free(text);
2530 }
2531}
2532#endif
2533
2534/*
Bram Moolenaare0874f82016-01-24 20:36:41 +01002535 * Return TRUE when the netbeans connection is active.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002536 */
2537 int
2538netbeans_active(void)
2539{
2540 return NETBEANS_OPEN;
2541}
2542
Bram Moolenaar67c53842010-05-22 18:28:27 +02002543/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 * Tell netbeans that the window was opened, ready for commands.
2545 */
2546 void
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002547netbeans_open(char *params, int doabort)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548{
2549 char *cmd = "0:startupDone=0\n";
2550
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002551 if (NETBEANS_OPEN)
2552 {
2553 EMSG(_("E511: netbeans already connected"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 return;
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002555 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002557 if (netbeans_connect(params, doabort) != OK)
Bram Moolenaar67c53842010-05-22 18:28:27 +02002558 return;
Bram Moolenaard62bec82005-03-07 22:56:57 +00002559
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560 nbdebug(("EVT: %s", cmd));
2561 nb_send(cmd, "netbeans_startup_done");
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002562
2563 /* update the screen after having added the gutter */
2564 changed_window_setting();
2565 update_screen(CLEAR);
2566 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02002567 cursor_on();
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002568 out_flush();
2569#ifdef FEAT_GUI
Bram Moolenaard54a6882010-08-09 22:49:00 +02002570 if (gui.in_use)
2571 {
2572 gui_update_cursor(TRUE, FALSE);
2573 gui_mch_flush();
2574 }
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002575#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576}
2577
Bram Moolenaar009b2592004-10-24 19:18:58 +00002578/*
2579 * Tell netbeans that we're exiting. This should be called right
2580 * before calling exit.
2581 */
2582 void
2583netbeans_send_disconnect()
2584{
2585 char buf[128];
2586
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002587 if (NETBEANS_OPEN)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002588 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002589 sprintf(buf, "0:disconnect=%d\n", r_cmdno);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002590 nbdebug(("EVT: %s", buf));
2591 nb_send(buf, "netbeans_disconnect");
2592 }
2593}
2594
Bram Moolenaar173c9852010-09-29 17:27:01 +02002595#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_W32) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596/*
2597 * Tell netbeans that the window was moved or resized.
2598 */
2599 void
2600netbeans_frame_moved(int new_x, int new_y)
2601{
2602 char buf[128];
2603
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002604 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605 return;
2606
2607 sprintf(buf, "0:geometry=%d %d %d %d %d\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00002608 r_cmdno, (int)Columns, (int)Rows, new_x, new_y);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002609 /*nbdebug(("EVT: %s", buf)); happens too many times during a move */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610 nb_send(buf, "netbeans_frame_moved");
2611}
2612#endif
2613
2614/*
Bram Moolenaar009b2592004-10-24 19:18:58 +00002615 * Tell netbeans the user opened or activated a file.
2616 */
2617 void
2618netbeans_file_activated(buf_T *bufp)
2619{
2620 int bufno = nb_getbufno(bufp);
2621 nbbuf_T *bp = nb_get_buf(bufno);
2622 char buffer[2*MAXPATHL];
2623 char_u *q;
2624
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002625 if (!NETBEANS_OPEN || !bufp->b_netbeans_file || dosetvisible)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002626 return;
2627
2628 q = nb_quote(bufp->b_ffname);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002629 if (q == NULL || bp == NULL)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002630 return;
2631
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002632 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n",
Bram Moolenaar009b2592004-10-24 19:18:58 +00002633 bufno,
2634 bufno,
2635 (char *)q,
2636 "T", /* open in NetBeans */
2637 "F"); /* modified */
2638
2639 vim_free(q);
2640 nbdebug(("EVT: %s", buffer));
2641
2642 nb_send(buffer, "netbeans_file_opened");
2643}
2644
2645/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 * Tell netbeans the user opened a file.
2647 */
2648 void
Bram Moolenaar009b2592004-10-24 19:18:58 +00002649netbeans_file_opened(buf_T *bufp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650{
Bram Moolenaar009b2592004-10-24 19:18:58 +00002651 int bufno = nb_getbufno(bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652 char buffer[2*MAXPATHL];
2653 char_u *q;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002654 nbbuf_T *bp = nb_get_buf(nb_getbufno(bufp));
2655 int bnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002657 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 return;
2659
Bram Moolenaar009b2592004-10-24 19:18:58 +00002660 q = nb_quote(bufp->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 if (q == NULL)
2662 return;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002663 if (bp != NULL)
2664 bnum = bufno;
2665 else
2666 bnum = 0;
2667
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002668 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n",
Bram Moolenaar009b2592004-10-24 19:18:58 +00002669 bnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670 0,
2671 (char *)q,
2672 "T", /* open in NetBeans */
2673 "F"); /* modified */
2674
2675 vim_free(q);
2676 nbdebug(("EVT: %s", buffer));
2677
2678 nb_send(buffer, "netbeans_file_opened");
Bram Moolenaar009b2592004-10-24 19:18:58 +00002679 if (p_acd && vim_chdirfile(bufp->b_ffname) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680 shorten_fnames(TRUE);
2681}
2682
2683/*
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002684 * Tell netbeans that a file was deleted or wiped out.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 */
2686 void
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002687netbeans_file_killed(buf_T *bufp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688{
2689 int bufno = nb_getbufno(bufp);
2690 nbbuf_T *nbbuf = nb_get_buf(bufno);
2691 char buffer[2*MAXPATHL];
2692
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002693 if (!NETBEANS_OPEN || bufno == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694 return;
2695
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002696 nbdebug(("netbeans_file_killed:\n"));
2697 nbdebug((" Killing bufno: %d", bufno));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698
Bram Moolenaar89d40322006-08-29 15:30:07 +00002699 sprintf(buffer, "%d:killed=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700
2701 nbdebug(("EVT: %s", buffer));
2702
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002703 nb_send(buffer, "netbeans_file_killed");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704
2705 if (nbbuf != NULL)
2706 nbbuf->bufp = NULL;
2707}
2708
2709/*
2710 * Get a pointer to the Netbeans buffer for Vim buffer "bufp".
2711 * Return NULL if there is no such buffer or changes are not to be reported.
2712 * Otherwise store the buffer number in "*bufnop".
2713 */
2714 static nbbuf_T *
2715nb_bufp2nbbuf_fire(buf_T *bufp, int *bufnop)
2716{
2717 int bufno;
2718 nbbuf_T *nbbuf;
2719
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002720 if (!NETBEANS_OPEN || !netbeansFireChanges)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721 return NULL; /* changes are not reported at all */
2722
2723 bufno = nb_getbufno(bufp);
2724 if (bufno <= 0)
2725 return NULL; /* file is not known to NetBeans */
2726
2727 nbbuf = nb_get_buf(bufno);
2728 if (nbbuf != NULL && !nbbuf->fireChanges)
2729 return NULL; /* changes in this buffer are not reported */
2730
2731 *bufnop = bufno;
2732 return nbbuf;
2733}
2734
2735/*
2736 * Tell netbeans the user inserted some text.
2737 */
2738 void
2739netbeans_inserted(
2740 buf_T *bufp,
2741 linenr_T linenr,
2742 colnr_T col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743 char_u *txt,
2744 int newlen)
2745{
2746 char_u *buf;
2747 int bufno;
2748 nbbuf_T *nbbuf;
2749 pos_T pos;
2750 long off;
2751 char_u *p;
2752 char_u *newtxt;
2753
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002754 if (!NETBEANS_OPEN)
2755 return;
2756
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2758 if (nbbuf == NULL)
2759 return;
2760
Bram Moolenaar009b2592004-10-24 19:18:58 +00002761 /* Don't mark as modified for initial read */
2762 if (nbbuf->insertDone)
2763 nbbuf->modified = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764
2765 pos.lnum = linenr;
2766 pos.col = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767 off = pos2off(bufp, &pos);
2768
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 /* send the "insert" EVT */
2770 newtxt = alloc(newlen + 1);
Bram Moolenaarb6356332005-07-18 21:40:44 +00002771 vim_strncpy(newtxt, txt, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772 p = nb_quote(newtxt);
2773 if (p != NULL)
2774 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002775 buf = alloc(128 + 2*newlen);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002776 sprintf((char *)buf, "%d:insert=%d %ld \"%s\"\n",
2777 bufno, r_cmdno, off, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 nbdebug(("EVT: %s", buf));
2779 nb_send((char *)buf, "netbeans_inserted");
Bram Moolenaar009b2592004-10-24 19:18:58 +00002780 vim_free(p);
2781 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 vim_free(newtxt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784}
2785
2786/*
2787 * Tell netbeans some bytes have been removed.
2788 */
2789 void
2790netbeans_removed(
2791 buf_T *bufp,
2792 linenr_T linenr,
2793 colnr_T col,
2794 long len)
2795{
2796 char_u buf[128];
2797 int bufno;
2798 nbbuf_T *nbbuf;
2799 pos_T pos;
2800 long off;
2801
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002802 if (!NETBEANS_OPEN)
2803 return;
2804
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2806 if (nbbuf == NULL)
2807 return;
2808
2809 if (len < 0)
2810 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002811 nbdebug(("Negative len %ld in netbeans_removed()!\n", len));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812 return;
2813 }
2814
2815 nbbuf->modified = 1;
2816
2817 pos.lnum = linenr;
2818 pos.col = col;
2819
2820 off = pos2off(bufp, &pos);
2821
Bram Moolenaar89d40322006-08-29 15:30:07 +00002822 sprintf((char *)buf, "%d:remove=%d %ld %ld\n", bufno, r_cmdno, off, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823 nbdebug(("EVT: %s", buf));
2824 nb_send((char *)buf, "netbeans_removed");
2825}
2826
2827/*
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01002828 * Send netbeans an unmodified command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002831netbeans_unmodified(buf_T *bufp UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832{
Bram Moolenaar09092152010-08-08 16:38:42 +02002833 /* This is a no-op, because NetBeans considers a buffer modified
Bram Moolenaar071d4272004-06-13 20:20:40 +00002834 * even when all changes have been undone. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835}
2836
2837/*
2838 * Send a button release event back to netbeans. Its up to netbeans
2839 * to decide what to do (if anything) with this event.
2840 */
2841 void
2842netbeans_button_release(int button)
2843{
2844 char buf[128];
2845 int bufno;
2846
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002847 if (!NETBEANS_OPEN)
2848 return;
2849
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 bufno = nb_getbufno(curbuf);
2851
2852 if (bufno >= 0 && curwin != NULL && curwin->w_buffer == curbuf)
2853 {
Bram Moolenaar64486672010-05-16 15:46:46 +02002854 int col = mouse_col - W_WINCOL(curwin)
Bram Moolenaar67c53842010-05-22 18:28:27 +02002855 - ((curwin->w_p_nu || curwin->w_p_rnu) ? 9 : 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856 long off = pos2off(curbuf, &curwin->w_cursor);
2857
2858 /* sync the cursor position */
Bram Moolenaar89d40322006-08-29 15:30:07 +00002859 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 nbdebug(("EVT: %s", buf));
2861 nb_send(buf, "netbeans_button_release[newDotAndMark]");
2862
Bram Moolenaar89d40322006-08-29 15:30:07 +00002863 sprintf(buf, "%d:buttonRelease=%d %d %ld %d\n", bufno, r_cmdno,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864 button, (long)curwin->w_cursor.lnum, col);
2865 nbdebug(("EVT: %s", buf));
2866 nb_send(buf, "netbeans_button_release");
2867 }
2868}
2869
2870
2871/*
Bram Moolenaar143c38c2007-05-10 16:41:10 +00002872 * Send a keypress event back to netbeans. This usually simulates some
Bram Moolenaar009b2592004-10-24 19:18:58 +00002873 * kind of function key press. This function operates on a key code.
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002874 * Return TRUE when the key was sent, FALSE when the command has been
2875 * postponed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002876 */
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002877 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878netbeans_keycommand(int key)
2879{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880 char keyName[60];
Bram Moolenaar009b2592004-10-24 19:18:58 +00002881
2882 netbeans_keyname(key, keyName);
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002883 return netbeans_keystring((char_u *)keyName);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002884}
2885
2886
2887/*
Bram Moolenaar143c38c2007-05-10 16:41:10 +00002888 * Send a keypress event back to netbeans. This usually simulates some
Bram Moolenaar009b2592004-10-24 19:18:58 +00002889 * kind of function key press. This function operates on a key string.
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002890 * Return TRUE when the key was sent, FALSE when the command has been
2891 * postponed.
Bram Moolenaar009b2592004-10-24 19:18:58 +00002892 */
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002893 static int
2894netbeans_keystring(char_u *keyName)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002895{
2896 char buf[2*MAXPATHL];
2897 int bufno = nb_getbufno(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898 long off;
2899 char_u *q;
2900
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002901 if (!NETBEANS_OPEN)
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002902 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904 if (bufno == -1)
2905 {
2906 nbdebug(("got keycommand for non-NetBeans buffer, opening...\n"));
2907 q = curbuf->b_ffname == NULL ? (char_u *)""
2908 : nb_quote(curbuf->b_ffname);
2909 if (q == NULL)
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002910 return TRUE;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002911 vim_snprintf(buf, sizeof(buf), "0:fileOpened=%d \"%s\" %s %s\n", 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912 q,
2913 "T", /* open in NetBeans */
2914 "F"); /* modified */
2915 if (curbuf->b_ffname != NULL)
2916 vim_free(q);
2917 nbdebug(("EVT: %s", buf));
2918 nb_send(buf, "netbeans_keycommand");
2919
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002920 postpone_keycommand(keyName);
2921 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922 }
2923
2924 /* sync the cursor position */
2925 off = pos2off(curbuf, &curwin->w_cursor);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002926 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 nbdebug(("EVT: %s", buf));
2928 nb_send(buf, "netbeans_keycommand");
2929
2930 /* To work on Win32 you must apply patch to ExtEditor module
2931 * from ExtEdCaret.java.diff - make EVT_newDotAndMark handler
2932 * more synchronous
2933 */
2934
2935 /* now send keyCommand event */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002936 vim_snprintf(buf, sizeof(buf), "%d:keyCommand=%d \"%s\"\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00002937 bufno, r_cmdno, keyName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938 nbdebug(("EVT: %s", buf));
2939 nb_send(buf, "netbeans_keycommand");
2940
2941 /* New: do both at once and include the lnum/col. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002942 vim_snprintf(buf, sizeof(buf), "%d:keyAtPos=%d \"%s\" %ld %ld/%ld\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00002943 bufno, r_cmdno, keyName,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944 off, (long)curwin->w_cursor.lnum, (long)curwin->w_cursor.col);
2945 nbdebug(("EVT: %s", buf));
2946 nb_send(buf, "netbeans_keycommand");
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002947 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948}
2949
2950
2951/*
2952 * Send a save event to netbeans.
2953 */
2954 void
2955netbeans_save_buffer(buf_T *bufp)
2956{
2957 char_u buf[64];
2958 int bufno;
2959 nbbuf_T *nbbuf;
2960
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002961 if (!NETBEANS_OPEN)
2962 return;
2963
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2965 if (nbbuf == NULL)
2966 return;
2967
2968 nbbuf->modified = 0;
2969
Bram Moolenaar89d40322006-08-29 15:30:07 +00002970 sprintf((char *)buf, "%d:save=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 nbdebug(("EVT: %s", buf));
2972 nb_send((char *)buf, "netbeans_save_buffer");
2973}
2974
2975
2976/*
2977 * Send remove command to netbeans (this command has been turned off).
2978 */
2979 void
2980netbeans_deleted_all_lines(buf_T *bufp)
2981{
2982 char_u buf[64];
2983 int bufno;
2984 nbbuf_T *nbbuf;
2985
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002986 if (!NETBEANS_OPEN)
2987 return;
2988
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2990 if (nbbuf == NULL)
2991 return;
2992
Bram Moolenaar009b2592004-10-24 19:18:58 +00002993 /* Don't mark as modified for initial read */
2994 if (nbbuf->insertDone)
2995 nbbuf->modified = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996
Bram Moolenaar89d40322006-08-29 15:30:07 +00002997 sprintf((char *)buf, "%d:remove=%d 0 -1\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998 nbdebug(("EVT(suppressed): %s", buf));
2999/* nb_send(buf, "netbeans_deleted_all_lines"); */
3000}
3001
3002
3003/*
3004 * See if the lines are guarded. The top and bot parameters are from
3005 * u_savecommon(), these are the line above the change and the line below the
3006 * change.
3007 */
3008 int
3009netbeans_is_guarded(linenr_T top, linenr_T bot)
3010{
3011 signlist_T *p;
3012 int lnum;
3013
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003014 if (!NETBEANS_OPEN)
3015 return FALSE;
3016
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 for (p = curbuf->b_signlist; p != NULL; p = p->next)
3018 if (p->id >= GUARDEDOFFSET)
3019 for (lnum = top + 1; lnum < bot; lnum++)
3020 if (lnum == p->lnum)
3021 return TRUE;
3022
3023 return FALSE;
3024}
3025
Bram Moolenaar173c9852010-09-29 17:27:01 +02003026#if defined(FEAT_GUI_X11) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027/*
3028 * We have multiple signs to draw at the same location. Draw the
3029 * multi-sign indicator instead. This is the Motif version.
3030 */
3031 void
3032netbeans_draw_multisign_indicator(int row)
3033{
3034 int i;
3035 int y;
3036 int x;
3037
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003038 if (!NETBEANS_OPEN)
3039 return;
3040
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 x = 0;
3042 y = row * gui.char_height + 2;
3043
3044 for (i = 0; i < gui.char_height - 3; i++)
3045 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y++);
3046
3047 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+0, y);
3048 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3049 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+4, y++);
3050 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+1, y);
3051 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3052 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+3, y++);
3053 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3054}
Bram Moolenaar173c9852010-09-29 17:27:01 +02003055#endif /* FEAT_GUI_X11 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056
Bram Moolenaar64404472010-06-26 06:24:45 +02003057#if defined(FEAT_GUI_GTK) && !defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058/*
3059 * We have multiple signs to draw at the same location. Draw the
3060 * multi-sign indicator instead. This is the GTK/Gnome version.
3061 */
3062 void
3063netbeans_draw_multisign_indicator(int row)
3064{
3065 int i;
3066 int y;
3067 int x;
3068 GdkDrawable *drawable = gui.drawarea->window;
3069
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003070 if (!NETBEANS_OPEN)
3071 return;
3072
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 x = 0;
3074 y = row * gui.char_height + 2;
3075
3076 for (i = 0; i < gui.char_height - 3; i++)
3077 gdk_draw_point(drawable, gui.text_gc, x+2, y++);
3078
3079 gdk_draw_point(drawable, gui.text_gc, x+0, y);
3080 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3081 gdk_draw_point(drawable, gui.text_gc, x+4, y++);
3082 gdk_draw_point(drawable, gui.text_gc, x+1, y);
3083 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3084 gdk_draw_point(drawable, gui.text_gc, x+3, y++);
3085 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3086}
3087#endif /* FEAT_GUI_GTK */
3088
3089/*
3090 * If the mouse is clicked in the gutter of a line with multiple
3091 * annotations, cycle through the set of signs.
3092 */
3093 void
3094netbeans_gutter_click(linenr_T lnum)
3095{
3096 signlist_T *p;
3097
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003098 if (!NETBEANS_OPEN)
3099 return;
3100
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101 for (p = curbuf->b_signlist; p != NULL; p = p->next)
3102 {
3103 if (p->lnum == lnum && p->next && p->next->lnum == lnum)
3104 {
3105 signlist_T *tail;
3106
3107 /* remove "p" from list, reinsert it at the tail of the sublist */
3108 if (p->prev)
3109 p->prev->next = p->next;
3110 else
3111 curbuf->b_signlist = p->next;
3112 p->next->prev = p->prev;
3113 /* now find end of sublist and insert p */
3114 for (tail = p->next;
3115 tail->next && tail->next->lnum == lnum
3116 && tail->next->id < GUARDEDOFFSET;
3117 tail = tail->next)
3118 ;
3119 /* tail now points to last entry with same lnum (except
3120 * that "guarded" annotations are always last) */
3121 p->next = tail->next;
3122 if (tail->next)
3123 tail->next->prev = p;
3124 p->prev = tail;
3125 tail->next = p;
3126 update_debug_sign(curbuf, lnum);
3127 break;
3128 }
3129 }
3130}
3131
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132/*
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003133 * Add a sign of the requested type at the requested location.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134 *
3135 * Reverse engineering:
3136 * Apparently an annotation is defined the first time it is used in a buffer.
3137 * When the same annotation is used in two buffers, the second time we do not
3138 * need to define a new sign name but reuse the existing one. But since the
3139 * ID number used in the second buffer starts counting at one again, a mapping
3140 * is made from the ID specifically for the buffer to the global sign name
3141 * (which is a number).
3142 *
3143 * globalsignmap[] stores the signs that have been defined globally.
3144 * buf->signmapused[] maps buffer-local annotation IDs to an index in
3145 * globalsignmap[].
3146 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147 static void
3148addsigntype(
3149 nbbuf_T *buf,
3150 int typeNum,
3151 char_u *typeName,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003152 char_u *tooltip UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 char_u *glyphFile,
Bram Moolenaar67c53842010-05-22 18:28:27 +02003154 char_u *fg,
3155 char_u *bg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 int i, j;
Bram Moolenaar67c53842010-05-22 18:28:27 +02003158 int use_fg = (*fg && STRCMP(fg, "none") != 0);
3159 int use_bg = (*bg && STRCMP(bg, "none") != 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160
3161 for (i = 0; i < globalsignmapused; i++)
3162 if (STRCMP(typeName, globalsignmap[i]) == 0)
3163 break;
3164
3165 if (i == globalsignmapused) /* not found; add it to global map */
3166 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003167 nbdebug(("DEFINEANNOTYPE(%d,%s,%s,%s,%s,%s)\n",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168 typeNum, typeName, tooltip, glyphFile, fg, bg));
3169 if (use_fg || use_bg)
3170 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003171 char fgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1];
3172 char bgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1];
3173 char *ptr;
3174 int value;
3175
3176 value = strtol((char *)fg, &ptr, 10);
3177 if (ptr != (char *)fg)
3178 sprintf(fgbuf, "guifg=#%06x", value & 0xFFFFFF);
3179 else
3180 sprintf(fgbuf, "guifg=%s ctermfg=%s", fg, fg);
3181
3182 value = strtol((char *)bg, &ptr, 10);
3183 if (ptr != (char *)bg)
3184 sprintf(bgbuf, "guibg=#%06x", value & 0xFFFFFF);
3185 else
3186 sprintf(bgbuf, "guibg=%s ctermbg=%s", bg, bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187
3188 coloncmd(":highlight NB_%s %s %s", typeName, (use_fg) ? fgbuf : "",
3189 (use_bg) ? bgbuf : "");
3190 if (*glyphFile == NUL)
3191 /* no glyph, line highlighting only */
3192 coloncmd(":sign define %d linehl=NB_%s", i + 1, typeName);
3193 else if (vim_strsize(glyphFile) <= 2)
3194 /* one- or two-character glyph name, use as text glyph with
3195 * texthl */
3196 coloncmd(":sign define %d text=%s texthl=NB_%s", i + 1,
3197 glyphFile, typeName);
3198 else
3199 /* glyph, line highlighting */
3200 coloncmd(":sign define %d icon=%s linehl=NB_%s", i + 1,
3201 glyphFile, typeName);
3202 }
3203 else
3204 /* glyph, no line highlighting */
3205 coloncmd(":sign define %d icon=%s", i + 1, glyphFile);
3206
3207 if (STRCMP(typeName,"CurrentPC") == 0)
3208 curPCtype = typeNum;
3209
3210 if (globalsignmapused == globalsignmaplen)
3211 {
3212 if (globalsignmaplen == 0) /* first allocation */
3213 {
3214 globalsignmaplen = 20;
3215 globalsignmap = (char **)alloc_clear(globalsignmaplen*sizeof(char *));
3216 }
3217 else /* grow it */
3218 {
3219 int incr;
3220 int oldlen = globalsignmaplen;
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003221 char **t_globalsignmap = globalsignmap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222
3223 globalsignmaplen *= 2;
3224 incr = globalsignmaplen - oldlen;
3225 globalsignmap = (char **)vim_realloc(globalsignmap,
3226 globalsignmaplen * sizeof(char *));
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003227 if (globalsignmap == NULL)
3228 {
3229 vim_free(t_globalsignmap);
3230 globalsignmaplen = 0;
3231 return;
3232 }
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003233 vim_memset(globalsignmap + oldlen, 0, incr * sizeof(char *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003234 }
3235 }
3236
3237 globalsignmap[i] = (char *)typeName;
3238 globalsignmapused = i + 1;
3239 }
3240
3241 /* check local map; should *not* be found! */
3242 for (j = 0; j < buf->signmapused; j++)
3243 if (buf->signmap[j] == i + 1)
3244 return;
3245
3246 /* add to local map */
3247 if (buf->signmapused == buf->signmaplen)
3248 {
3249 if (buf->signmaplen == 0) /* first allocation */
3250 {
3251 buf->signmaplen = 5;
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003252 buf->signmap = (int *)alloc_clear(buf->signmaplen * sizeof(int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 }
3254 else /* grow it */
3255 {
3256 int incr;
3257 int oldlen = buf->signmaplen;
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003258 int *t_signmap = buf->signmap;
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003259
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260 buf->signmaplen *= 2;
3261 incr = buf->signmaplen - oldlen;
3262 buf->signmap = (int *)vim_realloc(buf->signmap,
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003263 buf->signmaplen * sizeof(int));
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003264 if (buf->signmap == NULL)
3265 {
3266 vim_free(t_signmap);
3267 buf->signmaplen = 0;
3268 return;
3269 }
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003270 vim_memset(buf->signmap + oldlen, 0, incr * sizeof(int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271 }
3272 }
3273
3274 buf->signmap[buf->signmapused++] = i + 1;
3275
3276}
3277
3278
3279/*
3280 * See if we have the requested sign type in the buffer.
3281 */
3282 static int
3283mapsigntype(nbbuf_T *buf, int localsigntype)
3284{
3285 if (--localsigntype >= 0 && localsigntype < buf->signmapused)
3286 return buf->signmap[localsigntype];
3287
3288 return 0;
3289}
3290
3291
3292/*
3293 * Compute length of buffer, don't print anything.
3294 */
3295 static long
3296get_buf_size(buf_T *bufp)
3297{
3298 linenr_T lnum;
3299 long char_count = 0;
3300 int eol_size;
3301 long last_check = 100000L;
3302
3303 if (bufp->b_ml.ml_flags & ML_EMPTY)
3304 return 0;
3305 else
3306 {
3307 if (get_fileformat(bufp) == EOL_DOS)
3308 eol_size = 2;
3309 else
3310 eol_size = 1;
3311 for (lnum = 1; lnum <= bufp->b_ml.ml_line_count; ++lnum)
3312 {
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00003313 char_count += (long)STRLEN(ml_get_buf(bufp, lnum, FALSE))
3314 + eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 /* Check for a CTRL-C every 100000 characters */
3316 if (char_count > last_check)
3317 {
3318 ui_breakcheck();
3319 if (got_int)
3320 return char_count;
3321 last_check = char_count + 100000L;
3322 }
3323 }
3324 /* Correction for when last line doesn't have an EOL. */
Bram Moolenaar34d72d42015-07-17 14:18:08 +02003325 if (!bufp->b_p_eol && (bufp->b_p_bin || !bufp->b_p_fixeol))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 char_count -= eol_size;
3327 }
3328
3329 return char_count;
3330}
3331
3332/*
3333 * Convert character offset to lnum,col
3334 */
3335 static pos_T *
3336off2pos(buf_T *buf, long offset)
3337{
3338 linenr_T lnum;
3339 static pos_T pos;
3340
3341 pos.lnum = 0;
3342 pos.col = 0;
3343#ifdef FEAT_VIRTUALEDIT
3344 pos.coladd = 0;
3345#endif
3346
3347 if (!(buf->b_ml.ml_flags & ML_EMPTY))
3348 {
3349 if ((lnum = ml_find_line_or_offset(buf, (linenr_T)0, &offset)) < 0)
3350 return NULL;
3351 pos.lnum = lnum;
3352 pos.col = offset;
3353 }
3354
3355 return &pos;
3356}
3357
3358/*
3359 * Convert an argument in the form "1234" to an offset and compute the
3360 * lnum/col from it. Convert an argument in the form "123/12" directly to a
3361 * lnum/col.
3362 * "argp" is advanced to after the argument.
3363 * Return a pointer to the position, NULL if something is wrong.
3364 */
3365 static pos_T *
3366get_off_or_lnum(buf_T *buf, char_u **argp)
3367{
3368 static pos_T mypos;
3369 long off;
3370
3371 off = strtol((char *)*argp, (char **)argp, 10);
3372 if (**argp == '/')
3373 {
3374 mypos.lnum = (linenr_T)off;
3375 ++*argp;
3376 mypos.col = strtol((char *)*argp, (char **)argp, 10);
3377#ifdef FEAT_VIRTUALEDIT
3378 mypos.coladd = 0;
3379#endif
3380 return &mypos;
3381 }
3382 return off2pos(buf, off);
3383}
3384
3385
3386/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003387 * Convert (lnum,col) to byte offset in the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388 */
3389 static long
3390pos2off(buf_T *buf, pos_T *pos)
3391{
3392 long offset = 0;
3393
3394 if (!(buf->b_ml.ml_flags & ML_EMPTY))
3395 {
3396 if ((offset = ml_find_line_or_offset(buf, pos->lnum, 0)) < 0)
3397 return 0;
3398 offset += pos->col;
3399 }
3400
3401 return offset;
3402}
3403
3404
Bram Moolenaar009b2592004-10-24 19:18:58 +00003405/*
3406 * This message is printed after NetBeans opens a new file. Its
3407 * similar to the message readfile() uses, but since NetBeans
3408 * doesn't normally call readfile, we do our own.
3409 */
3410 static void
3411print_read_msg(buf)
3412 nbbuf_T *buf;
3413{
3414 int lnum = buf->bufp->b_ml.ml_line_count;
Bram Moolenaar914703b2010-05-31 21:59:46 +02003415 off_t nchars = buf->bufp->b_orig_size;
Bram Moolenaar009b2592004-10-24 19:18:58 +00003416 char_u c;
3417
3418 msg_add_fname(buf->bufp, buf->bufp->b_ffname);
3419 c = FALSE;
3420
3421 if (buf->bufp->b_p_ro)
3422 {
3423 STRCAT(IObuff, shortmess(SHM_RO) ? _("[RO]") : _("[readonly]"));
3424 c = TRUE;
3425 }
3426 if (!buf->bufp->b_start_eol)
3427 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003428 STRCAT(IObuff, shortmess(SHM_LAST) ? _("[noeol]")
3429 : _("[Incomplete last line]"));
Bram Moolenaar009b2592004-10-24 19:18:58 +00003430 c = TRUE;
3431 }
3432 msg_add_lines(c, (long)lnum, nchars);
3433
3434 /* Now display it */
3435 vim_free(keep_msg);
3436 keep_msg = NULL;
3437 msg_scrolled_ign = TRUE;
3438 msg_trunc_attr(IObuff, FALSE, 0);
3439 msg_scrolled_ign = FALSE;
3440}
3441
3442
3443/*
Bram Moolenaar67c53842010-05-22 18:28:27 +02003444 * Print a message after NetBeans writes the file. This message should be
3445 * identical to the standard message a non-netbeans user would see when
3446 * writing a file.
Bram Moolenaar009b2592004-10-24 19:18:58 +00003447 */
3448 static void
3449print_save_msg(buf, nchars)
3450 nbbuf_T *buf;
Bram Moolenaar914703b2010-05-31 21:59:46 +02003451 off_t nchars;
Bram Moolenaar009b2592004-10-24 19:18:58 +00003452{
3453 char_u c;
3454 char_u *p;
3455
3456 if (nchars >= 0)
3457 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003458 /* put fname in IObuff with quotes */
3459 msg_add_fname(buf->bufp, buf->bufp->b_ffname);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003460 c = FALSE;
3461
3462 msg_add_lines(c, buf->bufp->b_ml.ml_line_count,
Bram Moolenaar914703b2010-05-31 21:59:46 +02003463 buf->bufp->b_orig_size);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003464
3465 vim_free(keep_msg);
3466 keep_msg = NULL;
3467 msg_scrolled_ign = TRUE;
3468 p = msg_trunc_attr(IObuff, FALSE, 0);
3469 if ((msg_scrolled && !need_wait_return) || !buf->initDone)
3470 {
3471 /* Need to repeat the message after redrawing when:
3472 * - When reading from stdin (the screen will be cleared next).
3473 * - When restart_edit is set (otherwise there will be a delay
3474 * before redrawing).
3475 * - When the screen was scrolled but there is no wait-return
3476 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003477 set_keep_msg(p, 0);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003478 }
3479 msg_scrolled_ign = FALSE;
3480 /* add_to_input_buf((char_u *)"\f", 1); */
3481 }
3482 else
3483 {
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003484 char_u msgbuf[IOSIZE];
Bram Moolenaar009b2592004-10-24 19:18:58 +00003485
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003486 vim_snprintf((char *)msgbuf, IOSIZE,
3487 _("E505: %s is read-only (add ! to override)"), IObuff);
3488 nbdebug((" %s\n", msgbuf));
3489 emsg(msgbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003490 }
3491}
3492
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493#endif /* defined(FEAT_NETBEANS_INTG) */