blob: 46d725bfa9912c77e7cf97b9cc46796ad05e4027 [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
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010047static long pos2off(buf_T *, pos_T *);
48static pos_T *off2pos(buf_T *, long);
49static pos_T *get_off_or_lnum(buf_T *buf, char_u **argp);
50static long get_buf_size(buf_T *);
51static int netbeans_keystring(char_u *keystr);
52static void postpone_keycommand(char_u *keystr);
53static void special_keys(char_u *args);
Bram Moolenaar071d4272004-06-13 20:20:40 +000054
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010055static int netbeans_connect(char *, int);
56static int getConnInfo(char *file, char **host, char **port, char **password);
Bram Moolenaar071d4272004-06-13 20:20:40 +000057
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010058static void nb_init_graphics(void);
59static void coloncmd(char *cmd, ...);
60static void nb_set_curbuf(buf_T *buf);
61static void nb_parse_cmd(char_u *);
62static int nb_do_cmd(int, char_u *, int, int, char_u *);
63static void nb_send(char *buf, char *fun);
64static void nb_free(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000065
Bram Moolenaar77073442016-02-13 23:23:53 +010066#define NETBEANS_OPEN (channel_can_write_to(nb_channel))
67static channel_T *nb_channel = NULL;
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 Moolenaar77073442016-02-13 23:23:53 +010088 nb_channel = NULL;
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 Moolenaar77073442016-02-13 23:23:53 +0100101 if (nb_channel != NULL)
Bram Moolenaar187db502016-02-27 14:44:26 +0100102 {
Bram Moolenaard04a0202016-01-26 23:30:18 +0100103 /* Close the socket and remove the input handlers. */
Bram Moolenaar8b374212016-02-24 20:43:06 +0100104 channel_close(nb_channel, TRUE);
Bram Moolenaar187db502016-02-27 14:44:26 +0100105 channel_clear(nb_channel);
106 }
Bram Moolenaar77073442016-02-13 23:23:53 +0100107 nb_channel = NULL;
Bram Moolenaar7ad7d012010-11-16 15:49:02 +0100108 }
109
Bram Moolenaar67c53842010-05-22 18:28:27 +0200110#ifdef FEAT_BEVAL
Bram Moolenaard62bec82005-03-07 22:56:57 +0000111 bevalServers &= ~BEVAL_NETBEANS;
Bram Moolenaar67c53842010-05-22 18:28:27 +0200112#endif
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200113
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200114 needupdate = 0;
115 inAtomic = 0;
116 nb_free();
117
118 /* remove all signs and update the screen after gutter removal */
119 coloncmd(":sign unplace *");
120 changed_window_setting();
121 update_screen(CLEAR);
122 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +0200123 cursor_on();
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200124 out_flush();
125#ifdef FEAT_GUI
Bram Moolenaard54a6882010-08-09 22:49:00 +0200126 if (gui.in_use)
127 {
128 gui_update_cursor(TRUE, FALSE);
129 gui_mch_flush();
130 }
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200131#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133
134#define NB_DEF_HOST "localhost"
135#define NB_DEF_ADDR "3219"
136#define NB_DEF_PASS "changeme"
137
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200138 static int
Bram Moolenaarf506c5b2010-06-22 06:28:58 +0200139netbeans_connect(char *params, int doabort)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140{
Bram Moolenaard04a0202016-01-26 23:30:18 +0100141 int port;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142 char buf[32];
143 char *hostname = NULL;
144 char *address = NULL;
145 char *password = NULL;
146 char *fname;
147 char *arg = NULL;
148
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200149 if (*params == '=')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200151 /* "=fname": Read info from specified file. */
Bram Moolenaare0874f82016-01-24 20:36:41 +0100152 if (getConnInfo(params + 1, &hostname, &address, &password) == FAIL)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200153 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154 }
155 else
156 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200157 if (*params == ':')
158 /* ":<host>:<addr>:<password>": get info from argument */
159 arg = params + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160 if (arg == NULL && (fname = getenv("__NETBEANS_CONINFO")) != NULL)
161 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200162 /* "": get info from file specified in environment */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163 if (getConnInfo(fname, &hostname, &address, &password) == FAIL)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200164 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165 }
166 else
167 {
168 if (arg != NULL)
169 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200170 /* ":<host>:<addr>:<password>": get info from argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171 hostname = arg;
172 address = strchr(hostname, ':');
173 if (address != NULL)
174 {
175 *address++ = '\0';
176 password = strchr(address, ':');
177 if (password != NULL)
178 *password++ = '\0';
179 }
180 }
181
182 /* Get the missing values from the environment. */
183 if (hostname == NULL || *hostname == '\0')
184 hostname = getenv("__NETBEANS_HOST");
185 if (address == NULL)
186 address = getenv("__NETBEANS_SOCKET");
187 if (password == NULL)
188 password = getenv("__NETBEANS_VIM_PASSWORD");
189
190 /* Move values to allocated memory. */
191 if (hostname != NULL)
192 hostname = (char *)vim_strsave((char_u *)hostname);
193 if (address != NULL)
194 address = (char *)vim_strsave((char_u *)address);
195 if (password != NULL)
196 password = (char *)vim_strsave((char_u *)password);
197 }
198 }
199
200 /* Use the default when a value is missing. */
201 if (hostname == NULL || *hostname == '\0')
202 {
203 vim_free(hostname);
204 hostname = (char *)vim_strsave((char_u *)NB_DEF_HOST);
205 }
206 if (address == NULL || *address == '\0')
207 {
208 vim_free(address);
209 address = (char *)vim_strsave((char_u *)NB_DEF_ADDR);
210 }
211 if (password == NULL || *password == '\0')
212 {
213 vim_free(password);
214 password = (char *)vim_strsave((char_u *)NB_DEF_PASS);
215 }
Bram Moolenaard04a0202016-01-26 23:30:18 +0100216 if (hostname != NULL && address != NULL && password != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217 {
Bram Moolenaard04a0202016-01-26 23:30:18 +0100218 port = atoi(address);
Bram Moolenaar81661fb2016-02-18 22:23:34 +0100219 nb_channel = channel_open(hostname, port, 3000, nb_channel_closed);
Bram Moolenaar77073442016-02-13 23:23:53 +0100220 if (nb_channel != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221 {
Bram Moolenaard04a0202016-01-26 23:30:18 +0100222 /* success */
223# ifdef FEAT_BEVAL
224 bevalServers |= BEVAL_NETBEANS;
225# endif
Bram Moolenaarc39125d2010-05-23 12:06:58 +0200226
Bram Moolenaard04a0202016-01-26 23:30:18 +0100227 /* success, login */
228 vim_snprintf(buf, sizeof(buf), "AUTH %s\n", password);
229 nb_send(buf, "netbeans_connect");
230
231 sprintf(buf, "0:version=0 \"%s\"\n", ExtEdProtocolVersion);
232 nb_send(buf, "externaleditor_version");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 }
234 }
235
Bram Moolenaar77073442016-02-13 23:23:53 +0100236 if (nb_channel == NULL && doabort)
Bram Moolenaard04a0202016-01-26 23:30:18 +0100237 getout(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239 vim_free(hostname);
240 vim_free(address);
241 vim_free(password);
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200242 return NETBEANS_OPEN ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243}
244
245/*
246 * Obtain the NetBeans hostname, port address and password from a file.
247 * Return the strings in allocated memory.
248 * Return FAIL if the file could not be read, OK otherwise (no matter what it
249 * contains).
250 */
251 static int
252getConnInfo(char *file, char **host, char **port, char **auth)
253{
254 FILE *fp;
255 char_u buf[BUFSIZ];
256 char_u *lp;
Bram Moolenaar309cbc32012-01-10 22:31:31 +0100257 char_u *nlp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258#ifdef UNIX
259 struct stat st;
260
261 /*
262 * For Unix only accept the file when it's not accessible by others.
263 * The open will then fail if we don't own the file.
264 */
265 if (mch_stat(file, &st) == 0 && (st.st_mode & 0077) != 0)
266 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000267 nbdebug(("Wrong access mode for NetBeans connection info file: \"%s\"\n",
268 file));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269 EMSG2(_("E668: Wrong access mode for NetBeans connection info file: \"%s\""),
270 file);
271 return FAIL;
272 }
273#endif
274
275 fp = mch_fopen(file, "r");
276 if (fp == NULL)
277 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000278 nbdebug(("Cannot open NetBeans connection info file\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279 PERROR("E660: Cannot open NetBeans connection info file");
280 return FAIL;
281 }
282
283 /* Read the file. There should be one of each parameter */
284 while ((lp = (char_u *)fgets((char *)buf, BUFSIZ, fp)) != NULL)
285 {
Bram Moolenaar309cbc32012-01-10 22:31:31 +0100286 if ((nlp = vim_strchr(lp, '\n')) != NULL)
287 *nlp = 0; /* strip off the trailing newline */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288
289 if (STRNCMP(lp, "host=", 5) == 0)
290 {
291 vim_free(*host);
292 *host = (char *)vim_strsave(&buf[5]);
293 }
294 else if (STRNCMP(lp, "port=", 5) == 0)
295 {
296 vim_free(*port);
297 *port = (char *)vim_strsave(&buf[5]);
298 }
299 else if (STRNCMP(lp, "auth=", 5) == 0)
300 {
301 vim_free(*auth);
302 *auth = (char *)vim_strsave(&buf[5]);
303 }
304 }
305 fclose(fp);
306
307 return OK;
308}
309
310
311struct keyqueue
312{
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100313 char_u *keystr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314 struct keyqueue *next;
315 struct keyqueue *prev;
316};
317
318typedef struct keyqueue keyQ_T;
319
320static keyQ_T keyHead; /* dummy node, header for circular queue */
321
322
323/*
324 * Queue up key commands sent from netbeans.
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100325 * We store the string, because it may depend on the global mod_mask and
326 * :nbkey doesn't have a key number.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327 */
328 static void
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100329postpone_keycommand(char_u *keystr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330{
331 keyQ_T *node;
332
333 node = (keyQ_T *)alloc(sizeof(keyQ_T));
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100334 if (node == NULL)
335 return; /* out of memory, drop the key */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336
337 if (keyHead.next == NULL) /* initialize circular queue */
338 {
339 keyHead.next = &keyHead;
340 keyHead.prev = &keyHead;
341 }
342
343 /* insert node at tail of queue */
344 node->next = &keyHead;
345 node->prev = keyHead.prev;
346 keyHead.prev->next = node;
347 keyHead.prev = node;
348
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100349 node->keystr = vim_strsave(keystr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350}
351
352/*
353 * Handle any queued-up NetBeans keycommands to be send.
354 */
355 static void
356handle_key_queue(void)
357{
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100358 int postponed = FALSE;
359
360 while (!postponed && keyHead.next && keyHead.next != &keyHead)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 {
362 /* first, unlink the node */
363 keyQ_T *node = keyHead.next;
364 keyHead.next = node->next;
365 node->next->prev = node->prev;
366
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100367 /* Now, send the keycommand. This may cause it to be postponed again
368 * and change keyHead. */
369 if (node->keystr != NULL)
370 postponed = !netbeans_keystring(node->keystr);
371 vim_free(node->keystr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372
373 /* Finally, dispose of the node */
374 vim_free(node);
375 }
376}
377
378
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379/*
380 * While there's still a command in the work queue, parse and execute it.
381 */
Bram Moolenaarf2330482008-06-24 20:19:36 +0000382 void
383netbeans_parse_messages(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384{
Bram Moolenaar5f1032d2016-06-07 22:16:36 +0200385 readq_T *node;
Bram Moolenaard04a0202016-01-26 23:30:18 +0100386 char_u *buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387 char_u *p;
Bram Moolenaar863053d2010-12-02 17:09:54 +0100388 int own_node;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389
Bram Moolenaar77073442016-02-13 23:23:53 +0100390 while (nb_channel != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 {
Bram Moolenaar5f1032d2016-06-07 22:16:36 +0200392 node = channel_peek(nb_channel, PART_SOCK);
393 if (node == NULL)
Bram Moolenaard04a0202016-01-26 23:30:18 +0100394 break; /* nothing to read */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395
Bram Moolenaar5ce4a0b2016-06-08 20:17:23 +0200396 /* Locate the end of the first line in the first buffer. */
Bram Moolenaar5f1032d2016-06-07 22:16:36 +0200397 p = channel_first_nl(node);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398 if (p == NULL)
399 {
400 /* Command isn't complete. If there is no following buffer,
401 * return (wait for more). If there is another buffer following,
402 * prepend the text to that buffer and delete this one. */
Bram Moolenaar9ed96ef2016-06-04 17:17:11 +0200403 if (channel_collapse(nb_channel, PART_SOCK, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404 return;
Bram Moolenaar5ce4a0b2016-06-08 20:17:23 +0200405 continue;
406 }
407
408 /* There is a complete command at the start of the buffer.
409 * Terminate it with a NUL. When no more text is following unlink
410 * the buffer. Do this before executing, because new buffers can
411 * be added while busy handling the command. */
412 *p++ = NUL;
413 if (*p == NUL)
414 {
415 own_node = TRUE;
416 buffer = channel_get(nb_channel, PART_SOCK);
417 /* "node" is now invalid! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418 }
419 else
420 {
Bram Moolenaar5ce4a0b2016-06-08 20:17:23 +0200421 own_node = FALSE;
422 buffer = node->rq_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423 }
Bram Moolenaar5ce4a0b2016-06-08 20:17:23 +0200424
425 /* now, parse and execute the commands */
426 nb_parse_cmd(buffer);
427
428 if (own_node)
429 /* buffer finished, dispose of it */
430 vim_free(buffer);
431 else
432 /* more follows, move it to the start */
433 channel_consume(nb_channel, PART_SOCK, (int)(p - buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434 }
435}
436
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437/*
438 * Handle one NUL terminated command.
439 *
440 * format of a command from netbeans:
441 *
442 * 6:setTitle!84 "a.c"
443 *
444 * bufno
445 * colon
446 * cmd
447 * !
448 * cmdno
449 * args
450 *
451 * for function calls, the ! is replaced by a /
452 */
453 static void
454nb_parse_cmd(char_u *cmd)
455{
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000456 char *verb;
457 char *q;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 int bufno;
459 int isfunc = -1;
460
461 if (STRCMP(cmd, "DISCONNECT") == 0)
462 {
463 /* We assume the server knows that we can safely exit! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 /* Disconnect before exiting, Motif hangs in a Select error
465 * message otherwise. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200466 netbeans_close();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467 getout(0);
468 /* NOTREACHED */
469 }
470
Bram Moolenaareed284a2016-02-22 23:13:33 +0100471 if (STRCMP(cmd, "DETACH") == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472 {
Bram Moolenaard04a0202016-01-26 23:30:18 +0100473 buf_T *buf;
474
475 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
476 buf->b_has_sign_column = FALSE;
477
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478 /* The IDE is breaking the connection. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200479 netbeans_close();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480 return;
481 }
482
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000483 bufno = strtol((char *)cmd, &verb, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484
485 if (*verb != ':')
486 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000487 nbdebug((" missing colon: %s\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488 EMSG2("E627: missing colon: %s", cmd);
489 return;
490 }
491 ++verb; /* skip colon */
492
493 for (q = verb; *q; q++)
494 {
495 if (*q == '!')
496 {
497 *q++ = NUL;
498 isfunc = 0;
499 break;
500 }
501 else if (*q == '/')
502 {
503 *q++ = NUL;
504 isfunc = 1;
505 break;
506 }
507 }
508
509 if (isfunc < 0)
510 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000511 nbdebug((" missing ! or / in: %s\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 EMSG2("E628: missing ! or / in: %s", cmd);
513 return;
514 }
515
Bram Moolenaar89d40322006-08-29 15:30:07 +0000516 r_cmdno = strtol(q, &q, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000518 q = (char *)skipwhite((char_u *)q);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519
Bram Moolenaar89d40322006-08-29 15:30:07 +0000520 if (nb_do_cmd(bufno, (char_u *)verb, isfunc, r_cmdno, (char_u *)q) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 {
Bram Moolenaar009b2592004-10-24 19:18:58 +0000522#ifdef NBDEBUG
523 /*
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100524 * This happens because the ExtEd can send a command or 2 after
Bram Moolenaar009b2592004-10-24 19:18:58 +0000525 * doing a stopDocumentListen command. It doesn't harm anything
526 * so I'm disabling it except for debugging.
527 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000528 nbdebug(("nb_parse_cmd: Command error for \"%s\"\n", cmd));
529 EMSG("E629: bad return from nb_do_cmd");
Bram Moolenaar009b2592004-10-24 19:18:58 +0000530#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531 }
532}
533
534struct nbbuf_struct
535{
536 buf_T *bufp;
537 unsigned int fireChanges:1;
538 unsigned int initDone:1;
Bram Moolenaar009b2592004-10-24 19:18:58 +0000539 unsigned int insertDone:1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540 unsigned int modified:1;
Bram Moolenaar009b2592004-10-24 19:18:58 +0000541 int nbbuf_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542 char *displayname;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543 int *signmap;
544 short_u signmaplen;
545 short_u signmapused;
546};
547
548typedef struct nbbuf_struct nbbuf_T;
549
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200550static nbbuf_T *buf_list = NULL;
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000551static int buf_list_size = 0; /* size of buf_list */
552static int buf_list_used = 0; /* nr of entries in buf_list actually in use */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200554static char **globalsignmap = NULL;
555static int globalsignmaplen = 0;
556static int globalsignmapused = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100558static int mapsigntype(nbbuf_T *, int localsigntype);
559static void addsigntype(nbbuf_T *, int localsigntype, char_u *typeName,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 char_u *tooltip, char_u *glyphfile,
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100561 char_u *fg, char_u *bg);
562static void print_read_msg(nbbuf_T *buf);
563static void print_save_msg(nbbuf_T *buf, off_t nchars);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564
565static int curPCtype = -1;
566
567/*
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200568 * Free netbeans resources.
569 */
570 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100571nb_free(void)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200572{
573 keyQ_T *key_node = keyHead.next;
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200574 nbbuf_T buf;
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200575 int i;
576
577 /* free the netbeans buffer list */
578 for (i = 0; i < buf_list_used; i++)
579 {
580 buf = buf_list[i];
581 vim_free(buf.displayname);
582 vim_free(buf.signmap);
Bram Moolenaare980d8a2010-12-08 13:11:21 +0100583 if (buf.bufp != NULL)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200584 {
585 buf.bufp->b_netbeans_file = FALSE;
586 buf.bufp->b_was_netbeans_file = FALSE;
587 }
588 }
589 vim_free(buf_list);
590 buf_list = NULL;
591 buf_list_size = 0;
592 buf_list_used = 0;
593
594 /* free the queued key commands */
Bram Moolenaar8d4eecc2012-11-20 17:19:01 +0100595 while (key_node != NULL && key_node != &keyHead)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200596 {
597 keyQ_T *next = key_node->next;
598 vim_free(key_node->keystr);
599 vim_free(key_node);
600 if (next == &keyHead)
601 {
602 keyHead.next = &keyHead;
603 keyHead.prev = &keyHead;
604 break;
605 }
606 key_node = next;
607 }
608
609 /* free the queued netbeans commands */
Bram Moolenaar77073442016-02-13 23:23:53 +0100610 if (nb_channel != NULL)
611 channel_clear(nb_channel);
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200612}
613
614/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 * Get the Netbeans buffer number for the specified buffer.
616 */
617 static int
618nb_getbufno(buf_T *bufp)
619{
620 int i;
621
622 for (i = 0; i < buf_list_used; i++)
623 if (buf_list[i].bufp == bufp)
624 return i;
625 return -1;
626}
627
628/*
629 * Is this a NetBeans-owned buffer?
630 */
631 int
632isNetbeansBuffer(buf_T *bufp)
633{
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200634 return NETBEANS_OPEN && bufp->b_netbeans_file;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635}
636
637/*
638 * NetBeans and Vim have different undo models. In Vim, the file isn't
639 * changed if changes are undone via the undo command. In NetBeans, once
640 * a change has been made the file is marked as modified until saved. It
641 * doesn't matter if the change was undone.
642 *
643 * So this function is for the corner case where Vim thinks a buffer is
644 * unmodified but NetBeans thinks it IS modified.
645 */
646 int
647isNetbeansModified(buf_T *bufp)
648{
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200649 if (isNetbeansBuffer(bufp))
Bram Moolenaar009b2592004-10-24 19:18:58 +0000650 {
651 int bufno = nb_getbufno(bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000652
Bram Moolenaar009b2592004-10-24 19:18:58 +0000653 if (bufno > 0)
654 return buf_list[bufno].modified;
655 else
656 return FALSE;
657 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658 else
659 return FALSE;
660}
661
662/*
663 * Given a Netbeans buffer number, return the netbeans buffer.
664 * Returns NULL for 0 or a negative number. A 0 bufno means a
665 * non-buffer related command has been sent.
666 */
667 static nbbuf_T *
668nb_get_buf(int bufno)
669{
670 /* find or create a buffer with the given number */
671 int incr;
672
673 if (bufno <= 0)
674 return NULL;
675
676 if (!buf_list)
677 {
678 /* initialize */
679 buf_list = (nbbuf_T *)alloc_clear(100 * sizeof(nbbuf_T));
680 buf_list_size = 100;
681 }
682 if (bufno >= buf_list_used) /* new */
683 {
684 if (bufno >= buf_list_size) /* grow list */
685 {
Bram Moolenaar9abd5c62015-02-10 18:34:01 +0100686 nbbuf_T *t_buf_list = buf_list;
687
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 incr = bufno - buf_list_size + 90;
689 buf_list_size += incr;
690 buf_list = (nbbuf_T *)vim_realloc(
691 buf_list, buf_list_size * sizeof(nbbuf_T));
Bram Moolenaar9abd5c62015-02-10 18:34:01 +0100692 if (buf_list == NULL)
693 {
694 vim_free(t_buf_list);
695 buf_list_size = 0;
696 return NULL;
697 }
Bram Moolenaar7db5fc82010-05-24 11:59:29 +0200698 vim_memset(buf_list + buf_list_size - incr, 0,
699 incr * sizeof(nbbuf_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700 }
701
702 while (buf_list_used <= bufno)
703 {
704 /* Default is to fire text changes. */
705 buf_list[buf_list_used].fireChanges = 1;
706 ++buf_list_used;
707 }
708 }
709
710 return buf_list + bufno;
711}
712
713/*
714 * Return the number of buffers that are modified.
715 */
716 static int
717count_changed_buffers(void)
718{
719 buf_T *bufp;
720 int n;
721
722 n = 0;
723 for (bufp = firstbuf; bufp != NULL; bufp = bufp->b_next)
724 if (bufp->b_changed)
725 ++n;
726 return n;
727}
728
729/*
730 * End the netbeans session.
731 */
732 void
733netbeans_end(void)
734{
735 int i;
736 static char buf[128];
737
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200738 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 return;
740
741 for (i = 0; i < buf_list_used; i++)
742 {
743 if (!buf_list[i].bufp)
744 continue;
745 if (netbeansForcedQuit)
746 {
747 /* mark as unmodified so NetBeans won't put up dialog on "killed" */
Bram Moolenaar89d40322006-08-29 15:30:07 +0000748 sprintf(buf, "%d:unmodified=%d\n", i, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 nbdebug(("EVT: %s", buf));
750 nb_send(buf, "netbeans_end");
751 }
Bram Moolenaar89d40322006-08-29 15:30:07 +0000752 sprintf(buf, "%d:killed=%d\n", i, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 nbdebug(("EVT: %s", buf));
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200754 /* nb_send(buf, "netbeans_end"); avoid "write failed" messages */
Bram Moolenaard04a0202016-01-26 23:30:18 +0100755 nb_send(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757}
758
759/*
760 * Send a message to netbeans.
Bram Moolenaard04a0202016-01-26 23:30:18 +0100761 * When "fun" is NULL no error is given.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 */
763 static void
764nb_send(char *buf, char *fun)
765{
Bram Moolenaar77073442016-02-13 23:23:53 +0100766 if (nb_channel != NULL)
Bram Moolenaar42d38a22016-02-20 18:18:59 +0100767 channel_send(nb_channel, PART_SOCK, (char_u *)buf, fun);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768}
769
770/*
771 * Some input received from netbeans requires a response. This function
772 * handles a response with no information (except the command number).
773 */
774 static void
775nb_reply_nil(int cmdno)
776{
777 char reply[32];
778
Bram Moolenaar009b2592004-10-24 19:18:58 +0000779 nbdebug(("REP %d: <none>\n", cmdno));
780
Bram Moolenaar7ad7d012010-11-16 15:49:02 +0100781 /* Avoid printing an annoying error message. */
782 if (!NETBEANS_OPEN)
783 return;
784
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 sprintf(reply, "%d\n", cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 nb_send(reply, "nb_reply_nil");
787}
788
789
790/*
791 * Send a response with text.
792 * "result" must have been quoted already (using nb_quote()).
793 */
794 static void
795nb_reply_text(int cmdno, char_u *result)
796{
797 char_u *reply;
798
Bram Moolenaar009b2592004-10-24 19:18:58 +0000799 nbdebug(("REP %d: %s\n", cmdno, (char *)result));
800
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000801 reply = alloc((unsigned)STRLEN(result) + 32);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 sprintf((char *)reply, "%d %s\n", cmdno, (char *)result);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 nb_send((char *)reply, "nb_reply_text");
804
805 vim_free(reply);
806}
807
808
809/*
810 * Send a response with a number result code.
811 */
812 static void
813nb_reply_nr(int cmdno, long result)
814{
815 char reply[32];
816
Bram Moolenaar009b2592004-10-24 19:18:58 +0000817 nbdebug(("REP %d: %ld\n", cmdno, result));
818
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 sprintf(reply, "%d %ld\n", cmdno, result);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 nb_send(reply, "nb_reply_nr");
821}
822
823
824/*
825 * Encode newline, ret, backslash, double quote for transmission to NetBeans.
826 */
827 static char_u *
828nb_quote(char_u *txt)
829{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000830 char_u *buf = alloc((unsigned)(2 * STRLEN(txt) + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 char_u *p = txt;
832 char_u *q = buf;
833
834 if (buf == NULL)
835 return NULL;
836 for (; *p; p++)
837 {
838 switch (*p)
839 {
840 case '\"':
841 case '\\':
842 *q++ = '\\'; *q++ = *p; break;
843 /* case '\t': */
844 /* *q++ = '\\'; *q++ = 't'; break; */
845 case '\n':
846 *q++ = '\\'; *q++ = 'n'; break;
847 case '\r':
848 *q++ = '\\'; *q++ = 'r'; break;
849 default:
850 *q++ = *p;
851 break;
852 }
853 }
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100854 *q = '\0';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855
856 return buf;
857}
858
859
860/*
861 * Remove top level double quotes; convert backslashed chars.
862 * Returns an allocated string (NULL for failure).
863 * If "endp" is not NULL it is set to the character after the terminating
864 * quote.
865 */
866 static char *
867nb_unquote(char_u *p, char_u **endp)
868{
869 char *result = 0;
870 char *q;
871 int done = 0;
872
873 /* result is never longer than input */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000874 result = (char *)alloc_clear((unsigned)STRLEN(p) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 if (result == NULL)
876 return NULL;
877
878 if (*p++ != '"')
879 {
880 nbdebug(("nb_unquote called with string that doesn't start with a quote!: %s\n",
881 p));
882 result[0] = NUL;
883 return result;
884 }
885
886 for (q = result; !done && *p != NUL;)
887 {
888 switch (*p)
889 {
890 case '"':
891 /*
892 * Unbackslashed dquote marks the end, if first char was dquote.
893 */
894 done = 1;
895 break;
896
897 case '\\':
898 ++p;
899 switch (*p)
900 {
901 case '\\': *q++ = '\\'; break;
902 case 'n': *q++ = '\n'; break;
903 case 't': *q++ = '\t'; break;
904 case 'r': *q++ = '\r'; break;
905 case '"': *q++ = '"'; break;
906 case NUL: --p; break;
907 /* default: skip over illegal chars */
908 }
909 ++p;
910 break;
911
912 default:
913 *q++ = *p++;
914 }
915 }
916
917 if (endp != NULL)
918 *endp = p;
919
920 return result;
921}
922
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000923/*
924 * Remove from "first" byte to "last" byte (inclusive), at line "lnum" of the
925 * current buffer. Remove to end of line when "last" is MAXCOL.
926 */
927 static void
928nb_partialremove(linenr_T lnum, colnr_T first, colnr_T last)
929{
930 char_u *oldtext, *newtext;
931 int oldlen;
932 int lastbyte = last;
933
934 oldtext = ml_get(lnum);
Bram Moolenaarcb4cef22008-03-16 15:04:34 +0000935 oldlen = (int)STRLEN(oldtext);
Bram Moolenaarb3c70982008-01-18 10:40:55 +0000936 if (first >= (colnr_T)oldlen || oldlen == 0) /* just in case */
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000937 return;
938 if (lastbyte >= oldlen)
939 lastbyte = oldlen - 1;
940 newtext = alloc(oldlen - (int)(lastbyte - first));
941 if (newtext != NULL)
942 {
943 mch_memmove(newtext, oldtext, first);
Bram Moolenaarf2330482008-06-24 20:19:36 +0000944 STRMOVE(newtext + first, oldtext + lastbyte + 1);
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000945 nbdebug((" NEW LINE %d: %s\n", lnum, newtext));
946 ml_replace(lnum, newtext, FALSE);
947 }
948}
949
950/*
951 * Replace the "first" line with the concatenation of the "first" and
952 * the "other" line. The "other" line is not removed.
953 */
954 static void
955nb_joinlines(linenr_T first, linenr_T other)
956{
957 int len_first, len_other;
958 char_u *p;
959
Bram Moolenaarcb4cef22008-03-16 15:04:34 +0000960 len_first = (int)STRLEN(ml_get(first));
961 len_other = (int)STRLEN(ml_get(other));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000962 p = alloc((unsigned)(len_first + len_other + 1));
963 if (p != NULL)
964 {
965 mch_memmove(p, ml_get(first), len_first);
966 mch_memmove(p + len_first, ml_get(other), len_other + 1);
967 ml_replace(first, p, FALSE);
968 }
969}
970
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971#define SKIP_STOP 2
972#define streq(a,b) (strcmp(a,b) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973
974/*
975 * Do the actual processing of a single netbeans command or function.
Bram Moolenaar143c38c2007-05-10 16:41:10 +0000976 * The difference between a command and function is that a function
977 * gets a response (it's required) but a command does not.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978 * For arguments see comment for nb_parse_cmd().
979 */
980 static int
981nb_do_cmd(
982 int bufno,
983 char_u *cmd,
984 int func,
985 int cmdno,
986 char_u *args) /* points to space before arguments or NUL */
987{
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100988 int do_update = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 long off = 0;
990 nbbuf_T *buf = nb_get_buf(bufno);
991 static int skip = 0;
992 int retval = OK;
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000993 char *cp; /* for when a char pointer is needed */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994
995 nbdebug(("%s %d: (%d) %s %s\n", (func) ? "FUN" : "CMD", cmdno, bufno, cmd,
996 STRCMP(cmd, "insert") == 0 ? "<text>" : (char *)args));
997
998 if (func)
999 {
1000/* =====================================================================*/
1001 if (streq((char *)cmd, "getModified"))
1002 {
1003 if (buf == NULL || buf->bufp == NULL)
1004 /* Return the number of buffers that are modified. */
1005 nb_reply_nr(cmdno, (long)count_changed_buffers());
1006 else
1007 /* Return whether the buffer is modified. */
1008 nb_reply_nr(cmdno, (long)(buf->bufp->b_changed
1009 || isNetbeansModified(buf->bufp)));
1010/* =====================================================================*/
1011 }
1012 else if (streq((char *)cmd, "saveAndExit"))
1013 {
1014 /* Note: this will exit Vim if successful. */
1015 coloncmd(":confirm qall");
1016
1017 /* We didn't exit: return the number of changed buffers. */
1018 nb_reply_nr(cmdno, (long)count_changed_buffers());
1019/* =====================================================================*/
1020 }
1021 else if (streq((char *)cmd, "getCursor"))
1022 {
1023 char_u text[200];
1024
1025 /* Note: nb_getbufno() may return -1. This indicates the IDE
1026 * didn't assign a number to the current buffer in response to a
1027 * fileOpened event. */
1028 sprintf((char *)text, "%d %ld %d %ld",
1029 nb_getbufno(curbuf),
1030 (long)curwin->w_cursor.lnum,
1031 (int)curwin->w_cursor.col,
1032 pos2off(curbuf, &curwin->w_cursor));
1033 nb_reply_text(cmdno, text);
1034/* =====================================================================*/
1035 }
Bram Moolenaarc65c4912006-11-14 17:29:46 +00001036 else if (streq((char *)cmd, "getAnno"))
1037 {
1038 long linenum = 0;
1039#ifdef FEAT_SIGNS
1040 if (buf == NULL || buf->bufp == NULL)
1041 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001042 nbdebug((" Invalid buffer identifier in getAnno\n"));
1043 EMSG("E652: Invalid buffer identifier in getAnno");
Bram Moolenaarc65c4912006-11-14 17:29:46 +00001044 retval = FAIL;
1045 }
1046 else
1047 {
1048 int serNum;
1049
1050 cp = (char *)args;
1051 serNum = strtol(cp, &cp, 10);
1052 /* If the sign isn't found linenum will be zero. */
1053 linenum = (long)buf_findsign(buf->bufp, serNum);
1054 }
1055#endif
1056 nb_reply_nr(cmdno, linenum);
1057/* =====================================================================*/
1058 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059 else if (streq((char *)cmd, "getLength"))
1060 {
1061 long len = 0;
1062
1063 if (buf == NULL || buf->bufp == NULL)
1064 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001065 nbdebug((" invalid buffer identifier in getLength\n"));
1066 EMSG("E632: invalid buffer identifier in getLength");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 retval = FAIL;
1068 }
1069 else
1070 {
1071 len = get_buf_size(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 }
1073 nb_reply_nr(cmdno, len);
1074/* =====================================================================*/
1075 }
1076 else if (streq((char *)cmd, "getText"))
1077 {
1078 long len;
1079 linenr_T nlines;
1080 char_u *text = NULL;
1081 linenr_T lno = 1;
1082 char_u *p;
1083 char_u *line;
1084
1085 if (buf == NULL || buf->bufp == NULL)
1086 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001087 nbdebug((" invalid buffer identifier in getText\n"));
1088 EMSG("E633: invalid buffer identifier in getText");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 retval = FAIL;
1090 }
1091 else
1092 {
1093 len = get_buf_size(buf->bufp);
1094 nlines = buf->bufp->b_ml.ml_line_count;
1095 text = alloc((unsigned)((len > 0)
1096 ? ((len + nlines) * 2) : 4));
1097 if (text == NULL)
1098 {
1099 nbdebug((" nb_do_cmd: getText has null text field\n"));
1100 retval = FAIL;
1101 }
1102 else
1103 {
1104 p = text;
1105 *p++ = '\"';
1106 for (; lno <= nlines ; lno++)
1107 {
1108 line = nb_quote(ml_get_buf(buf->bufp, lno, FALSE));
1109 if (line != NULL)
1110 {
1111 STRCPY(p, line);
1112 p += STRLEN(line);
1113 *p++ = '\\';
1114 *p++ = 'n';
Bram Moolenaar009b2592004-10-24 19:18:58 +00001115 vim_free(line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117 }
1118 *p++ = '\"';
1119 *p = '\0';
1120 }
1121 }
1122 if (text == NULL)
1123 nb_reply_text(cmdno, (char_u *)"");
1124 else
1125 {
1126 nb_reply_text(cmdno, text);
1127 vim_free(text);
1128 }
1129/* =====================================================================*/
1130 }
1131 else if (streq((char *)cmd, "remove"))
1132 {
1133 long count;
1134 pos_T first, last;
1135 pos_T *pos;
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001136 pos_T *next;
1137 linenr_T del_from_lnum, del_to_lnum; /* lines to be deleted as a whole */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 int oldFire = netbeansFireChanges;
1139 int oldSuppress = netbeansSuppressNoLines;
1140 int wasChanged;
1141
1142 if (skip >= SKIP_STOP)
1143 {
1144 nbdebug((" Skipping %s command\n", (char *) cmd));
1145 nb_reply_nil(cmdno);
1146 return OK;
1147 }
1148
1149 if (buf == NULL || buf->bufp == NULL)
1150 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001151 nbdebug((" invalid buffer identifier in remove\n"));
1152 EMSG("E634: invalid buffer identifier in remove");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 retval = FAIL;
1154 }
1155 else
1156 {
1157 netbeansFireChanges = FALSE;
1158 netbeansSuppressNoLines = TRUE;
1159
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001160 nb_set_curbuf(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 wasChanged = buf->bufp->b_changed;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001162 cp = (char *)args;
1163 off = strtol(cp, &cp, 10);
1164 count = strtol(cp, &cp, 10);
1165 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 /* delete "count" chars, starting at "off" */
1167 pos = off2pos(buf->bufp, off);
1168 if (!pos)
1169 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001170 nbdebug((" !bad position\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 nb_reply_text(cmdno, (char_u *)"!bad position");
1172 netbeansFireChanges = oldFire;
1173 netbeansSuppressNoLines = oldSuppress;
1174 return FAIL;
1175 }
1176 first = *pos;
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001177 nbdebug((" FIRST POS: line %d, col %d\n",
1178 first.lnum, first.col));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 pos = off2pos(buf->bufp, off+count-1);
1180 if (!pos)
1181 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001182 nbdebug((" !bad count\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 nb_reply_text(cmdno, (char_u *)"!bad count");
1184 netbeansFireChanges = oldFire;
1185 netbeansSuppressNoLines = oldSuppress;
1186 return FAIL;
1187 }
1188 last = *pos;
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001189 nbdebug((" LAST POS: line %d, col %d\n",
1190 last.lnum, last.col));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001191 del_from_lnum = first.lnum;
1192 del_to_lnum = last.lnum;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001193 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001195 /* Get the position of the first byte after the deleted
1196 * section. "next" is NULL when deleting to the end of the
1197 * file. */
1198 next = off2pos(buf->bufp, off + count);
1199
1200 /* Remove part of the first line. */
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001201 if (first.col != 0
1202 || (next != NULL && first.lnum == next->lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 {
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001204 if (first.lnum != last.lnum
1205 || (next != NULL && first.lnum != next->lnum))
1206 {
1207 /* remove to the end of the first line */
1208 nb_partialremove(first.lnum, first.col,
1209 (colnr_T)MAXCOL);
1210 if (first.lnum == last.lnum)
1211 {
1212 /* Partial line to remove includes the end of
1213 * line. Join the line with the next one, have
1214 * the next line deleted below. */
1215 nb_joinlines(first.lnum, next->lnum);
1216 del_to_lnum = next->lnum;
1217 }
1218 }
1219 else
1220 {
1221 /* remove within one line */
1222 nb_partialremove(first.lnum, first.col, last.col);
1223 }
1224 ++del_from_lnum; /* don't delete the first line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 }
1226
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001227 /* Remove part of the last line. */
1228 if (first.lnum != last.lnum && next != NULL
1229 && next->col != 0 && last.lnum == next->lnum)
1230 {
1231 nb_partialremove(last.lnum, 0, last.col);
1232 if (del_from_lnum > first.lnum)
1233 {
1234 /* Join end of last line to start of first line; last
1235 * line is deleted below. */
1236 nb_joinlines(first.lnum, last.lnum);
1237 }
1238 else
1239 /* First line is deleted as a whole, keep the last
1240 * line. */
1241 --del_to_lnum;
1242 }
1243
1244 /* First is partial line; last line to remove includes
1245 * the end of line; join first line to line following last
1246 * line; line following last line is deleted below. */
1247 if (first.lnum != last.lnum && del_from_lnum > first.lnum
1248 && next != NULL && last.lnum != next->lnum)
1249 {
1250 nb_joinlines(first.lnum, next->lnum);
1251 del_to_lnum = next->lnum;
1252 }
1253
1254 /* Delete whole lines if there are any. */
1255 if (del_to_lnum >= del_from_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 {
1257 int i;
1258
1259 /* delete signs from the lines being deleted */
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001260 for (i = del_from_lnum; i <= del_to_lnum; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 {
1262 int id = buf_findsign_id(buf->bufp, (linenr_T)i);
1263 if (id > 0)
1264 {
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001265 nbdebug((" Deleting sign %d on line %d\n",
1266 id, i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 buf_delsign(buf->bufp, id);
1268 }
1269 else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001270 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 nbdebug((" No sign on line %d\n", i));
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001272 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 }
1274
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001275 nbdebug((" Deleting lines %d through %d\n",
1276 del_from_lnum, del_to_lnum));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001277 curwin->w_cursor.lnum = del_from_lnum;
1278 curwin->w_cursor.col = 0;
1279 del_lines(del_to_lnum - del_from_lnum + 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 }
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001281
1282 /* Leave cursor at first deleted byte. */
1283 curwin->w_cursor = first;
1284 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 buf->bufp->b_changed = wasChanged; /* logically unchanged */
1286 netbeansFireChanges = oldFire;
1287 netbeansSuppressNoLines = oldSuppress;
1288
1289 u_blockfree(buf->bufp);
1290 u_clearall(buf->bufp);
1291 }
1292 nb_reply_nil(cmdno);
1293/* =====================================================================*/
1294 }
1295 else if (streq((char *)cmd, "insert"))
1296 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 char_u *to_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298
1299 if (skip >= SKIP_STOP)
1300 {
1301 nbdebug((" Skipping %s command\n", (char *) cmd));
1302 nb_reply_nil(cmdno);
1303 return OK;
1304 }
1305
1306 /* get offset */
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001307 cp = (char *)args;
1308 off = strtol(cp, &cp, 10);
1309 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310
1311 /* get text to be inserted */
1312 args = skipwhite(args);
1313 args = to_free = (char_u *)nb_unquote(args, NULL);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001314 /*
1315 nbdebug((" CHUNK[%d]: %d bytes at offset %d\n",
1316 buf->bufp->b_ml.ml_line_count, STRLEN(args), off));
1317 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318
1319 if (buf == NULL || buf->bufp == NULL)
1320 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001321 nbdebug((" invalid buffer identifier in insert\n"));
1322 EMSG("E635: invalid buffer identifier in insert");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 retval = FAIL;
1324 }
1325 else if (args != NULL)
1326 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001327 int ff_detected = EOL_UNKNOWN;
1328 int buf_was_empty = (buf->bufp->b_ml.ml_flags & ML_EMPTY);
1329 size_t len = 0;
1330 int added = 0;
1331 int oldFire = netbeansFireChanges;
1332 int old_b_changed;
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001333 char_u *nlp;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001334 linenr_T lnum;
1335 linenr_T lnum_start;
1336 pos_T *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 netbeansFireChanges = 0;
1339
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001340 /* Jump to the buffer where we insert. After this "curbuf"
1341 * can be used. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001342 nb_set_curbuf(buf->bufp);
Bram Moolenaara3227e22006-03-08 21:32:40 +00001343 old_b_changed = curbuf->b_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001345 /* Convert the specified character offset into a lnum/col
1346 * position. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001347 pos = off2pos(curbuf, off);
1348 if (pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001350 if (pos->lnum <= 0)
1351 lnum_start = 1;
1352 else
1353 lnum_start = pos->lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 }
1355 else
1356 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001357 /* If the given position is not found, assume we want
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 * the end of the file. See setLocAndSize HACK. */
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001359 if (buf_was_empty)
1360 lnum_start = 1; /* above empty line */
1361 else
1362 lnum_start = curbuf->b_ml.ml_line_count + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001363 }
1364
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001365 /* "lnum" is the line where we insert: either append to it or
1366 * insert a new line above it. */
1367 lnum = lnum_start;
1368
1369 /* Loop over the "\n" separated lines of the argument. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001370 do_update = 1;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001371 while (*args != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 {
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001373 nlp = vim_strchr(args, '\n');
1374 if (nlp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001376 /* Incomplete line, probably truncated. Next "insert"
1377 * command should append to this one. */
1378 len = STRLEN(args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001380 else
1381 {
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001382 len = nlp - args;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001383
1384 /*
1385 * We need to detect EOL style, because the commands
1386 * use a character offset.
1387 */
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001388 if (nlp > args && nlp[-1] == '\r')
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001389 {
1390 ff_detected = EOL_DOS;
1391 --len;
1392 }
1393 else
1394 ff_detected = EOL_UNIX;
1395 }
1396 args[len] = NUL;
1397
1398 if (lnum == lnum_start
1399 && ((pos != NULL && pos->col > 0)
1400 || (lnum == 1 && buf_was_empty)))
1401 {
1402 char_u *oldline = ml_get(lnum);
1403 char_u *newline;
1404
Bram Moolenaare4365282012-04-20 19:47:05 +02001405 /* Insert halfway a line. */
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001406 newline = alloc_check(
1407 (unsigned)(STRLEN(oldline) + len + 1));
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001408 if (newline != NULL)
1409 {
Bram Moolenaare4365282012-04-20 19:47:05 +02001410 mch_memmove(newline, oldline, (size_t)pos->col);
1411 newline[pos->col] = NUL;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001412 STRCAT(newline, args);
Bram Moolenaare4365282012-04-20 19:47:05 +02001413 STRCAT(newline, oldline + pos->col);
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001414 ml_replace(lnum, newline, FALSE);
1415 }
1416 }
1417 else
1418 {
1419 /* Append a new line. Not that we always do this,
1420 * also when the text doesn't end in a "\n". */
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001421 ml_append((linenr_T)(lnum - 1), args,
1422 (colnr_T)(len + 1), FALSE);
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001423 ++added;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001424 }
1425
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001426 if (nlp == NULL)
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001427 break;
1428 ++lnum;
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001429 args = nlp + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001430 }
1431
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001432 /* Adjust the marks below the inserted lines. */
1433 appended_lines_mark(lnum_start - 1, (long)added);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001434
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001435 /*
1436 * When starting with an empty buffer set the fileformat.
1437 * This is just guessing...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438 */
1439 if (buf_was_empty)
1440 {
1441 if (ff_detected == EOL_UNKNOWN)
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001442#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443 ff_detected = EOL_DOS;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001444#else
1445 ff_detected = EOL_UNIX;
1446#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 set_fileformat(ff_detected, OPT_LOCAL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00001448 curbuf->b_start_ffc = *curbuf->b_p_ff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 }
1450
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 /*
1452 * XXX - GRP - Is the next line right? If I've inserted
1453 * text the buffer has been updated but not written. Will
1454 * netbeans guarantee to write it? Even if I do a :q! ?
1455 */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001456 curbuf->b_changed = old_b_changed; /* logically unchanged */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 netbeansFireChanges = oldFire;
1458
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001459 /* Undo info is invalid now... */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001460 u_blockfree(curbuf);
1461 u_clearall(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 }
1463 vim_free(to_free);
1464 nb_reply_nil(cmdno); /* or !error */
1465 }
1466 else
1467 {
1468 nbdebug(("UNIMPLEMENTED FUNCTION: %s\n", cmd));
1469 nb_reply_nil(cmdno);
1470 retval = FAIL;
1471 }
1472 }
1473 else /* Not a function; no reply required. */
1474 {
1475/* =====================================================================*/
1476 if (streq((char *)cmd, "create"))
1477 {
1478 /* Create a buffer without a name. */
1479 if (buf == NULL)
1480 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001481 nbdebug((" invalid buffer identifier in create\n"));
1482 EMSG("E636: invalid buffer identifier in create");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 return FAIL;
1484 }
1485 vim_free(buf->displayname);
1486 buf->displayname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487
1488 netbeansReadFile = 0; /* don't try to open disk file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001489 do_ecmd(0, NULL, 0, 0, ECMD_ONE, ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 netbeansReadFile = 1;
1491 buf->bufp = curbuf;
1492 maketitle();
Bram Moolenaar009b2592004-10-24 19:18:58 +00001493 buf->insertDone = FALSE;
Bram Moolenaar67c53842010-05-22 18:28:27 +02001494#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02001495 if (gui.in_use)
1496 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001497#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498/* =====================================================================*/
1499 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001500 else if (streq((char *)cmd, "insertDone"))
1501 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001502 if (buf == NULL || buf->bufp == NULL)
1503 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001504 nbdebug((" invalid buffer identifier in insertDone\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001505 }
1506 else
1507 {
1508 buf->bufp->b_start_eol = *args == 'T';
1509 buf->insertDone = TRUE;
1510 args += 2;
1511 buf->bufp->b_p_ro = *args == 'T';
1512 print_read_msg(buf);
1513 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001514/* =====================================================================*/
1515 }
1516 else if (streq((char *)cmd, "saveDone"))
1517 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001518 long savedChars = atol((char *)args);
1519
1520 if (buf == NULL || buf->bufp == NULL)
1521 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001522 nbdebug((" invalid buffer identifier in saveDone\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001523 }
1524 else
1525 print_save_msg(buf, savedChars);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001526/* =====================================================================*/
1527 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528 else if (streq((char *)cmd, "startDocumentListen"))
1529 {
1530 if (buf == NULL)
1531 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001532 nbdebug((" invalid buffer identifier in startDocumentListen\n"));
1533 EMSG("E637: invalid buffer identifier in startDocumentListen");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 return FAIL;
1535 }
1536 buf->fireChanges = 1;
1537/* =====================================================================*/
1538 }
1539 else if (streq((char *)cmd, "stopDocumentListen"))
1540 {
1541 if (buf == NULL)
1542 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001543 nbdebug((" invalid buffer identifier in stopDocumentListen\n"));
1544 EMSG("E638: invalid buffer identifier in stopDocumentListen");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 return FAIL;
1546 }
1547 buf->fireChanges = 0;
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001548 if (buf->bufp != NULL && buf->bufp->b_was_netbeans_file)
Bram Moolenaar009b2592004-10-24 19:18:58 +00001549 {
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001550 if (!buf->bufp->b_netbeans_file)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001551 {
1552 nbdebug(("E658: NetBeans connection lost for buffer %ld\n", buf->bufp->b_fnum));
Bram Moolenaar009b2592004-10-24 19:18:58 +00001553 EMSGN(_("E658: NetBeans connection lost for buffer %ld"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 buf->bufp->b_fnum);
Bram Moolenaarf2330482008-06-24 20:19:36 +00001555 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001556 else
1557 {
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001558 /* NetBeans uses stopDocumentListen when it stops editing
1559 * a file. It then expects the buffer in Vim to
1560 * disappear. */
1561 do_bufdel(DOBUF_DEL, (char_u *)"", 1,
1562 buf->bufp->b_fnum, buf->bufp->b_fnum, TRUE);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001563 vim_memset(buf, 0, sizeof(nbbuf_T));
1564 }
1565 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566/* =====================================================================*/
1567 }
1568 else if (streq((char *)cmd, "setTitle"))
1569 {
1570 if (buf == NULL)
1571 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001572 nbdebug((" invalid buffer identifier in setTitle\n"));
1573 EMSG("E639: invalid buffer identifier in setTitle");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 return FAIL;
1575 }
1576 vim_free(buf->displayname);
1577 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578/* =====================================================================*/
1579 }
1580 else if (streq((char *)cmd, "initDone"))
1581 {
1582 if (buf == NULL || buf->bufp == NULL)
1583 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001584 nbdebug((" invalid buffer identifier in initDone\n"));
1585 EMSG("E640: invalid buffer identifier in initDone");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586 return FAIL;
1587 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001588 do_update = 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001589 buf->initDone = TRUE;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001590 nb_set_curbuf(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591#if defined(FEAT_AUTOCMD)
1592 apply_autocmds(EVENT_BUFREADPOST, 0, 0, FALSE, buf->bufp);
1593#endif
1594
1595 /* handle any postponed key commands */
1596 handle_key_queue();
1597/* =====================================================================*/
1598 }
1599 else if (streq((char *)cmd, "setBufferNumber")
1600 || streq((char *)cmd, "putBufferNumber"))
1601 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001602 char_u *path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 buf_T *bufp;
1604
1605 if (buf == NULL)
1606 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001607 nbdebug((" invalid buffer identifier in setBufferNumber\n"));
1608 EMSG("E641: invalid buffer identifier in setBufferNumber");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609 return FAIL;
1610 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001611 path = (char_u *)nb_unquote(args, NULL);
1612 if (path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 return FAIL;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001614 bufp = buflist_findname(path);
1615 vim_free(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 if (bufp == NULL)
1617 {
Bram Moolenaarec906222009-02-21 21:14:00 +00001618 nbdebug((" File %s not found in setBufferNumber\n", args));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 EMSG2("E642: File %s not found in setBufferNumber", args);
1620 return FAIL;
1621 }
1622 buf->bufp = bufp;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001623 buf->nbbuf_number = bufp->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624
1625 /* "setBufferNumber" has the side effect of jumping to the buffer
1626 * (don't know why!). Don't do that for "putBufferNumber". */
1627 if (*cmd != 'p')
1628 coloncmd(":buffer %d", bufp->b_fnum);
1629 else
1630 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001631 buf->initDone = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632
1633 /* handle any postponed key commands */
1634 handle_key_queue();
1635 }
1636
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637/* =====================================================================*/
1638 }
1639 else if (streq((char *)cmd, "setFullName"))
1640 {
1641 if (buf == NULL)
1642 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001643 nbdebug((" invalid buffer identifier in setFullName\n"));
1644 EMSG("E643: invalid buffer identifier in setFullName");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645 return FAIL;
1646 }
1647 vim_free(buf->displayname);
1648 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649
1650 netbeansReadFile = 0; /* don't try to open disk file */
1651 do_ecmd(0, (char_u *)buf->displayname, 0, 0, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001652 ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 netbeansReadFile = 1;
1654 buf->bufp = curbuf;
1655 maketitle();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001656#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02001657 if (gui.in_use)
1658 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001659#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660/* =====================================================================*/
1661 }
1662 else if (streq((char *)cmd, "editFile"))
1663 {
1664 if (buf == NULL)
1665 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001666 nbdebug((" invalid buffer identifier in editFile\n"));
1667 EMSG("E644: invalid buffer identifier in editFile");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 return FAIL;
1669 }
1670 /* Edit a file: like create + setFullName + read the file. */
1671 vim_free(buf->displayname);
1672 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 do_ecmd(0, (char_u *)buf->displayname, NULL, NULL, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001674 ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 buf->bufp = curbuf;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001676 buf->initDone = TRUE;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001677 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678#if defined(FEAT_TITLE)
1679 maketitle();
1680#endif
Bram Moolenaar67c53842010-05-22 18:28:27 +02001681#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02001682 if (gui.in_use)
1683 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001684#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685/* =====================================================================*/
1686 }
1687 else if (streq((char *)cmd, "setVisible"))
1688 {
1689 if (buf == NULL || buf->bufp == NULL)
1690 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001691 nbdebug((" invalid buffer identifier in setVisible\n"));
1692 /* This message was commented out, probably because it can
1693 * happen when shutting down. */
1694 if (p_verbose > 0)
1695 EMSG("E645: invalid buffer identifier in setVisible");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 return FAIL;
1697 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001698 if (streq((char *)args, "T") && buf->bufp != curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699 {
1700 exarg_T exarg;
1701 exarg.cmd = (char_u *)"goto";
1702 exarg.forceit = FALSE;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001703 dosetvisible = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 goto_buffer(&exarg, DOBUF_FIRST, FORWARD, buf->bufp->b_fnum);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001705 do_update = 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001706 dosetvisible = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707
Bram Moolenaar67c53842010-05-22 18:28:27 +02001708#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709 /* Side effect!!!. */
Bram Moolenaard54a6882010-08-09 22:49:00 +02001710 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 gui_mch_set_foreground();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001712#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714/* =====================================================================*/
1715 }
1716 else if (streq((char *)cmd, "raise"))
1717 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02001718#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719 /* Bring gvim to the foreground. */
Bram Moolenaard54a6882010-08-09 22:49:00 +02001720 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 gui_mch_set_foreground();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001722#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723/* =====================================================================*/
1724 }
1725 else if (streq((char *)cmd, "setModified"))
1726 {
Bram Moolenaarff064e12008-06-09 13:10:45 +00001727 int prev_b_changed;
1728
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 if (buf == NULL || buf->bufp == NULL)
1730 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001731 nbdebug((" invalid buffer identifier in setModified\n"));
1732 /* This message was commented out, probably because it can
1733 * happen when shutting down. */
1734 if (p_verbose > 0)
1735 EMSG("E646: invalid buffer identifier in setModified");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 return FAIL;
1737 }
Bram Moolenaarff064e12008-06-09 13:10:45 +00001738 prev_b_changed = buf->bufp->b_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 if (streq((char *)args, "T"))
Bram Moolenaarff064e12008-06-09 13:10:45 +00001740 buf->bufp->b_changed = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 else
1742 {
1743 struct stat st;
1744
1745 /* Assume NetBeans stored the file. Reset the timestamp to
1746 * avoid "file changed" warnings. */
1747 if (buf->bufp->b_ffname != NULL
1748 && mch_stat((char *)buf->bufp->b_ffname, &st) >= 0)
1749 buf_store_time(buf->bufp, &st, buf->bufp->b_ffname);
Bram Moolenaarff064e12008-06-09 13:10:45 +00001750 buf->bufp->b_changed = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 }
1752 buf->modified = buf->bufp->b_changed;
Bram Moolenaarff064e12008-06-09 13:10:45 +00001753 if (prev_b_changed != buf->bufp->b_changed)
1754 {
1755#ifdef FEAT_WINDOWS
1756 check_status(buf->bufp);
1757 redraw_tabline = TRUE;
1758#endif
1759#ifdef FEAT_TITLE
1760 maketitle();
1761#endif
1762 update_screen(0);
1763 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764/* =====================================================================*/
1765 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001766 else if (streq((char *)cmd, "setModtime"))
1767 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001768 if (buf == NULL || buf->bufp == NULL)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001769 nbdebug((" invalid buffer identifier in setModtime\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001770 else
1771 buf->bufp->b_mtime = atoi((char *)args);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001772/* =====================================================================*/
1773 }
1774 else if (streq((char *)cmd, "setReadOnly"))
1775 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001776 if (buf == NULL || buf->bufp == NULL)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001777 nbdebug((" invalid buffer identifier in setReadOnly\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001778 else if (streq((char *)args, "T"))
Bram Moolenaar009b2592004-10-24 19:18:58 +00001779 buf->bufp->b_p_ro = TRUE;
1780 else
1781 buf->bufp->b_p_ro = FALSE;
1782/* =====================================================================*/
1783 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 else if (streq((char *)cmd, "setMark"))
1785 {
1786 /* not yet */
1787/* =====================================================================*/
1788 }
1789 else if (streq((char *)cmd, "showBalloon"))
1790 {
1791#if defined(FEAT_BEVAL)
1792 static char *text = NULL;
1793
1794 /*
1795 * Set up the Balloon Expression Evaluation area.
1796 * Ignore 'ballooneval' here.
1797 * The text pointer must remain valid for a while.
1798 */
1799 if (balloonEval != NULL)
1800 {
1801 vim_free(text);
1802 text = nb_unquote(args, NULL);
1803 if (text != NULL)
1804 gui_mch_post_balloon(balloonEval, (char_u *)text);
1805 }
1806#endif
1807/* =====================================================================*/
1808 }
1809 else if (streq((char *)cmd, "setDot"))
1810 {
1811 pos_T *pos;
1812#ifdef NBDEBUG
1813 char_u *s;
1814#endif
1815
1816 if (buf == NULL || buf->bufp == NULL)
1817 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001818 nbdebug((" invalid buffer identifier in setDot\n"));
1819 EMSG("E647: invalid buffer identifier in setDot");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820 return FAIL;
1821 }
1822
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001823 nb_set_curbuf(buf->bufp);
1824
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 /* Don't want Visual mode now. */
1826 if (VIsual_active)
1827 end_visual_mode();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828#ifdef NBDEBUG
1829 s = args;
1830#endif
1831 pos = get_off_or_lnum(buf->bufp, &args);
1832 if (pos)
1833 {
1834 curwin->w_cursor = *pos;
1835 check_cursor();
1836#ifdef FEAT_FOLDING
1837 foldOpenCursor();
1838#endif
1839 }
1840 else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001841 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 nbdebug((" BAD POSITION in setDot: %s\n", s));
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001843 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844
1845 /* gui_update_cursor(TRUE, FALSE); */
1846 /* update_curbuf(NOT_VALID); */
1847 update_topline(); /* scroll to show the line */
1848 update_screen(VALID);
1849 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02001850 cursor_on();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 out_flush();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001852#ifdef FEAT_GUI
Bram Moolenaard54a6882010-08-09 22:49:00 +02001853 if (gui.in_use)
1854 {
1855 gui_update_cursor(TRUE, FALSE);
1856 gui_mch_flush();
1857 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02001858#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 /* Quit a hit-return or more prompt. */
1860 if (State == HITRETURN || State == ASKMORE)
1861 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862#ifdef FEAT_GUI_GTK
Bram Moolenaard54a6882010-08-09 22:49:00 +02001863 if (gui.in_use && gtk_main_level() > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 gtk_main_quit();
1865#endif
1866 }
1867/* =====================================================================*/
1868 }
1869 else if (streq((char *)cmd, "close"))
1870 {
1871#ifdef NBDEBUG
1872 char *name = "<NONE>";
1873#endif
1874
1875 if (buf == NULL)
1876 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001877 nbdebug((" invalid buffer identifier in close\n"));
1878 EMSG("E648: invalid buffer identifier in close");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 return FAIL;
1880 }
1881
1882#ifdef NBDEBUG
1883 if (buf->displayname != NULL)
1884 name = buf->displayname;
1885#endif
Bram Moolenaarf2330482008-06-24 20:19:36 +00001886 if (buf->bufp == NULL)
1887 {
1888 nbdebug((" invalid buffer identifier in close\n"));
1889 /* This message was commented out, probably because it can
1890 * happen when shutting down. */
1891 if (p_verbose > 0)
1892 EMSG("E649: invalid buffer identifier in close");
1893 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 nbdebug((" CLOSE %d: %s\n", bufno, name));
Bram Moolenaar67c53842010-05-22 18:28:27 +02001895#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 need_mouse_correct = TRUE;
Bram Moolenaar67c53842010-05-22 18:28:27 +02001897#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 if (buf->bufp != NULL)
1899 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD,
1900 buf->bufp->b_fnum, TRUE);
Bram Moolenaar8d602722006-08-08 19:34:19 +00001901 buf->bufp = NULL;
1902 buf->initDone = FALSE;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001903 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904/* =====================================================================*/
1905 }
1906 else if (streq((char *)cmd, "setStyle")) /* obsolete... */
1907 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001908 nbdebug((" setStyle is obsolete!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909/* =====================================================================*/
1910 }
1911 else if (streq((char *)cmd, "setExitDelay"))
1912 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001913 /* Only used in version 2.1. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914/* =====================================================================*/
1915 }
1916 else if (streq((char *)cmd, "defineAnnoType"))
1917 {
1918#ifdef FEAT_SIGNS
1919 int typeNum;
1920 char_u *typeName;
1921 char_u *tooltip;
1922 char_u *p;
1923 char_u *glyphFile;
Bram Moolenaar67c53842010-05-22 18:28:27 +02001924 int parse_error = FALSE;
1925 char_u *fg;
1926 char_u *bg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927
1928 if (buf == NULL)
1929 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001930 nbdebug((" invalid buffer identifier in defineAnnoType\n"));
1931 EMSG("E650: invalid buffer identifier in defineAnnoType");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932 return FAIL;
1933 }
1934
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001935 cp = (char *)args;
1936 typeNum = strtol(cp, &cp, 10);
1937 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938 args = skipwhite(args);
1939 typeName = (char_u *)nb_unquote(args, &args);
1940 args = skipwhite(args + 1);
1941 tooltip = (char_u *)nb_unquote(args, &args);
1942 args = skipwhite(args + 1);
1943
1944 p = (char_u *)nb_unquote(args, &args);
1945 glyphFile = vim_strsave_escaped(p, escape_chars);
1946 vim_free(p);
1947
1948 args = skipwhite(args + 1);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001949 p = skiptowhite(args);
1950 if (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02001952 *p = NUL;
1953 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02001955 fg = vim_strsave(args);
1956 bg = vim_strsave(p);
1957 if (STRLEN(fg) > MAX_COLOR_LENGTH || STRLEN(bg) > MAX_COLOR_LENGTH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02001959 EMSG("E532: highlighting color name too long in defineAnnoType");
1960 vim_free(typeName);
1961 parse_error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02001963 else if (typeName != NULL && tooltip != NULL && glyphFile != NULL)
1964 addsigntype(buf, typeNum, typeName, tooltip, glyphFile, fg, bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 else
1966 vim_free(typeName);
1967
1968 /* don't free typeName; it's used directly in addsigntype() */
Bram Moolenaar67c53842010-05-22 18:28:27 +02001969 vim_free(fg);
1970 vim_free(bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 vim_free(tooltip);
1972 vim_free(glyphFile);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001973 if (parse_error)
1974 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975
1976#endif
1977/* =====================================================================*/
1978 }
1979 else if (streq((char *)cmd, "addAnno"))
1980 {
1981#ifdef FEAT_SIGNS
1982 int serNum;
1983 int localTypeNum;
1984 int typeNum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985 pos_T *pos;
1986
1987 if (buf == NULL || buf->bufp == NULL)
1988 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001989 nbdebug((" invalid buffer identifier in addAnno\n"));
1990 EMSG("E651: invalid buffer identifier in addAnno");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 return FAIL;
1992 }
1993
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001994 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001995
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001996 cp = (char *)args;
1997 serNum = strtol(cp, &cp, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998
1999 /* Get the typenr specific for this buffer and convert it to
2000 * the global typenumber, as used for the sign name. */
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002001 localTypeNum = strtol(cp, &cp, 10);
2002 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 typeNum = mapsigntype(buf, localTypeNum);
2004
2005 pos = get_off_or_lnum(buf->bufp, &args);
2006
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002007 cp = (char *)args;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002008 ignored = (int)strtol(cp, &cp, 10);
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002009 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010# ifdef NBDEBUG
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002011 if (ignored != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002013 nbdebug((" partial line annotation -- Not Yet Implemented!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014 }
2015# endif
2016 if (serNum >= GUARDEDOFFSET)
2017 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002018 nbdebug((" too many annotations! ignoring...\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 return FAIL;
2020 }
2021 if (pos)
2022 {
Bram Moolenaarec906222009-02-21 21:14:00 +00002023 coloncmd(":sign place %d line=%ld name=%d buffer=%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 serNum, pos->lnum, typeNum, buf->bufp->b_fnum);
2025 if (typeNum == curPCtype)
2026 coloncmd(":sign jump %d buffer=%d", serNum,
2027 buf->bufp->b_fnum);
2028 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002029#endif
2030/* =====================================================================*/
2031 }
2032 else if (streq((char *)cmd, "removeAnno"))
2033 {
2034#ifdef FEAT_SIGNS
2035 int serNum;
2036
2037 if (buf == NULL || buf->bufp == NULL)
2038 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002039 nbdebug((" invalid buffer identifier in removeAnno\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 return FAIL;
2041 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002042 do_update = 1;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002043 cp = (char *)args;
2044 serNum = strtol(cp, &cp, 10);
2045 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 coloncmd(":sign unplace %d buffer=%d",
2047 serNum, buf->bufp->b_fnum);
2048 redraw_buf_later(buf->bufp, NOT_VALID);
2049#endif
2050/* =====================================================================*/
2051 }
2052 else if (streq((char *)cmd, "moveAnnoToFront"))
2053 {
2054#ifdef FEAT_SIGNS
Bram Moolenaarf2330482008-06-24 20:19:36 +00002055 nbdebug((" moveAnnoToFront: Not Yet Implemented!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056#endif
2057/* =====================================================================*/
2058 }
2059 else if (streq((char *)cmd, "guard") || streq((char *)cmd, "unguard"))
2060 {
2061 int len;
2062 pos_T first;
2063 pos_T last;
2064 pos_T *pos;
2065 int un = (cmd[0] == 'u');
2066 static int guardId = GUARDEDOFFSET;
2067
2068 if (skip >= SKIP_STOP)
2069 {
2070 nbdebug((" Skipping %s command\n", (char *) cmd));
2071 return OK;
2072 }
2073
2074 nb_init_graphics();
2075
2076 if (buf == NULL || buf->bufp == NULL)
2077 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002078 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 return FAIL;
2080 }
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002081 nb_set_curbuf(buf->bufp);
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002082 cp = (char *)args;
2083 off = strtol(cp, &cp, 10);
2084 len = strtol(cp, NULL, 10);
2085 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 pos = off2pos(buf->bufp, off);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002087 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 if (!pos)
2089 nbdebug((" no such start pos in %s, %ld\n", cmd, off));
2090 else
2091 {
2092 first = *pos;
2093 pos = off2pos(buf->bufp, off + len - 1);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002094 if (pos != NULL && pos->col == 0)
2095 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 /*
2097 * In Java Swing the offset is a position between 2
2098 * characters. If col == 0 then we really want the
2099 * previous line as the end.
2100 */
2101 pos = off2pos(buf->bufp, off + len - 2);
2102 }
2103 if (!pos)
2104 nbdebug((" no such end pos in %s, %ld\n",
2105 cmd, off + len - 1));
2106 else
2107 {
2108 long lnum;
2109 last = *pos;
2110 /* set highlight for region */
2111 nbdebug((" %sGUARD %ld,%d to %ld,%d\n", (un) ? "UN" : "",
2112 first.lnum, first.col,
2113 last.lnum, last.col));
2114#ifdef FEAT_SIGNS
2115 for (lnum = first.lnum; lnum <= last.lnum; lnum++)
2116 {
2117 if (un)
2118 {
2119 /* never used */
2120 }
2121 else
2122 {
2123 if (buf_findsigntype_id(buf->bufp, lnum,
2124 GUARDED) == 0)
2125 {
2126 coloncmd(
Bram Moolenaarec906222009-02-21 21:14:00 +00002127 ":sign place %d line=%ld name=%d buffer=%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 guardId++, lnum, GUARDED,
2129 buf->bufp->b_fnum);
2130 }
2131 }
2132 }
2133#endif
2134 redraw_buf_later(buf->bufp, NOT_VALID);
2135 }
2136 }
2137/* =====================================================================*/
2138 }
2139 else if (streq((char *)cmd, "startAtomic"))
2140 {
2141 inAtomic = 1;
2142/* =====================================================================*/
2143 }
2144 else if (streq((char *)cmd, "endAtomic"))
2145 {
2146 inAtomic = 0;
2147 if (needupdate)
2148 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002149 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 needupdate = 0;
2151 }
2152/* =====================================================================*/
2153 }
2154 else if (streq((char *)cmd, "save"))
2155 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002156 /*
2157 * NOTE - This command is obsolete wrt NetBeans. Its left in
2158 * only for historical reasons.
2159 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 if (buf == NULL || buf->bufp == NULL)
2161 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002162 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 return FAIL;
2164 }
2165
2166 /* the following is taken from ex_cmds.c (do_wqall function) */
2167 if (bufIsChanged(buf->bufp))
2168 {
2169 /* Only write if the buffer can be written. */
2170 if (p_write
2171 && !buf->bufp->b_p_ro
2172 && buf->bufp->b_ffname != NULL
2173#ifdef FEAT_QUICKFIX
2174 && !bt_dontwrite(buf->bufp)
2175#endif
2176 )
2177 {
2178 buf_write_all(buf->bufp, FALSE);
2179#ifdef FEAT_AUTOCMD
2180 /* an autocommand may have deleted the buffer */
2181 if (!buf_valid(buf->bufp))
2182 buf->bufp = NULL;
2183#endif
2184 }
2185 }
Bram Moolenaarf2330482008-06-24 20:19:36 +00002186 else
2187 {
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002188 nbdebug((" Buffer has no changes!\n"));
Bram Moolenaarf2330482008-06-24 20:19:36 +00002189 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190/* =====================================================================*/
2191 }
2192 else if (streq((char *)cmd, "netbeansBuffer"))
2193 {
2194 if (buf == NULL || buf->bufp == NULL)
2195 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002196 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 return FAIL;
2198 }
2199 if (*args == 'T')
2200 {
2201 buf->bufp->b_netbeans_file = TRUE;
2202 buf->bufp->b_was_netbeans_file = TRUE;
2203 }
2204 else
2205 buf->bufp->b_netbeans_file = FALSE;
2206/* =====================================================================*/
2207 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00002208 else if (streq((char *)cmd, "specialKeys"))
2209 {
2210 special_keys(args);
2211/* =====================================================================*/
2212 }
2213 else if (streq((char *)cmd, "actionMenuItem"))
2214 {
2215 /* not used yet */
2216/* =====================================================================*/
2217 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 else if (streq((char *)cmd, "version"))
2219 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002220 /* not used yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 }
Bram Moolenaarf2330482008-06-24 20:19:36 +00002222 else
2223 {
2224 nbdebug(("Unrecognised command: %s\n", cmd));
2225 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 /*
2227 * Unrecognized command is ignored.
2228 */
2229 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002230 if (inAtomic && do_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 {
2232 needupdate = 1;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002233 do_update = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 }
2235
Bram Moolenaar009b2592004-10-24 19:18:58 +00002236 /*
2237 * Is this needed? I moved the netbeans_Xt_connect() later during startup
2238 * and it may no longer be necessary. If its not needed then needupdate
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002239 * and do_update can also be removed.
Bram Moolenaar009b2592004-10-24 19:18:58 +00002240 */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002241 if (buf != NULL && buf->initDone && do_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242 {
2243 update_screen(NOT_VALID);
2244 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02002245 cursor_on();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 out_flush();
Bram Moolenaar67c53842010-05-22 18:28:27 +02002247#ifdef FEAT_GUI
Bram Moolenaard54a6882010-08-09 22:49:00 +02002248 if (gui.in_use)
2249 {
2250 gui_update_cursor(TRUE, FALSE);
2251 gui_mch_flush();
2252 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02002253#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 /* Quit a hit-return or more prompt. */
2255 if (State == HITRETURN || State == ASKMORE)
2256 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257#ifdef FEAT_GUI_GTK
Bram Moolenaard54a6882010-08-09 22:49:00 +02002258 if (gui.in_use && gtk_main_level() > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259 gtk_main_quit();
2260#endif
2261 }
2262 }
2263
2264 return retval;
2265}
2266
2267
2268/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002269 * If "buf" is not the current buffer try changing to a window that edits this
2270 * buffer. If there is no such window then close the current buffer and set
2271 * the current buffer as "buf".
2272 */
2273 static void
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00002274nb_set_curbuf(buf_T *buf)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002275{
Bram Moolenaar404c9422015-03-14 15:35:52 +01002276 if (curbuf != buf) {
2277 if (buf_jump_open_win(buf) != NULL)
2278 return;
2279# ifdef FEAT_WINDOWS
2280 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf) != NULL)
2281 return;
2282# endif
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002283 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaar404c9422015-03-14 15:35:52 +01002284 }
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002285}
2286
2287/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 * Process a vim colon command.
2289 */
2290 static void
2291coloncmd(char *cmd, ...)
2292{
2293 char buf[1024];
2294 va_list ap;
2295
2296 va_start(ap, cmd);
Bram Moolenaar0dc79e82009-06-24 14:50:12 +00002297 vim_vsnprintf(buf, sizeof(buf), cmd, ap, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 va_end(ap);
2299
2300 nbdebug((" COLONCMD %s\n", buf));
2301
2302/* ALT_INPUT_LOCK_ON; */
2303 do_cmdline((char_u *)buf, NULL, NULL, DOCMD_NOWAIT | DOCMD_KEYTYPED);
2304/* ALT_INPUT_LOCK_OFF; */
2305
2306 setcursor(); /* restore the cursor position */
2307 out_flush(); /* make sure output has been written */
2308
Bram Moolenaar67c53842010-05-22 18:28:27 +02002309#ifdef FEAT_GUI
Bram Moolenaard54a6882010-08-09 22:49:00 +02002310 if (gui.in_use)
2311 {
2312 gui_update_cursor(TRUE, FALSE);
2313 gui_mch_flush();
2314 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02002315#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316}
2317
2318
2319/*
Bram Moolenaar009b2592004-10-24 19:18:58 +00002320 * Parse the specialKeys argument and issue the appropriate map commands.
2321 */
2322 static void
2323special_keys(char_u *args)
2324{
2325 char *save_str = nb_unquote(args, NULL);
2326 char *tok = strtok(save_str, " ");
2327 char *sep;
2328 char keybuf[64];
2329 char cmdbuf[256];
2330
2331 while (tok != NULL)
2332 {
2333 int i = 0;
2334
2335 if ((sep = strchr(tok, '-')) != NULL)
2336 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002337 *sep = NUL;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002338 while (*tok)
2339 {
2340 switch (*tok)
2341 {
2342 case 'A':
2343 case 'M':
2344 case 'C':
2345 case 'S':
2346 keybuf[i++] = *tok;
2347 keybuf[i++] = '-';
2348 break;
2349 }
2350 tok++;
2351 }
2352 tok++;
2353 }
2354
2355 strcpy(&keybuf[i], tok);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002356 vim_snprintf(cmdbuf, sizeof(cmdbuf),
2357 "<silent><%s> :nbkey %s<CR>", keybuf, keybuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002358 do_map(0, (char_u *)cmdbuf, NORMAL, FALSE);
2359 tok = strtok(NULL, " ");
2360 }
2361 vim_free(save_str);
2362}
2363
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002364 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002365ex_nbclose(exarg_T *eap UNUSED)
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002366{
2367 netbeans_close();
2368}
Bram Moolenaar009b2592004-10-24 19:18:58 +00002369
2370 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002371ex_nbkey(exarg_T *eap)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002372{
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002373 (void)netbeans_keystring(eap->arg);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002374}
2375
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002376 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002377ex_nbstart(
2378 exarg_T *eap)
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002379{
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002380#ifdef FEAT_GUI
2381# if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \
Bram Moolenaar7ad7d012010-11-16 15:49:02 +01002382 && !defined(FEAT_GUI_W32)
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002383 if (gui.in_use)
2384 {
Bram Moolenaar7ad7d012010-11-16 15:49:02 +01002385 EMSG(_("E838: netbeans is not supported with this GUI"));
2386 return;
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002387 }
2388# endif
2389#endif
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002390 netbeans_open((char *)eap->arg, FALSE);
2391}
Bram Moolenaar009b2592004-10-24 19:18:58 +00002392
2393/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 * Initialize highlights and signs for use by netbeans (mostly obsolete)
2395 */
2396 static void
2397nb_init_graphics(void)
2398{
2399 static int did_init = FALSE;
2400
2401 if (!did_init)
2402 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002403 coloncmd(":highlight NBGuarded guibg=Cyan guifg=Black"
2404 " ctermbg=LightCyan ctermfg=Black");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 coloncmd(":sign define %d linehl=NBGuarded", GUARDED);
2406
2407 did_init = TRUE;
2408 }
2409}
2410
2411/*
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002412 * Convert key to netbeans name. This uses the global "mod_mask".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 */
2414 static void
2415netbeans_keyname(int key, char *buf)
2416{
2417 char *name = 0;
2418 char namebuf[2];
2419 int ctrl = 0;
2420 int shift = 0;
2421 int alt = 0;
2422
2423 if (mod_mask & MOD_MASK_CTRL)
2424 ctrl = 1;
2425 if (mod_mask & MOD_MASK_SHIFT)
2426 shift = 1;
2427 if (mod_mask & MOD_MASK_ALT)
2428 alt = 1;
2429
2430
2431 switch (key)
2432 {
2433 case K_F1: name = "F1"; break;
2434 case K_S_F1: name = "F1"; shift = 1; break;
2435 case K_F2: name = "F2"; break;
2436 case K_S_F2: name = "F2"; shift = 1; break;
2437 case K_F3: name = "F3"; break;
2438 case K_S_F3: name = "F3"; shift = 1; break;
2439 case K_F4: name = "F4"; break;
2440 case K_S_F4: name = "F4"; shift = 1; break;
2441 case K_F5: name = "F5"; break;
2442 case K_S_F5: name = "F5"; shift = 1; break;
2443 case K_F6: name = "F6"; break;
2444 case K_S_F6: name = "F6"; shift = 1; break;
2445 case K_F7: name = "F7"; break;
2446 case K_S_F7: name = "F7"; shift = 1; break;
2447 case K_F8: name = "F8"; break;
2448 case K_S_F8: name = "F8"; shift = 1; break;
2449 case K_F9: name = "F9"; break;
2450 case K_S_F9: name = "F9"; shift = 1; break;
2451 case K_F10: name = "F10"; break;
2452 case K_S_F10: name = "F10"; shift = 1; break;
2453 case K_F11: name = "F11"; break;
2454 case K_S_F11: name = "F11"; shift = 1; break;
2455 case K_F12: name = "F12"; break;
2456 case K_S_F12: name = "F12"; shift = 1; break;
2457 default:
2458 if (key >= ' ' && key <= '~')
2459 {
2460 /* Allow ASCII characters. */
2461 name = namebuf;
2462 namebuf[0] = key;
2463 namebuf[1] = NUL;
2464 }
2465 else
2466 name = "X";
2467 break;
2468 }
2469
2470 buf[0] = '\0';
2471 if (ctrl)
2472 strcat(buf, "C");
2473 if (shift)
2474 strcat(buf, "S");
2475 if (alt)
2476 strcat(buf, "M"); /* META */
2477 if (ctrl || shift || alt)
2478 strcat(buf, "-");
2479 strcat(buf, name);
2480}
2481
Bram Moolenaar67c53842010-05-22 18:28:27 +02002482#if defined(FEAT_BEVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483/*
2484 * Function to be called for balloon evaluation. Grabs the text under the
2485 * cursor and sends it to the debugger for evaluation. The debugger should
2486 * respond with a showBalloon command when there is a useful result.
2487 */
Bram Moolenaard62bec82005-03-07 22:56:57 +00002488 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489netbeans_beval_cb(
2490 BalloonEval *beval,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002491 int state UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492{
Bram Moolenaard62bec82005-03-07 22:56:57 +00002493 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494 char_u *text;
Bram Moolenaard62bec82005-03-07 22:56:57 +00002495 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496 int col;
Bram Moolenaard9462e32011-04-11 21:35:11 +02002497 char *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498 char_u *p;
2499
2500 /* Don't do anything when 'ballooneval' is off, messages scrolled the
2501 * windows up or we have no connection. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002502 if (!p_beval || msg_scrolled > 0 || !NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 return;
2504
Bram Moolenaard62bec82005-03-07 22:56:57 +00002505 if (get_beval_info(beval, TRUE, &wp, &lnum, &text, &col) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506 {
2507 /* Send debugger request. Only when the text is of reasonable
2508 * length. */
2509 if (text != NULL && text[0] != NUL && STRLEN(text) < MAXPATHL)
2510 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002511 buf = (char *)alloc(MAXPATHL * 2 + 25);
2512 if (buf != NULL)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002513 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002514 p = nb_quote(text);
2515 if (p != NULL)
2516 {
2517 vim_snprintf(buf, MAXPATHL * 2 + 25,
2518 "0:balloonText=%d \"%s\"\n", r_cmdno, p);
2519 vim_free(p);
2520 }
2521 nbdebug(("EVT: %s", buf));
2522 nb_send(buf, "netbeans_beval_cb");
2523 vim_free(buf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002524 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525 }
2526 vim_free(text);
2527 }
2528}
2529#endif
2530
2531/*
Bram Moolenaare0874f82016-01-24 20:36:41 +01002532 * Return TRUE when the netbeans connection is active.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002533 */
2534 int
2535netbeans_active(void)
2536{
2537 return NETBEANS_OPEN;
2538}
2539
Bram Moolenaar67c53842010-05-22 18:28:27 +02002540/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 * Tell netbeans that the window was opened, ready for commands.
2542 */
2543 void
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002544netbeans_open(char *params, int doabort)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545{
2546 char *cmd = "0:startupDone=0\n";
2547
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002548 if (NETBEANS_OPEN)
2549 {
2550 EMSG(_("E511: netbeans already connected"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551 return;
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002552 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002554 if (netbeans_connect(params, doabort) != OK)
Bram Moolenaar67c53842010-05-22 18:28:27 +02002555 return;
Bram Moolenaard62bec82005-03-07 22:56:57 +00002556
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557 nbdebug(("EVT: %s", cmd));
2558 nb_send(cmd, "netbeans_startup_done");
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002559
2560 /* update the screen after having added the gutter */
2561 changed_window_setting();
2562 update_screen(CLEAR);
2563 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02002564 cursor_on();
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002565 out_flush();
2566#ifdef FEAT_GUI
Bram Moolenaard54a6882010-08-09 22:49:00 +02002567 if (gui.in_use)
2568 {
2569 gui_update_cursor(TRUE, FALSE);
2570 gui_mch_flush();
2571 }
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002572#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573}
2574
Bram Moolenaar009b2592004-10-24 19:18:58 +00002575/*
2576 * Tell netbeans that we're exiting. This should be called right
2577 * before calling exit.
2578 */
2579 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002580netbeans_send_disconnect(void)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002581{
2582 char buf[128];
2583
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002584 if (NETBEANS_OPEN)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002585 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002586 sprintf(buf, "0:disconnect=%d\n", r_cmdno);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002587 nbdebug(("EVT: %s", buf));
2588 nb_send(buf, "netbeans_disconnect");
2589 }
2590}
2591
Bram Moolenaar3266c852016-04-30 18:07:05 +02002592#if defined(FEAT_EVAL) || defined(PROTO)
2593 int
2594set_ref_in_nb_channel(int copyID)
2595{
2596 int abort = FALSE;
2597 typval_T tv;
2598
2599 if (nb_channel != NULL)
2600 {
2601 tv.v_type = VAR_CHANNEL;
2602 tv.vval.v_channel = nb_channel;
2603 abort = set_ref_in_item(&tv, copyID, NULL, NULL);
2604 }
2605 return abort;
2606}
2607#endif
2608
Bram Moolenaar173c9852010-09-29 17:27:01 +02002609#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_W32) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610/*
2611 * Tell netbeans that the window was moved or resized.
2612 */
2613 void
2614netbeans_frame_moved(int new_x, int new_y)
2615{
2616 char buf[128];
2617
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002618 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 return;
2620
2621 sprintf(buf, "0:geometry=%d %d %d %d %d\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00002622 r_cmdno, (int)Columns, (int)Rows, new_x, new_y);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002623 /*nbdebug(("EVT: %s", buf)); happens too many times during a move */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624 nb_send(buf, "netbeans_frame_moved");
2625}
2626#endif
2627
2628/*
Bram Moolenaar009b2592004-10-24 19:18:58 +00002629 * Tell netbeans the user opened or activated a file.
2630 */
2631 void
2632netbeans_file_activated(buf_T *bufp)
2633{
2634 int bufno = nb_getbufno(bufp);
2635 nbbuf_T *bp = nb_get_buf(bufno);
2636 char buffer[2*MAXPATHL];
2637 char_u *q;
2638
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002639 if (!NETBEANS_OPEN || !bufp->b_netbeans_file || dosetvisible)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002640 return;
2641
2642 q = nb_quote(bufp->b_ffname);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002643 if (q == NULL || bp == NULL)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002644 return;
2645
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002646 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n",
Bram Moolenaar009b2592004-10-24 19:18:58 +00002647 bufno,
2648 bufno,
2649 (char *)q,
2650 "T", /* open in NetBeans */
2651 "F"); /* modified */
2652
2653 vim_free(q);
2654 nbdebug(("EVT: %s", buffer));
2655
2656 nb_send(buffer, "netbeans_file_opened");
2657}
2658
2659/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660 * Tell netbeans the user opened a file.
2661 */
2662 void
Bram Moolenaar009b2592004-10-24 19:18:58 +00002663netbeans_file_opened(buf_T *bufp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664{
Bram Moolenaar009b2592004-10-24 19:18:58 +00002665 int bufno = nb_getbufno(bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 char buffer[2*MAXPATHL];
2667 char_u *q;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002668 nbbuf_T *bp = nb_get_buf(nb_getbufno(bufp));
2669 int bnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002671 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 return;
2673
Bram Moolenaar009b2592004-10-24 19:18:58 +00002674 q = nb_quote(bufp->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675 if (q == NULL)
2676 return;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002677 if (bp != NULL)
2678 bnum = bufno;
2679 else
2680 bnum = 0;
2681
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002682 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n",
Bram Moolenaar009b2592004-10-24 19:18:58 +00002683 bnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684 0,
2685 (char *)q,
2686 "T", /* open in NetBeans */
2687 "F"); /* modified */
2688
2689 vim_free(q);
2690 nbdebug(("EVT: %s", buffer));
2691
2692 nb_send(buffer, "netbeans_file_opened");
Bram Moolenaar009b2592004-10-24 19:18:58 +00002693 if (p_acd && vim_chdirfile(bufp->b_ffname) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694 shorten_fnames(TRUE);
2695}
2696
2697/*
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002698 * Tell netbeans that a file was deleted or wiped out.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699 */
2700 void
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002701netbeans_file_killed(buf_T *bufp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702{
2703 int bufno = nb_getbufno(bufp);
2704 nbbuf_T *nbbuf = nb_get_buf(bufno);
2705 char buffer[2*MAXPATHL];
2706
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002707 if (!NETBEANS_OPEN || bufno == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 return;
2709
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002710 nbdebug(("netbeans_file_killed:\n"));
2711 nbdebug((" Killing bufno: %d", bufno));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712
Bram Moolenaar89d40322006-08-29 15:30:07 +00002713 sprintf(buffer, "%d:killed=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714
2715 nbdebug(("EVT: %s", buffer));
2716
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002717 nb_send(buffer, "netbeans_file_killed");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718
2719 if (nbbuf != NULL)
2720 nbbuf->bufp = NULL;
2721}
2722
2723/*
2724 * Get a pointer to the Netbeans buffer for Vim buffer "bufp".
2725 * Return NULL if there is no such buffer or changes are not to be reported.
2726 * Otherwise store the buffer number in "*bufnop".
2727 */
2728 static nbbuf_T *
2729nb_bufp2nbbuf_fire(buf_T *bufp, int *bufnop)
2730{
2731 int bufno;
2732 nbbuf_T *nbbuf;
2733
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002734 if (!NETBEANS_OPEN || !netbeansFireChanges)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735 return NULL; /* changes are not reported at all */
2736
2737 bufno = nb_getbufno(bufp);
2738 if (bufno <= 0)
2739 return NULL; /* file is not known to NetBeans */
2740
2741 nbbuf = nb_get_buf(bufno);
2742 if (nbbuf != NULL && !nbbuf->fireChanges)
2743 return NULL; /* changes in this buffer are not reported */
2744
2745 *bufnop = bufno;
2746 return nbbuf;
2747}
2748
2749/*
2750 * Tell netbeans the user inserted some text.
2751 */
2752 void
2753netbeans_inserted(
2754 buf_T *bufp,
2755 linenr_T linenr,
2756 colnr_T col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 char_u *txt,
2758 int newlen)
2759{
2760 char_u *buf;
2761 int bufno;
2762 nbbuf_T *nbbuf;
2763 pos_T pos;
2764 long off;
2765 char_u *p;
2766 char_u *newtxt;
2767
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002768 if (!NETBEANS_OPEN)
2769 return;
2770
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2772 if (nbbuf == NULL)
2773 return;
2774
Bram Moolenaar009b2592004-10-24 19:18:58 +00002775 /* Don't mark as modified for initial read */
2776 if (nbbuf->insertDone)
2777 nbbuf->modified = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778
2779 pos.lnum = linenr;
2780 pos.col = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781 off = pos2off(bufp, &pos);
2782
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 /* send the "insert" EVT */
2784 newtxt = alloc(newlen + 1);
Bram Moolenaarb6356332005-07-18 21:40:44 +00002785 vim_strncpy(newtxt, txt, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786 p = nb_quote(newtxt);
2787 if (p != NULL)
2788 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002789 buf = alloc(128 + 2*newlen);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002790 sprintf((char *)buf, "%d:insert=%d %ld \"%s\"\n",
2791 bufno, r_cmdno, off, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 nbdebug(("EVT: %s", buf));
2793 nb_send((char *)buf, "netbeans_inserted");
Bram Moolenaar009b2592004-10-24 19:18:58 +00002794 vim_free(p);
2795 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 vim_free(newtxt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798}
2799
2800/*
2801 * Tell netbeans some bytes have been removed.
2802 */
2803 void
2804netbeans_removed(
2805 buf_T *bufp,
2806 linenr_T linenr,
2807 colnr_T col,
2808 long len)
2809{
2810 char_u buf[128];
2811 int bufno;
2812 nbbuf_T *nbbuf;
2813 pos_T pos;
2814 long off;
2815
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002816 if (!NETBEANS_OPEN)
2817 return;
2818
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2820 if (nbbuf == NULL)
2821 return;
2822
2823 if (len < 0)
2824 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002825 nbdebug(("Negative len %ld in netbeans_removed()!\n", len));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826 return;
2827 }
2828
2829 nbbuf->modified = 1;
2830
2831 pos.lnum = linenr;
2832 pos.col = col;
2833
2834 off = pos2off(bufp, &pos);
2835
Bram Moolenaar89d40322006-08-29 15:30:07 +00002836 sprintf((char *)buf, "%d:remove=%d %ld %ld\n", bufno, r_cmdno, off, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 nbdebug(("EVT: %s", buf));
2838 nb_send((char *)buf, "netbeans_removed");
2839}
2840
2841/*
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01002842 * Send netbeans an unmodified command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002844 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002845netbeans_unmodified(buf_T *bufp UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846{
Bram Moolenaar09092152010-08-08 16:38:42 +02002847 /* This is a no-op, because NetBeans considers a buffer modified
Bram Moolenaar071d4272004-06-13 20:20:40 +00002848 * even when all changes have been undone. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849}
2850
2851/*
2852 * Send a button release event back to netbeans. Its up to netbeans
2853 * to decide what to do (if anything) with this event.
2854 */
2855 void
2856netbeans_button_release(int button)
2857{
2858 char buf[128];
2859 int bufno;
2860
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002861 if (!NETBEANS_OPEN)
2862 return;
2863
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864 bufno = nb_getbufno(curbuf);
2865
2866 if (bufno >= 0 && curwin != NULL && curwin->w_buffer == curbuf)
2867 {
Bram Moolenaar64486672010-05-16 15:46:46 +02002868 int col = mouse_col - W_WINCOL(curwin)
Bram Moolenaar67c53842010-05-22 18:28:27 +02002869 - ((curwin->w_p_nu || curwin->w_p_rnu) ? 9 : 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 long off = pos2off(curbuf, &curwin->w_cursor);
2871
2872 /* sync the cursor position */
Bram Moolenaar89d40322006-08-29 15:30:07 +00002873 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 nbdebug(("EVT: %s", buf));
2875 nb_send(buf, "netbeans_button_release[newDotAndMark]");
2876
Bram Moolenaar89d40322006-08-29 15:30:07 +00002877 sprintf(buf, "%d:buttonRelease=%d %d %ld %d\n", bufno, r_cmdno,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878 button, (long)curwin->w_cursor.lnum, col);
2879 nbdebug(("EVT: %s", buf));
2880 nb_send(buf, "netbeans_button_release");
2881 }
2882}
2883
2884
2885/*
Bram Moolenaar143c38c2007-05-10 16:41:10 +00002886 * Send a keypress event back to netbeans. This usually simulates some
Bram Moolenaar009b2592004-10-24 19:18:58 +00002887 * kind of function key press. This function operates on a key code.
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002888 * Return TRUE when the key was sent, FALSE when the command has been
2889 * postponed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890 */
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002891 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892netbeans_keycommand(int key)
2893{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894 char keyName[60];
Bram Moolenaar009b2592004-10-24 19:18:58 +00002895
2896 netbeans_keyname(key, keyName);
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002897 return netbeans_keystring((char_u *)keyName);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002898}
2899
2900
2901/*
Bram Moolenaar143c38c2007-05-10 16:41:10 +00002902 * Send a keypress event back to netbeans. This usually simulates some
Bram Moolenaar009b2592004-10-24 19:18:58 +00002903 * kind of function key press. This function operates on a key string.
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002904 * Return TRUE when the key was sent, FALSE when the command has been
2905 * postponed.
Bram Moolenaar009b2592004-10-24 19:18:58 +00002906 */
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002907 static int
2908netbeans_keystring(char_u *keyName)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002909{
2910 char buf[2*MAXPATHL];
2911 int bufno = nb_getbufno(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912 long off;
2913 char_u *q;
2914
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002915 if (!NETBEANS_OPEN)
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002916 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 if (bufno == -1)
2919 {
2920 nbdebug(("got keycommand for non-NetBeans buffer, opening...\n"));
2921 q = curbuf->b_ffname == NULL ? (char_u *)""
2922 : nb_quote(curbuf->b_ffname);
2923 if (q == NULL)
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002924 return TRUE;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002925 vim_snprintf(buf, sizeof(buf), "0:fileOpened=%d \"%s\" %s %s\n", 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926 q,
2927 "T", /* open in NetBeans */
2928 "F"); /* modified */
2929 if (curbuf->b_ffname != NULL)
2930 vim_free(q);
2931 nbdebug(("EVT: %s", buf));
2932 nb_send(buf, "netbeans_keycommand");
2933
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002934 postpone_keycommand(keyName);
2935 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936 }
2937
2938 /* sync the cursor position */
2939 off = pos2off(curbuf, &curwin->w_cursor);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002940 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 nbdebug(("EVT: %s", buf));
2942 nb_send(buf, "netbeans_keycommand");
2943
2944 /* To work on Win32 you must apply patch to ExtEditor module
2945 * from ExtEdCaret.java.diff - make EVT_newDotAndMark handler
2946 * more synchronous
2947 */
2948
2949 /* now send keyCommand event */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002950 vim_snprintf(buf, sizeof(buf), "%d:keyCommand=%d \"%s\"\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00002951 bufno, r_cmdno, keyName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952 nbdebug(("EVT: %s", buf));
2953 nb_send(buf, "netbeans_keycommand");
2954
2955 /* New: do both at once and include the lnum/col. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002956 vim_snprintf(buf, sizeof(buf), "%d:keyAtPos=%d \"%s\" %ld %ld/%ld\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00002957 bufno, r_cmdno, keyName,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 off, (long)curwin->w_cursor.lnum, (long)curwin->w_cursor.col);
2959 nbdebug(("EVT: %s", buf));
2960 nb_send(buf, "netbeans_keycommand");
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002961 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962}
2963
2964
2965/*
2966 * Send a save event to netbeans.
2967 */
2968 void
2969netbeans_save_buffer(buf_T *bufp)
2970{
2971 char_u buf[64];
2972 int bufno;
2973 nbbuf_T *nbbuf;
2974
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002975 if (!NETBEANS_OPEN)
2976 return;
2977
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2979 if (nbbuf == NULL)
2980 return;
2981
2982 nbbuf->modified = 0;
2983
Bram Moolenaar89d40322006-08-29 15:30:07 +00002984 sprintf((char *)buf, "%d:save=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985 nbdebug(("EVT: %s", buf));
2986 nb_send((char *)buf, "netbeans_save_buffer");
2987}
2988
2989
2990/*
2991 * Send remove command to netbeans (this command has been turned off).
2992 */
2993 void
2994netbeans_deleted_all_lines(buf_T *bufp)
2995{
2996 char_u buf[64];
2997 int bufno;
2998 nbbuf_T *nbbuf;
2999
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003000 if (!NETBEANS_OPEN)
3001 return;
3002
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
3004 if (nbbuf == NULL)
3005 return;
3006
Bram Moolenaar009b2592004-10-24 19:18:58 +00003007 /* Don't mark as modified for initial read */
3008 if (nbbuf->insertDone)
3009 nbbuf->modified = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010
Bram Moolenaar89d40322006-08-29 15:30:07 +00003011 sprintf((char *)buf, "%d:remove=%d 0 -1\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012 nbdebug(("EVT(suppressed): %s", buf));
3013/* nb_send(buf, "netbeans_deleted_all_lines"); */
3014}
3015
3016
3017/*
3018 * See if the lines are guarded. The top and bot parameters are from
3019 * u_savecommon(), these are the line above the change and the line below the
3020 * change.
3021 */
3022 int
3023netbeans_is_guarded(linenr_T top, linenr_T bot)
3024{
3025 signlist_T *p;
3026 int lnum;
3027
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003028 if (!NETBEANS_OPEN)
3029 return FALSE;
3030
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031 for (p = curbuf->b_signlist; p != NULL; p = p->next)
3032 if (p->id >= GUARDEDOFFSET)
3033 for (lnum = top + 1; lnum < bot; lnum++)
3034 if (lnum == p->lnum)
3035 return TRUE;
3036
3037 return FALSE;
3038}
3039
Bram Moolenaar173c9852010-09-29 17:27:01 +02003040#if defined(FEAT_GUI_X11) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041/*
3042 * We have multiple signs to draw at the same location. Draw the
3043 * multi-sign indicator instead. This is the Motif version.
3044 */
3045 void
3046netbeans_draw_multisign_indicator(int row)
3047{
3048 int i;
3049 int y;
3050 int x;
3051
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003052 if (!NETBEANS_OPEN)
3053 return;
3054
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055 x = 0;
3056 y = row * gui.char_height + 2;
3057
3058 for (i = 0; i < gui.char_height - 3; i++)
3059 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y++);
3060
3061 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+0, y);
3062 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3063 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+4, y++);
3064 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+1, y);
3065 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3066 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+3, y++);
3067 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3068}
Bram Moolenaar173c9852010-09-29 17:27:01 +02003069#endif /* FEAT_GUI_X11 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070
Bram Moolenaar64404472010-06-26 06:24:45 +02003071#if defined(FEAT_GUI_GTK) && !defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072/*
3073 * We have multiple signs to draw at the same location. Draw the
3074 * multi-sign indicator instead. This is the GTK/Gnome version.
3075 */
3076 void
3077netbeans_draw_multisign_indicator(int row)
3078{
3079 int i;
3080 int y;
3081 int x;
Bram Moolenaar98921892016-02-23 17:14:37 +01003082#if GTK_CHECK_VERSION(3,0,0)
3083 cairo_t *cr = NULL;
3084#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085 GdkDrawable *drawable = gui.drawarea->window;
Bram Moolenaar98921892016-02-23 17:14:37 +01003086#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003088 if (!NETBEANS_OPEN)
3089 return;
3090
Bram Moolenaar98921892016-02-23 17:14:37 +01003091#if GTK_CHECK_VERSION(3,0,0)
3092 cr = cairo_create(gui.surface);
3093 {
3094 GdkVisual *visual = NULL;
3095 guint32 r_mask, g_mask, b_mask;
3096 gint r_shift, g_shift, b_shift;
3097
3098 visual = gdk_window_get_visual(gtk_widget_get_window(gui.drawarea));
3099 if (visual != NULL)
3100 {
3101 gdk_visual_get_red_pixel_details(visual, &r_mask, &r_shift, NULL);
3102 gdk_visual_get_green_pixel_details(visual, &g_mask, &g_shift, NULL);
3103 gdk_visual_get_blue_pixel_details(visual, &b_mask, &b_shift, NULL);
3104
3105 cairo_set_source_rgb(cr,
3106 ((gui.fgcolor->red & r_mask) >> r_shift) / 255.0,
3107 ((gui.fgcolor->green & g_mask) >> g_shift) / 255.0,
3108 ((gui.fgcolor->blue & b_mask) >> b_shift) / 255.0);
3109 }
3110 }
3111#endif
3112
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113 x = 0;
3114 y = row * gui.char_height + 2;
3115
3116 for (i = 0; i < gui.char_height - 3; i++)
Bram Moolenaar98921892016-02-23 17:14:37 +01003117#if GTK_CHECK_VERSION(3,0,0)
3118 cairo_rectangle(cr, x+2, y++, 1, 1);
3119#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120 gdk_draw_point(drawable, gui.text_gc, x+2, y++);
Bram Moolenaar98921892016-02-23 17:14:37 +01003121#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122
Bram Moolenaar98921892016-02-23 17:14:37 +01003123#if GTK_CHECK_VERSION(3,0,0)
3124 cairo_rectangle(cr, x+0, y, 1, 1);
3125 cairo_rectangle(cr, x+2, y, 1, 1);
3126 cairo_rectangle(cr, x+4, y++, 1, 1);
3127 cairo_rectangle(cr, x+1, y, 1, 1);
3128 cairo_rectangle(cr, x+2, y, 1, 1);
3129 cairo_rectangle(cr, x+3, y++, 1, 1);
3130 cairo_rectangle(cr, x+2, y, 1, 1);
3131#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 gdk_draw_point(drawable, gui.text_gc, x+0, y);
3133 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3134 gdk_draw_point(drawable, gui.text_gc, x+4, y++);
3135 gdk_draw_point(drawable, gui.text_gc, x+1, y);
3136 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3137 gdk_draw_point(drawable, gui.text_gc, x+3, y++);
3138 gdk_draw_point(drawable, gui.text_gc, x+2, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003139#endif
3140
3141#if GTK_CHECK_VERSION(3,0,0)
3142 cairo_destroy(cr);
3143#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144}
3145#endif /* FEAT_GUI_GTK */
3146
3147/*
3148 * If the mouse is clicked in the gutter of a line with multiple
3149 * annotations, cycle through the set of signs.
3150 */
3151 void
3152netbeans_gutter_click(linenr_T lnum)
3153{
3154 signlist_T *p;
3155
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003156 if (!NETBEANS_OPEN)
3157 return;
3158
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159 for (p = curbuf->b_signlist; p != NULL; p = p->next)
3160 {
3161 if (p->lnum == lnum && p->next && p->next->lnum == lnum)
3162 {
3163 signlist_T *tail;
3164
3165 /* remove "p" from list, reinsert it at the tail of the sublist */
3166 if (p->prev)
3167 p->prev->next = p->next;
3168 else
3169 curbuf->b_signlist = p->next;
3170 p->next->prev = p->prev;
3171 /* now find end of sublist and insert p */
3172 for (tail = p->next;
3173 tail->next && tail->next->lnum == lnum
3174 && tail->next->id < GUARDEDOFFSET;
3175 tail = tail->next)
3176 ;
3177 /* tail now points to last entry with same lnum (except
3178 * that "guarded" annotations are always last) */
3179 p->next = tail->next;
3180 if (tail->next)
3181 tail->next->prev = p;
3182 p->prev = tail;
3183 tail->next = p;
3184 update_debug_sign(curbuf, lnum);
3185 break;
3186 }
3187 }
3188}
3189
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190/*
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003191 * Add a sign of the requested type at the requested location.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 *
3193 * Reverse engineering:
3194 * Apparently an annotation is defined the first time it is used in a buffer.
3195 * When the same annotation is used in two buffers, the second time we do not
3196 * need to define a new sign name but reuse the existing one. But since the
3197 * ID number used in the second buffer starts counting at one again, a mapping
3198 * is made from the ID specifically for the buffer to the global sign name
3199 * (which is a number).
3200 *
3201 * globalsignmap[] stores the signs that have been defined globally.
3202 * buf->signmapused[] maps buffer-local annotation IDs to an index in
3203 * globalsignmap[].
3204 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 static void
3206addsigntype(
3207 nbbuf_T *buf,
3208 int typeNum,
3209 char_u *typeName,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003210 char_u *tooltip UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003211 char_u *glyphFile,
Bram Moolenaar67c53842010-05-22 18:28:27 +02003212 char_u *fg,
3213 char_u *bg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215 int i, j;
Bram Moolenaar67c53842010-05-22 18:28:27 +02003216 int use_fg = (*fg && STRCMP(fg, "none") != 0);
3217 int use_bg = (*bg && STRCMP(bg, "none") != 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218
3219 for (i = 0; i < globalsignmapused; i++)
3220 if (STRCMP(typeName, globalsignmap[i]) == 0)
3221 break;
3222
3223 if (i == globalsignmapused) /* not found; add it to global map */
3224 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003225 nbdebug(("DEFINEANNOTYPE(%d,%s,%s,%s,%s,%s)\n",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226 typeNum, typeName, tooltip, glyphFile, fg, bg));
3227 if (use_fg || use_bg)
3228 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003229 char fgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1];
3230 char bgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1];
3231 char *ptr;
3232 int value;
3233
3234 value = strtol((char *)fg, &ptr, 10);
3235 if (ptr != (char *)fg)
3236 sprintf(fgbuf, "guifg=#%06x", value & 0xFFFFFF);
3237 else
3238 sprintf(fgbuf, "guifg=%s ctermfg=%s", fg, fg);
3239
3240 value = strtol((char *)bg, &ptr, 10);
3241 if (ptr != (char *)bg)
3242 sprintf(bgbuf, "guibg=#%06x", value & 0xFFFFFF);
3243 else
3244 sprintf(bgbuf, "guibg=%s ctermbg=%s", bg, bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245
3246 coloncmd(":highlight NB_%s %s %s", typeName, (use_fg) ? fgbuf : "",
3247 (use_bg) ? bgbuf : "");
3248 if (*glyphFile == NUL)
3249 /* no glyph, line highlighting only */
3250 coloncmd(":sign define %d linehl=NB_%s", i + 1, typeName);
3251 else if (vim_strsize(glyphFile) <= 2)
3252 /* one- or two-character glyph name, use as text glyph with
3253 * texthl */
3254 coloncmd(":sign define %d text=%s texthl=NB_%s", i + 1,
3255 glyphFile, typeName);
3256 else
3257 /* glyph, line highlighting */
3258 coloncmd(":sign define %d icon=%s linehl=NB_%s", i + 1,
3259 glyphFile, typeName);
3260 }
3261 else
3262 /* glyph, no line highlighting */
3263 coloncmd(":sign define %d icon=%s", i + 1, glyphFile);
3264
3265 if (STRCMP(typeName,"CurrentPC") == 0)
3266 curPCtype = typeNum;
3267
3268 if (globalsignmapused == globalsignmaplen)
3269 {
3270 if (globalsignmaplen == 0) /* first allocation */
3271 {
3272 globalsignmaplen = 20;
3273 globalsignmap = (char **)alloc_clear(globalsignmaplen*sizeof(char *));
3274 }
3275 else /* grow it */
3276 {
3277 int incr;
3278 int oldlen = globalsignmaplen;
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003279 char **t_globalsignmap = globalsignmap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280
3281 globalsignmaplen *= 2;
3282 incr = globalsignmaplen - oldlen;
3283 globalsignmap = (char **)vim_realloc(globalsignmap,
3284 globalsignmaplen * sizeof(char *));
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003285 if (globalsignmap == NULL)
3286 {
3287 vim_free(t_globalsignmap);
3288 globalsignmaplen = 0;
3289 return;
3290 }
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003291 vim_memset(globalsignmap + oldlen, 0, incr * sizeof(char *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292 }
3293 }
3294
3295 globalsignmap[i] = (char *)typeName;
3296 globalsignmapused = i + 1;
3297 }
3298
3299 /* check local map; should *not* be found! */
3300 for (j = 0; j < buf->signmapused; j++)
3301 if (buf->signmap[j] == i + 1)
3302 return;
3303
3304 /* add to local map */
3305 if (buf->signmapused == buf->signmaplen)
3306 {
3307 if (buf->signmaplen == 0) /* first allocation */
3308 {
3309 buf->signmaplen = 5;
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003310 buf->signmap = (int *)alloc_clear(buf->signmaplen * sizeof(int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 }
3312 else /* grow it */
3313 {
3314 int incr;
3315 int oldlen = buf->signmaplen;
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003316 int *t_signmap = buf->signmap;
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003317
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318 buf->signmaplen *= 2;
3319 incr = buf->signmaplen - oldlen;
3320 buf->signmap = (int *)vim_realloc(buf->signmap,
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003321 buf->signmaplen * sizeof(int));
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003322 if (buf->signmap == NULL)
3323 {
3324 vim_free(t_signmap);
3325 buf->signmaplen = 0;
3326 return;
3327 }
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003328 vim_memset(buf->signmap + oldlen, 0, incr * sizeof(int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329 }
3330 }
3331
3332 buf->signmap[buf->signmapused++] = i + 1;
3333
3334}
3335
3336
3337/*
3338 * See if we have the requested sign type in the buffer.
3339 */
3340 static int
3341mapsigntype(nbbuf_T *buf, int localsigntype)
3342{
3343 if (--localsigntype >= 0 && localsigntype < buf->signmapused)
3344 return buf->signmap[localsigntype];
3345
3346 return 0;
3347}
3348
3349
3350/*
3351 * Compute length of buffer, don't print anything.
3352 */
3353 static long
3354get_buf_size(buf_T *bufp)
3355{
3356 linenr_T lnum;
3357 long char_count = 0;
3358 int eol_size;
3359 long last_check = 100000L;
3360
3361 if (bufp->b_ml.ml_flags & ML_EMPTY)
3362 return 0;
3363 else
3364 {
3365 if (get_fileformat(bufp) == EOL_DOS)
3366 eol_size = 2;
3367 else
3368 eol_size = 1;
3369 for (lnum = 1; lnum <= bufp->b_ml.ml_line_count; ++lnum)
3370 {
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00003371 char_count += (long)STRLEN(ml_get_buf(bufp, lnum, FALSE))
3372 + eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373 /* Check for a CTRL-C every 100000 characters */
3374 if (char_count > last_check)
3375 {
3376 ui_breakcheck();
3377 if (got_int)
3378 return char_count;
3379 last_check = char_count + 100000L;
3380 }
3381 }
3382 /* Correction for when last line doesn't have an EOL. */
Bram Moolenaar34d72d42015-07-17 14:18:08 +02003383 if (!bufp->b_p_eol && (bufp->b_p_bin || !bufp->b_p_fixeol))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 char_count -= eol_size;
3385 }
3386
3387 return char_count;
3388}
3389
3390/*
3391 * Convert character offset to lnum,col
3392 */
3393 static pos_T *
3394off2pos(buf_T *buf, long offset)
3395{
3396 linenr_T lnum;
3397 static pos_T pos;
3398
3399 pos.lnum = 0;
3400 pos.col = 0;
3401#ifdef FEAT_VIRTUALEDIT
3402 pos.coladd = 0;
3403#endif
3404
3405 if (!(buf->b_ml.ml_flags & ML_EMPTY))
3406 {
3407 if ((lnum = ml_find_line_or_offset(buf, (linenr_T)0, &offset)) < 0)
3408 return NULL;
3409 pos.lnum = lnum;
3410 pos.col = offset;
3411 }
3412
3413 return &pos;
3414}
3415
3416/*
3417 * Convert an argument in the form "1234" to an offset and compute the
3418 * lnum/col from it. Convert an argument in the form "123/12" directly to a
3419 * lnum/col.
3420 * "argp" is advanced to after the argument.
3421 * Return a pointer to the position, NULL if something is wrong.
3422 */
3423 static pos_T *
3424get_off_or_lnum(buf_T *buf, char_u **argp)
3425{
3426 static pos_T mypos;
3427 long off;
3428
3429 off = strtol((char *)*argp, (char **)argp, 10);
3430 if (**argp == '/')
3431 {
3432 mypos.lnum = (linenr_T)off;
3433 ++*argp;
3434 mypos.col = strtol((char *)*argp, (char **)argp, 10);
3435#ifdef FEAT_VIRTUALEDIT
3436 mypos.coladd = 0;
3437#endif
3438 return &mypos;
3439 }
3440 return off2pos(buf, off);
3441}
3442
3443
3444/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003445 * Convert (lnum,col) to byte offset in the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446 */
3447 static long
3448pos2off(buf_T *buf, pos_T *pos)
3449{
3450 long offset = 0;
3451
3452 if (!(buf->b_ml.ml_flags & ML_EMPTY))
3453 {
3454 if ((offset = ml_find_line_or_offset(buf, pos->lnum, 0)) < 0)
3455 return 0;
3456 offset += pos->col;
3457 }
3458
3459 return offset;
3460}
3461
3462
Bram Moolenaar009b2592004-10-24 19:18:58 +00003463/*
3464 * This message is printed after NetBeans opens a new file. Its
3465 * similar to the message readfile() uses, but since NetBeans
3466 * doesn't normally call readfile, we do our own.
3467 */
3468 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003469print_read_msg(nbbuf_T *buf)
Bram Moolenaar009b2592004-10-24 19:18:58 +00003470{
3471 int lnum = buf->bufp->b_ml.ml_line_count;
Bram Moolenaar914703b2010-05-31 21:59:46 +02003472 off_t nchars = buf->bufp->b_orig_size;
Bram Moolenaar009b2592004-10-24 19:18:58 +00003473 char_u c;
3474
3475 msg_add_fname(buf->bufp, buf->bufp->b_ffname);
3476 c = FALSE;
3477
3478 if (buf->bufp->b_p_ro)
3479 {
3480 STRCAT(IObuff, shortmess(SHM_RO) ? _("[RO]") : _("[readonly]"));
3481 c = TRUE;
3482 }
3483 if (!buf->bufp->b_start_eol)
3484 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003485 STRCAT(IObuff, shortmess(SHM_LAST) ? _("[noeol]")
3486 : _("[Incomplete last line]"));
Bram Moolenaar009b2592004-10-24 19:18:58 +00003487 c = TRUE;
3488 }
3489 msg_add_lines(c, (long)lnum, nchars);
3490
3491 /* Now display it */
3492 vim_free(keep_msg);
3493 keep_msg = NULL;
3494 msg_scrolled_ign = TRUE;
3495 msg_trunc_attr(IObuff, FALSE, 0);
3496 msg_scrolled_ign = FALSE;
3497}
3498
3499
3500/*
Bram Moolenaar67c53842010-05-22 18:28:27 +02003501 * Print a message after NetBeans writes the file. This message should be
3502 * identical to the standard message a non-netbeans user would see when
3503 * writing a file.
Bram Moolenaar009b2592004-10-24 19:18:58 +00003504 */
3505 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003506print_save_msg(nbbuf_T *buf, off_t nchars)
Bram Moolenaar009b2592004-10-24 19:18:58 +00003507{
3508 char_u c;
3509 char_u *p;
3510
3511 if (nchars >= 0)
3512 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003513 /* put fname in IObuff with quotes */
3514 msg_add_fname(buf->bufp, buf->bufp->b_ffname);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003515 c = FALSE;
3516
3517 msg_add_lines(c, buf->bufp->b_ml.ml_line_count,
Bram Moolenaar914703b2010-05-31 21:59:46 +02003518 buf->bufp->b_orig_size);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003519
3520 vim_free(keep_msg);
3521 keep_msg = NULL;
3522 msg_scrolled_ign = TRUE;
3523 p = msg_trunc_attr(IObuff, FALSE, 0);
3524 if ((msg_scrolled && !need_wait_return) || !buf->initDone)
3525 {
3526 /* Need to repeat the message after redrawing when:
3527 * - When reading from stdin (the screen will be cleared next).
3528 * - When restart_edit is set (otherwise there will be a delay
3529 * before redrawing).
3530 * - When the screen was scrolled but there is no wait-return
3531 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003532 set_keep_msg(p, 0);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003533 }
3534 msg_scrolled_ign = FALSE;
3535 /* add_to_input_buf((char_u *)"\f", 1); */
3536 }
3537 else
3538 {
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003539 char_u msgbuf[IOSIZE];
Bram Moolenaar009b2592004-10-24 19:18:58 +00003540
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003541 vim_snprintf((char *)msgbuf, IOSIZE,
3542 _("E505: %s is read-only (add ! to override)"), IObuff);
3543 nbdebug((" %s\n", msgbuf));
3544 emsg(msgbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003545 }
3546}
3547
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548#endif /* defined(FEAT_NETBEANS_INTG) */