blob: c8084dfe64921cc387a01e5d2a7c9c2d03ff55d8 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010052static void special_keys(char_u *args);
Bram Moolenaar071d4272004-06-13 20:20:40 +000053
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010054static int getConnInfo(char *file, char **host, char **port, char **password);
Bram Moolenaar071d4272004-06-13 20:20:40 +000055
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010056static void nb_init_graphics(void);
57static void coloncmd(char *cmd, ...);
58static void nb_set_curbuf(buf_T *buf);
59static void nb_parse_cmd(char_u *);
60static int nb_do_cmd(int, char_u *, int, int, char_u *);
61static void nb_send(char *buf, char *fun);
62static void nb_free(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000063
Bram Moolenaar77073442016-02-13 23:23:53 +010064#define NETBEANS_OPEN (channel_can_write_to(nb_channel))
65static channel_T *nb_channel = NULL;
Bram Moolenaar67c53842010-05-22 18:28:27 +020066
Bram Moolenaar89d40322006-08-29 15:30:07 +000067static int r_cmdno; /* current command number for reply */
Bram Moolenaar009b2592004-10-24 19:18:58 +000068static int dosetvisible = FALSE;
69
Bram Moolenaar071d4272004-06-13 20:20:40 +000070/*
71 * Include the debugging code if wanted.
72 */
73#ifdef NBDEBUG
74# include "nbdebug.c"
75#endif
76
Bram Moolenaarb26e6322010-05-22 21:34:09 +020077static int needupdate = 0;
78static int inAtomic = 0;
79
Bram Moolenaar7ad7d012010-11-16 15:49:02 +010080/*
Bram Moolenaard04a0202016-01-26 23:30:18 +010081 * Callback invoked when the channel is closed.
Bram Moolenaar7ad7d012010-11-16 15:49:02 +010082 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000083 static void
Bram Moolenaard04a0202016-01-26 23:30:18 +010084nb_channel_closed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +000085{
Bram Moolenaar77073442016-02-13 23:23:53 +010086 nb_channel = NULL;
Bram Moolenaar7ad7d012010-11-16 15:49:02 +010087}
88
89/*
90 * Close the connection and cleanup.
Bram Moolenaard04a0202016-01-26 23:30:18 +010091 * May be called when the socket was closed earlier.
Bram Moolenaar7ad7d012010-11-16 15:49:02 +010092 */
93 static void
94netbeans_close(void)
95{
96 if (NETBEANS_OPEN)
97 {
98 netbeans_send_disconnect();
Bram Moolenaar77073442016-02-13 23:23:53 +010099 if (nb_channel != NULL)
Bram Moolenaar187db502016-02-27 14:44:26 +0100100 {
Bram Moolenaard04a0202016-01-26 23:30:18 +0100101 /* Close the socket and remove the input handlers. */
Bram Moolenaar8b374212016-02-24 20:43:06 +0100102 channel_close(nb_channel, TRUE);
Bram Moolenaar187db502016-02-27 14:44:26 +0100103 channel_clear(nb_channel);
104 }
Bram Moolenaar77073442016-02-13 23:23:53 +0100105 nb_channel = NULL;
Bram Moolenaar7ad7d012010-11-16 15:49:02 +0100106 }
107
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100108#ifdef FEAT_BEVAL_GUI
Bram Moolenaard62bec82005-03-07 22:56:57 +0000109 bevalServers &= ~BEVAL_NETBEANS;
Bram Moolenaar67c53842010-05-22 18:28:27 +0200110#endif
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200111
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200112 needupdate = 0;
113 inAtomic = 0;
114 nb_free();
115
116 /* remove all signs and update the screen after gutter removal */
117 coloncmd(":sign unplace *");
118 changed_window_setting();
119 update_screen(CLEAR);
120 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +0200121 cursor_on();
Bram Moolenaara338adc2018-01-31 20:51:47 +0100122 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124
125#define NB_DEF_HOST "localhost"
126#define NB_DEF_ADDR "3219"
127#define NB_DEF_PASS "changeme"
128
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200129 static int
Bram Moolenaarf506c5b2010-06-22 06:28:58 +0200130netbeans_connect(char *params, int doabort)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131{
Bram Moolenaard04a0202016-01-26 23:30:18 +0100132 int port;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133 char buf[32];
134 char *hostname = NULL;
135 char *address = NULL;
136 char *password = NULL;
137 char *fname;
138 char *arg = NULL;
139
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200140 if (*params == '=')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000141 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200142 /* "=fname": Read info from specified file. */
Bram Moolenaare0874f82016-01-24 20:36:41 +0100143 if (getConnInfo(params + 1, &hostname, &address, &password) == FAIL)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200144 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145 }
146 else
147 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200148 if (*params == ':')
149 /* ":<host>:<addr>:<password>": get info from argument */
150 arg = params + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151 if (arg == NULL && (fname = getenv("__NETBEANS_CONINFO")) != NULL)
152 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200153 /* "": get info from file specified in environment */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154 if (getConnInfo(fname, &hostname, &address, &password) == FAIL)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200155 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156 }
157 else
158 {
159 if (arg != NULL)
160 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200161 /* ":<host>:<addr>:<password>": get info from argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162 hostname = arg;
163 address = strchr(hostname, ':');
164 if (address != NULL)
165 {
166 *address++ = '\0';
167 password = strchr(address, ':');
168 if (password != NULL)
169 *password++ = '\0';
170 }
171 }
172
173 /* Get the missing values from the environment. */
174 if (hostname == NULL || *hostname == '\0')
175 hostname = getenv("__NETBEANS_HOST");
176 if (address == NULL)
177 address = getenv("__NETBEANS_SOCKET");
178 if (password == NULL)
179 password = getenv("__NETBEANS_VIM_PASSWORD");
180
181 /* Move values to allocated memory. */
182 if (hostname != NULL)
183 hostname = (char *)vim_strsave((char_u *)hostname);
184 if (address != NULL)
185 address = (char *)vim_strsave((char_u *)address);
186 if (password != NULL)
187 password = (char *)vim_strsave((char_u *)password);
188 }
189 }
190
191 /* Use the default when a value is missing. */
192 if (hostname == NULL || *hostname == '\0')
193 {
194 vim_free(hostname);
195 hostname = (char *)vim_strsave((char_u *)NB_DEF_HOST);
196 }
197 if (address == NULL || *address == '\0')
198 {
199 vim_free(address);
200 address = (char *)vim_strsave((char_u *)NB_DEF_ADDR);
201 }
202 if (password == NULL || *password == '\0')
203 {
204 vim_free(password);
205 password = (char *)vim_strsave((char_u *)NB_DEF_PASS);
206 }
Bram Moolenaard04a0202016-01-26 23:30:18 +0100207 if (hostname != NULL && address != NULL && password != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208 {
Bram Moolenaard04a0202016-01-26 23:30:18 +0100209 port = atoi(address);
Bram Moolenaar81661fb2016-02-18 22:23:34 +0100210 nb_channel = channel_open(hostname, port, 3000, nb_channel_closed);
Bram Moolenaar77073442016-02-13 23:23:53 +0100211 if (nb_channel != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 {
Bram Moolenaard04a0202016-01-26 23:30:18 +0100213 /* success */
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100214# ifdef FEAT_BEVAL_GUI
Bram Moolenaard04a0202016-01-26 23:30:18 +0100215 bevalServers |= BEVAL_NETBEANS;
216# endif
Bram Moolenaarc39125d2010-05-23 12:06:58 +0200217
Bram Moolenaard04a0202016-01-26 23:30:18 +0100218 /* success, login */
219 vim_snprintf(buf, sizeof(buf), "AUTH %s\n", password);
220 nb_send(buf, "netbeans_connect");
221
222 sprintf(buf, "0:version=0 \"%s\"\n", ExtEdProtocolVersion);
223 nb_send(buf, "externaleditor_version");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 }
225 }
226
Bram Moolenaar77073442016-02-13 23:23:53 +0100227 if (nb_channel == NULL && doabort)
Bram Moolenaard04a0202016-01-26 23:30:18 +0100228 getout(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230 vim_free(hostname);
231 vim_free(address);
232 vim_free(password);
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200233 return NETBEANS_OPEN ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234}
235
236/*
237 * Obtain the NetBeans hostname, port address and password from a file.
238 * Return the strings in allocated memory.
239 * Return FAIL if the file could not be read, OK otherwise (no matter what it
240 * contains).
241 */
242 static int
243getConnInfo(char *file, char **host, char **port, char **auth)
244{
245 FILE *fp;
246 char_u buf[BUFSIZ];
247 char_u *lp;
Bram Moolenaar309cbc32012-01-10 22:31:31 +0100248 char_u *nlp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +0200250 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251
252 /*
253 * For Unix only accept the file when it's not accessible by others.
254 * The open will then fail if we don't own the file.
255 */
256 if (mch_stat(file, &st) == 0 && (st.st_mode & 0077) != 0)
257 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000258 nbdebug(("Wrong access mode for NetBeans connection info file: \"%s\"\n",
259 file));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260 EMSG2(_("E668: Wrong access mode for NetBeans connection info file: \"%s\""),
261 file);
262 return FAIL;
263 }
264#endif
265
266 fp = mch_fopen(file, "r");
267 if (fp == NULL)
268 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000269 nbdebug(("Cannot open NetBeans connection info file\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270 PERROR("E660: Cannot open NetBeans connection info file");
271 return FAIL;
272 }
273
274 /* Read the file. There should be one of each parameter */
275 while ((lp = (char_u *)fgets((char *)buf, BUFSIZ, fp)) != NULL)
276 {
Bram Moolenaar309cbc32012-01-10 22:31:31 +0100277 if ((nlp = vim_strchr(lp, '\n')) != NULL)
278 *nlp = 0; /* strip off the trailing newline */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279
280 if (STRNCMP(lp, "host=", 5) == 0)
281 {
282 vim_free(*host);
283 *host = (char *)vim_strsave(&buf[5]);
284 }
285 else if (STRNCMP(lp, "port=", 5) == 0)
286 {
287 vim_free(*port);
288 *port = (char *)vim_strsave(&buf[5]);
289 }
290 else if (STRNCMP(lp, "auth=", 5) == 0)
291 {
292 vim_free(*auth);
293 *auth = (char *)vim_strsave(&buf[5]);
294 }
295 }
296 fclose(fp);
297
298 return OK;
299}
300
301
302struct keyqueue
303{
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100304 char_u *keystr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305 struct keyqueue *next;
306 struct keyqueue *prev;
307};
308
309typedef struct keyqueue keyQ_T;
310
311static keyQ_T keyHead; /* dummy node, header for circular queue */
312
313
314/*
315 * Queue up key commands sent from netbeans.
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100316 * We store the string, because it may depend on the global mod_mask and
317 * :nbkey doesn't have a key number.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318 */
319 static void
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100320postpone_keycommand(char_u *keystr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321{
322 keyQ_T *node;
323
324 node = (keyQ_T *)alloc(sizeof(keyQ_T));
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100325 if (node == NULL)
326 return; /* out of memory, drop the key */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327
328 if (keyHead.next == NULL) /* initialize circular queue */
329 {
330 keyHead.next = &keyHead;
331 keyHead.prev = &keyHead;
332 }
333
334 /* insert node at tail of queue */
335 node->next = &keyHead;
336 node->prev = keyHead.prev;
337 keyHead.prev->next = node;
338 keyHead.prev = node;
339
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100340 node->keystr = vim_strsave(keystr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341}
342
343/*
344 * Handle any queued-up NetBeans keycommands to be send.
345 */
346 static void
347handle_key_queue(void)
348{
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100349 int postponed = FALSE;
350
351 while (!postponed && keyHead.next && keyHead.next != &keyHead)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352 {
353 /* first, unlink the node */
354 keyQ_T *node = keyHead.next;
355 keyHead.next = node->next;
356 node->next->prev = node->prev;
357
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100358 /* Now, send the keycommand. This may cause it to be postponed again
359 * and change keyHead. */
360 if (node->keystr != NULL)
361 postponed = !netbeans_keystring(node->keystr);
362 vim_free(node->keystr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363
364 /* Finally, dispose of the node */
365 vim_free(node);
366 }
367}
368
369
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370/*
371 * While there's still a command in the work queue, parse and execute it.
372 */
Bram Moolenaarf2330482008-06-24 20:19:36 +0000373 void
374netbeans_parse_messages(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375{
Bram Moolenaar5f1032d2016-06-07 22:16:36 +0200376 readq_T *node;
Bram Moolenaard04a0202016-01-26 23:30:18 +0100377 char_u *buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378 char_u *p;
Bram Moolenaar863053d2010-12-02 17:09:54 +0100379 int own_node;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380
Bram Moolenaar77073442016-02-13 23:23:53 +0100381 while (nb_channel != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382 {
Bram Moolenaar5f1032d2016-06-07 22:16:36 +0200383 node = channel_peek(nb_channel, PART_SOCK);
384 if (node == NULL)
Bram Moolenaard04a0202016-01-26 23:30:18 +0100385 break; /* nothing to read */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386
Bram Moolenaar5ce4a0b2016-06-08 20:17:23 +0200387 /* Locate the end of the first line in the first buffer. */
Bram Moolenaar5f1032d2016-06-07 22:16:36 +0200388 p = channel_first_nl(node);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389 if (p == NULL)
390 {
391 /* Command isn't complete. If there is no following buffer,
392 * return (wait for more). If there is another buffer following,
393 * prepend the text to that buffer and delete this one. */
Bram Moolenaar9ed96ef2016-06-04 17:17:11 +0200394 if (channel_collapse(nb_channel, PART_SOCK, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395 return;
Bram Moolenaar5ce4a0b2016-06-08 20:17:23 +0200396 continue;
397 }
398
399 /* There is a complete command at the start of the buffer.
400 * Terminate it with a NUL. When no more text is following unlink
401 * the buffer. Do this before executing, because new buffers can
402 * be added while busy handling the command. */
403 *p++ = NUL;
404 if (*p == NUL)
405 {
406 own_node = TRUE;
407 buffer = channel_get(nb_channel, PART_SOCK);
408 /* "node" is now invalid! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409 }
410 else
411 {
Bram Moolenaar5ce4a0b2016-06-08 20:17:23 +0200412 own_node = FALSE;
413 buffer = node->rq_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414 }
Bram Moolenaar5ce4a0b2016-06-08 20:17:23 +0200415
Bram Moolenaar24cf2332016-07-01 12:50:54 +0200416 /* Now, parse and execute the commands. This may set nb_channel to
417 * NULL if the channel is closed. */
Bram Moolenaar5ce4a0b2016-06-08 20:17:23 +0200418 nb_parse_cmd(buffer);
419
420 if (own_node)
421 /* buffer finished, dispose of it */
422 vim_free(buffer);
Bram Moolenaar24cf2332016-07-01 12:50:54 +0200423 else if (nb_channel != NULL)
Bram Moolenaar5ce4a0b2016-06-08 20:17:23 +0200424 /* more follows, move it to the start */
425 channel_consume(nb_channel, PART_SOCK, (int)(p - buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426 }
427}
428
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429/*
430 * Handle one NUL terminated command.
431 *
432 * format of a command from netbeans:
433 *
434 * 6:setTitle!84 "a.c"
435 *
436 * bufno
437 * colon
438 * cmd
439 * !
440 * cmdno
441 * args
442 *
443 * for function calls, the ! is replaced by a /
444 */
445 static void
446nb_parse_cmd(char_u *cmd)
447{
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000448 char *verb;
449 char *q;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450 int bufno;
451 int isfunc = -1;
452
453 if (STRCMP(cmd, "DISCONNECT") == 0)
454 {
455 /* We assume the server knows that we can safely exit! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456 /* Disconnect before exiting, Motif hangs in a Select error
457 * message otherwise. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200458 netbeans_close();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459 getout(0);
460 /* NOTREACHED */
461 }
462
Bram Moolenaareed284a2016-02-22 23:13:33 +0100463 if (STRCMP(cmd, "DETACH") == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 {
Bram Moolenaard04a0202016-01-26 23:30:18 +0100465 buf_T *buf;
466
Bram Moolenaar29323592016-07-24 22:04:11 +0200467 FOR_ALL_BUFFERS(buf)
Bram Moolenaard04a0202016-01-26 23:30:18 +0100468 buf->b_has_sign_column = FALSE;
469
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470 /* The IDE is breaking the connection. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200471 netbeans_close();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472 return;
473 }
474
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000475 bufno = strtol((char *)cmd, &verb, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476
477 if (*verb != ':')
478 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000479 nbdebug((" missing colon: %s\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480 EMSG2("E627: missing colon: %s", cmd);
481 return;
482 }
483 ++verb; /* skip colon */
484
485 for (q = verb; *q; q++)
486 {
487 if (*q == '!')
488 {
489 *q++ = NUL;
490 isfunc = 0;
491 break;
492 }
493 else if (*q == '/')
494 {
495 *q++ = NUL;
496 isfunc = 1;
497 break;
498 }
499 }
500
501 if (isfunc < 0)
502 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000503 nbdebug((" missing ! or / in: %s\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504 EMSG2("E628: missing ! or / in: %s", cmd);
505 return;
506 }
507
Bram Moolenaar89d40322006-08-29 15:30:07 +0000508 r_cmdno = strtol(q, &q, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000510 q = (char *)skipwhite((char_u *)q);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511
Bram Moolenaar89d40322006-08-29 15:30:07 +0000512 if (nb_do_cmd(bufno, (char_u *)verb, isfunc, r_cmdno, (char_u *)q) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513 {
Bram Moolenaar009b2592004-10-24 19:18:58 +0000514#ifdef NBDEBUG
515 /*
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100516 * This happens because the ExtEd can send a command or 2 after
Bram Moolenaar009b2592004-10-24 19:18:58 +0000517 * doing a stopDocumentListen command. It doesn't harm anything
518 * so I'm disabling it except for debugging.
519 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520 nbdebug(("nb_parse_cmd: Command error for \"%s\"\n", cmd));
521 EMSG("E629: bad return from nb_do_cmd");
Bram Moolenaar009b2592004-10-24 19:18:58 +0000522#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 }
524}
525
526struct nbbuf_struct
527{
528 buf_T *bufp;
529 unsigned int fireChanges:1;
530 unsigned int initDone:1;
Bram Moolenaar009b2592004-10-24 19:18:58 +0000531 unsigned int insertDone:1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532 unsigned int modified:1;
Bram Moolenaar009b2592004-10-24 19:18:58 +0000533 int nbbuf_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 char *displayname;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 int *signmap;
536 short_u signmaplen;
537 short_u signmapused;
538};
539
540typedef struct nbbuf_struct nbbuf_T;
541
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200542static nbbuf_T *buf_list = NULL;
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000543static int buf_list_size = 0; /* size of buf_list */
544static int buf_list_used = 0; /* nr of entries in buf_list actually in use */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200546static char **globalsignmap = NULL;
547static int globalsignmaplen = 0;
548static int globalsignmapused = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100550static int mapsigntype(nbbuf_T *, int localsigntype);
551static void addsigntype(nbbuf_T *, int localsigntype, char_u *typeName,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 char_u *tooltip, char_u *glyphfile,
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100553 char_u *fg, char_u *bg);
554static void print_read_msg(nbbuf_T *buf);
Bram Moolenaar8767f522016-07-01 17:17:39 +0200555static void print_save_msg(nbbuf_T *buf, off_T nchars);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556
557static int curPCtype = -1;
558
559/*
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200560 * Free netbeans resources.
561 */
562 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100563nb_free(void)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200564{
565 keyQ_T *key_node = keyHead.next;
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200566 nbbuf_T buf;
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200567 int i;
568
569 /* free the netbeans buffer list */
570 for (i = 0; i < buf_list_used; i++)
571 {
572 buf = buf_list[i];
573 vim_free(buf.displayname);
574 vim_free(buf.signmap);
Bram Moolenaare980d8a2010-12-08 13:11:21 +0100575 if (buf.bufp != NULL)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200576 {
577 buf.bufp->b_netbeans_file = FALSE;
578 buf.bufp->b_was_netbeans_file = FALSE;
579 }
580 }
Bram Moolenaard23a8232018-02-10 18:45:26 +0100581 VIM_CLEAR(buf_list);
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200582 buf_list_size = 0;
583 buf_list_used = 0;
584
585 /* free the queued key commands */
Bram Moolenaar8d4eecc2012-11-20 17:19:01 +0100586 while (key_node != NULL && key_node != &keyHead)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200587 {
588 keyQ_T *next = key_node->next;
589 vim_free(key_node->keystr);
590 vim_free(key_node);
591 if (next == &keyHead)
592 {
593 keyHead.next = &keyHead;
594 keyHead.prev = &keyHead;
595 break;
596 }
597 key_node = next;
598 }
599
600 /* free the queued netbeans commands */
Bram Moolenaar77073442016-02-13 23:23:53 +0100601 if (nb_channel != NULL)
602 channel_clear(nb_channel);
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200603}
604
605/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 * Get the Netbeans buffer number for the specified buffer.
607 */
608 static int
609nb_getbufno(buf_T *bufp)
610{
611 int i;
612
613 for (i = 0; i < buf_list_used; i++)
614 if (buf_list[i].bufp == bufp)
615 return i;
616 return -1;
617}
618
619/*
620 * Is this a NetBeans-owned buffer?
621 */
622 int
623isNetbeansBuffer(buf_T *bufp)
624{
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200625 return NETBEANS_OPEN && bufp->b_netbeans_file;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626}
627
628/*
629 * NetBeans and Vim have different undo models. In Vim, the file isn't
630 * changed if changes are undone via the undo command. In NetBeans, once
631 * a change has been made the file is marked as modified until saved. It
632 * doesn't matter if the change was undone.
633 *
634 * So this function is for the corner case where Vim thinks a buffer is
635 * unmodified but NetBeans thinks it IS modified.
636 */
637 int
638isNetbeansModified(buf_T *bufp)
639{
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200640 if (isNetbeansBuffer(bufp))
Bram Moolenaar009b2592004-10-24 19:18:58 +0000641 {
642 int bufno = nb_getbufno(bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643
Bram Moolenaar009b2592004-10-24 19:18:58 +0000644 if (bufno > 0)
645 return buf_list[bufno].modified;
646 else
647 return FALSE;
648 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 else
650 return FALSE;
651}
652
653/*
654 * Given a Netbeans buffer number, return the netbeans buffer.
655 * Returns NULL for 0 or a negative number. A 0 bufno means a
656 * non-buffer related command has been sent.
657 */
658 static nbbuf_T *
659nb_get_buf(int bufno)
660{
661 /* find or create a buffer with the given number */
662 int incr;
663
664 if (bufno <= 0)
665 return NULL;
666
667 if (!buf_list)
668 {
669 /* initialize */
670 buf_list = (nbbuf_T *)alloc_clear(100 * sizeof(nbbuf_T));
671 buf_list_size = 100;
672 }
673 if (bufno >= buf_list_used) /* new */
674 {
675 if (bufno >= buf_list_size) /* grow list */
676 {
Bram Moolenaar9abd5c62015-02-10 18:34:01 +0100677 nbbuf_T *t_buf_list = buf_list;
678
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679 incr = bufno - buf_list_size + 90;
680 buf_list_size += incr;
681 buf_list = (nbbuf_T *)vim_realloc(
682 buf_list, buf_list_size * sizeof(nbbuf_T));
Bram Moolenaar9abd5c62015-02-10 18:34:01 +0100683 if (buf_list == NULL)
684 {
685 vim_free(t_buf_list);
686 buf_list_size = 0;
687 return NULL;
688 }
Bram Moolenaar7db5fc82010-05-24 11:59:29 +0200689 vim_memset(buf_list + buf_list_size - incr, 0,
690 incr * sizeof(nbbuf_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 }
692
693 while (buf_list_used <= bufno)
694 {
695 /* Default is to fire text changes. */
696 buf_list[buf_list_used].fireChanges = 1;
697 ++buf_list_used;
698 }
699 }
700
701 return buf_list + bufno;
702}
703
704/*
705 * Return the number of buffers that are modified.
706 */
707 static int
708count_changed_buffers(void)
709{
710 buf_T *bufp;
711 int n;
712
713 n = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +0200714 FOR_ALL_BUFFERS(bufp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715 if (bufp->b_changed)
716 ++n;
717 return n;
718}
719
720/*
721 * End the netbeans session.
722 */
723 void
724netbeans_end(void)
725{
726 int i;
727 static char buf[128];
728
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200729 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 return;
731
732 for (i = 0; i < buf_list_used; i++)
733 {
734 if (!buf_list[i].bufp)
735 continue;
736 if (netbeansForcedQuit)
737 {
738 /* mark as unmodified so NetBeans won't put up dialog on "killed" */
Bram Moolenaar89d40322006-08-29 15:30:07 +0000739 sprintf(buf, "%d:unmodified=%d\n", i, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 nbdebug(("EVT: %s", buf));
741 nb_send(buf, "netbeans_end");
742 }
Bram Moolenaar89d40322006-08-29 15:30:07 +0000743 sprintf(buf, "%d:killed=%d\n", i, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 nbdebug(("EVT: %s", buf));
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200745 /* nb_send(buf, "netbeans_end"); avoid "write failed" messages */
Bram Moolenaard04a0202016-01-26 23:30:18 +0100746 nb_send(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748}
749
750/*
751 * Send a message to netbeans.
Bram Moolenaard04a0202016-01-26 23:30:18 +0100752 * When "fun" is NULL no error is given.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 */
754 static void
755nb_send(char *buf, char *fun)
756{
Bram Moolenaar77073442016-02-13 23:23:53 +0100757 if (nb_channel != NULL)
Bram Moolenaarbf2cc5f2016-07-07 20:45:06 +0200758 channel_send(nb_channel, PART_SOCK, (char_u *)buf,
759 (int)STRLEN(buf), fun);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760}
761
762/*
763 * Some input received from netbeans requires a response. This function
764 * handles a response with no information (except the command number).
765 */
766 static void
767nb_reply_nil(int cmdno)
768{
769 char reply[32];
770
Bram Moolenaar009b2592004-10-24 19:18:58 +0000771 nbdebug(("REP %d: <none>\n", cmdno));
772
Bram Moolenaar7ad7d012010-11-16 15:49:02 +0100773 /* Avoid printing an annoying error message. */
774 if (!NETBEANS_OPEN)
775 return;
776
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777 sprintf(reply, "%d\n", cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 nb_send(reply, "nb_reply_nil");
779}
780
781
782/*
783 * Send a response with text.
784 * "result" must have been quoted already (using nb_quote()).
785 */
786 static void
787nb_reply_text(int cmdno, char_u *result)
788{
789 char_u *reply;
790
Bram Moolenaar009b2592004-10-24 19:18:58 +0000791 nbdebug(("REP %d: %s\n", cmdno, (char *)result));
792
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000793 reply = alloc((unsigned)STRLEN(result) + 32);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 sprintf((char *)reply, "%d %s\n", cmdno, (char *)result);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795 nb_send((char *)reply, "nb_reply_text");
796
797 vim_free(reply);
798}
799
800
801/*
802 * Send a response with a number result code.
803 */
804 static void
805nb_reply_nr(int cmdno, long result)
806{
807 char reply[32];
808
Bram Moolenaar009b2592004-10-24 19:18:58 +0000809 nbdebug(("REP %d: %ld\n", cmdno, result));
810
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 sprintf(reply, "%d %ld\n", cmdno, result);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 nb_send(reply, "nb_reply_nr");
813}
814
815
816/*
817 * Encode newline, ret, backslash, double quote for transmission to NetBeans.
818 */
819 static char_u *
820nb_quote(char_u *txt)
821{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000822 char_u *buf = alloc((unsigned)(2 * STRLEN(txt) + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 char_u *p = txt;
824 char_u *q = buf;
825
826 if (buf == NULL)
827 return NULL;
828 for (; *p; p++)
829 {
830 switch (*p)
831 {
832 case '\"':
833 case '\\':
834 *q++ = '\\'; *q++ = *p; break;
835 /* case '\t': */
836 /* *q++ = '\\'; *q++ = 't'; break; */
837 case '\n':
838 *q++ = '\\'; *q++ = 'n'; break;
839 case '\r':
840 *q++ = '\\'; *q++ = 'r'; break;
841 default:
842 *q++ = *p;
843 break;
844 }
845 }
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100846 *q = '\0';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847
848 return buf;
849}
850
851
852/*
853 * Remove top level double quotes; convert backslashed chars.
854 * Returns an allocated string (NULL for failure).
855 * If "endp" is not NULL it is set to the character after the terminating
856 * quote.
857 */
858 static char *
859nb_unquote(char_u *p, char_u **endp)
860{
861 char *result = 0;
862 char *q;
863 int done = 0;
864
865 /* result is never longer than input */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000866 result = (char *)alloc_clear((unsigned)STRLEN(p) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 if (result == NULL)
868 return NULL;
869
870 if (*p++ != '"')
871 {
872 nbdebug(("nb_unquote called with string that doesn't start with a quote!: %s\n",
873 p));
874 result[0] = NUL;
875 return result;
876 }
877
878 for (q = result; !done && *p != NUL;)
879 {
880 switch (*p)
881 {
882 case '"':
883 /*
884 * Unbackslashed dquote marks the end, if first char was dquote.
885 */
886 done = 1;
887 break;
888
889 case '\\':
890 ++p;
891 switch (*p)
892 {
893 case '\\': *q++ = '\\'; break;
894 case 'n': *q++ = '\n'; break;
895 case 't': *q++ = '\t'; break;
896 case 'r': *q++ = '\r'; break;
897 case '"': *q++ = '"'; break;
898 case NUL: --p; break;
899 /* default: skip over illegal chars */
900 }
901 ++p;
902 break;
903
904 default:
905 *q++ = *p++;
906 }
907 }
908
909 if (endp != NULL)
910 *endp = p;
911
912 return result;
913}
914
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000915/*
916 * Remove from "first" byte to "last" byte (inclusive), at line "lnum" of the
917 * current buffer. Remove to end of line when "last" is MAXCOL.
918 */
919 static void
920nb_partialremove(linenr_T lnum, colnr_T first, colnr_T last)
921{
922 char_u *oldtext, *newtext;
923 int oldlen;
924 int lastbyte = last;
925
926 oldtext = ml_get(lnum);
Bram Moolenaarcb4cef22008-03-16 15:04:34 +0000927 oldlen = (int)STRLEN(oldtext);
Bram Moolenaarb3c70982008-01-18 10:40:55 +0000928 if (first >= (colnr_T)oldlen || oldlen == 0) /* just in case */
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000929 return;
930 if (lastbyte >= oldlen)
931 lastbyte = oldlen - 1;
932 newtext = alloc(oldlen - (int)(lastbyte - first));
933 if (newtext != NULL)
934 {
935 mch_memmove(newtext, oldtext, first);
Bram Moolenaarf2330482008-06-24 20:19:36 +0000936 STRMOVE(newtext + first, oldtext + lastbyte + 1);
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000937 nbdebug((" NEW LINE %d: %s\n", lnum, newtext));
938 ml_replace(lnum, newtext, FALSE);
939 }
940}
941
942/*
943 * Replace the "first" line with the concatenation of the "first" and
944 * the "other" line. The "other" line is not removed.
945 */
946 static void
947nb_joinlines(linenr_T first, linenr_T other)
948{
949 int len_first, len_other;
950 char_u *p;
951
Bram Moolenaarcb4cef22008-03-16 15:04:34 +0000952 len_first = (int)STRLEN(ml_get(first));
953 len_other = (int)STRLEN(ml_get(other));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000954 p = alloc((unsigned)(len_first + len_other + 1));
955 if (p != NULL)
956 {
957 mch_memmove(p, ml_get(first), len_first);
958 mch_memmove(p + len_first, ml_get(other), len_other + 1);
959 ml_replace(first, p, FALSE);
960 }
961}
962
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963#define SKIP_STOP 2
964#define streq(a,b) (strcmp(a,b) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965
966/*
967 * Do the actual processing of a single netbeans command or function.
Bram Moolenaar143c38c2007-05-10 16:41:10 +0000968 * The difference between a command and function is that a function
969 * gets a response (it's required) but a command does not.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970 * For arguments see comment for nb_parse_cmd().
971 */
972 static int
973nb_do_cmd(
974 int bufno,
975 char_u *cmd,
976 int func,
977 int cmdno,
978 char_u *args) /* points to space before arguments or NUL */
979{
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100980 int do_update = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 long off = 0;
982 nbbuf_T *buf = nb_get_buf(bufno);
983 static int skip = 0;
984 int retval = OK;
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000985 char *cp; /* for when a char pointer is needed */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986
987 nbdebug(("%s %d: (%d) %s %s\n", (func) ? "FUN" : "CMD", cmdno, bufno, cmd,
988 STRCMP(cmd, "insert") == 0 ? "<text>" : (char *)args));
989
990 if (func)
991 {
992/* =====================================================================*/
993 if (streq((char *)cmd, "getModified"))
994 {
995 if (buf == NULL || buf->bufp == NULL)
996 /* Return the number of buffers that are modified. */
997 nb_reply_nr(cmdno, (long)count_changed_buffers());
998 else
999 /* Return whether the buffer is modified. */
1000 nb_reply_nr(cmdno, (long)(buf->bufp->b_changed
1001 || isNetbeansModified(buf->bufp)));
1002/* =====================================================================*/
1003 }
1004 else if (streq((char *)cmd, "saveAndExit"))
1005 {
1006 /* Note: this will exit Vim if successful. */
1007 coloncmd(":confirm qall");
1008
1009 /* We didn't exit: return the number of changed buffers. */
1010 nb_reply_nr(cmdno, (long)count_changed_buffers());
1011/* =====================================================================*/
1012 }
1013 else if (streq((char *)cmd, "getCursor"))
1014 {
1015 char_u text[200];
1016
1017 /* Note: nb_getbufno() may return -1. This indicates the IDE
1018 * didn't assign a number to the current buffer in response to a
1019 * fileOpened event. */
1020 sprintf((char *)text, "%d %ld %d %ld",
1021 nb_getbufno(curbuf),
1022 (long)curwin->w_cursor.lnum,
1023 (int)curwin->w_cursor.col,
1024 pos2off(curbuf, &curwin->w_cursor));
1025 nb_reply_text(cmdno, text);
1026/* =====================================================================*/
1027 }
Bram Moolenaarc65c4912006-11-14 17:29:46 +00001028 else if (streq((char *)cmd, "getAnno"))
1029 {
1030 long linenum = 0;
1031#ifdef FEAT_SIGNS
1032 if (buf == NULL || buf->bufp == NULL)
1033 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001034 nbdebug((" Invalid buffer identifier in getAnno\n"));
1035 EMSG("E652: Invalid buffer identifier in getAnno");
Bram Moolenaarc65c4912006-11-14 17:29:46 +00001036 retval = FAIL;
1037 }
1038 else
1039 {
1040 int serNum;
1041
1042 cp = (char *)args;
1043 serNum = strtol(cp, &cp, 10);
1044 /* If the sign isn't found linenum will be zero. */
Bram Moolenaar162b7142018-12-21 15:17:36 +01001045 linenum = (long)buf_findsign(buf->bufp, serNum, NULL);
Bram Moolenaarc65c4912006-11-14 17:29:46 +00001046 }
1047#endif
1048 nb_reply_nr(cmdno, linenum);
1049/* =====================================================================*/
1050 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 else if (streq((char *)cmd, "getLength"))
1052 {
1053 long len = 0;
1054
1055 if (buf == NULL || buf->bufp == NULL)
1056 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001057 nbdebug((" invalid buffer identifier in getLength\n"));
1058 EMSG("E632: invalid buffer identifier in getLength");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059 retval = FAIL;
1060 }
1061 else
1062 {
1063 len = get_buf_size(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 }
1065 nb_reply_nr(cmdno, len);
1066/* =====================================================================*/
1067 }
1068 else if (streq((char *)cmd, "getText"))
1069 {
1070 long len;
1071 linenr_T nlines;
1072 char_u *text = NULL;
1073 linenr_T lno = 1;
1074 char_u *p;
1075 char_u *line;
1076
1077 if (buf == NULL || buf->bufp == NULL)
1078 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001079 nbdebug((" invalid buffer identifier in getText\n"));
1080 EMSG("E633: invalid buffer identifier in getText");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 retval = FAIL;
1082 }
1083 else
1084 {
1085 len = get_buf_size(buf->bufp);
1086 nlines = buf->bufp->b_ml.ml_line_count;
1087 text = alloc((unsigned)((len > 0)
1088 ? ((len + nlines) * 2) : 4));
1089 if (text == NULL)
1090 {
1091 nbdebug((" nb_do_cmd: getText has null text field\n"));
1092 retval = FAIL;
1093 }
1094 else
1095 {
1096 p = text;
1097 *p++ = '\"';
1098 for (; lno <= nlines ; lno++)
1099 {
1100 line = nb_quote(ml_get_buf(buf->bufp, lno, FALSE));
1101 if (line != NULL)
1102 {
1103 STRCPY(p, line);
1104 p += STRLEN(line);
1105 *p++ = '\\';
1106 *p++ = 'n';
Bram Moolenaar009b2592004-10-24 19:18:58 +00001107 vim_free(line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 }
1110 *p++ = '\"';
1111 *p = '\0';
1112 }
1113 }
1114 if (text == NULL)
1115 nb_reply_text(cmdno, (char_u *)"");
1116 else
1117 {
1118 nb_reply_text(cmdno, text);
1119 vim_free(text);
1120 }
1121/* =====================================================================*/
1122 }
1123 else if (streq((char *)cmd, "remove"))
1124 {
1125 long count;
1126 pos_T first, last;
1127 pos_T *pos;
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001128 pos_T *next;
1129 linenr_T del_from_lnum, del_to_lnum; /* lines to be deleted as a whole */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 int oldFire = netbeansFireChanges;
1131 int oldSuppress = netbeansSuppressNoLines;
1132 int wasChanged;
1133
1134 if (skip >= SKIP_STOP)
1135 {
1136 nbdebug((" Skipping %s command\n", (char *) cmd));
1137 nb_reply_nil(cmdno);
1138 return OK;
1139 }
1140
1141 if (buf == NULL || buf->bufp == NULL)
1142 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001143 nbdebug((" invalid buffer identifier in remove\n"));
1144 EMSG("E634: invalid buffer identifier in remove");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 retval = FAIL;
1146 }
1147 else
1148 {
1149 netbeansFireChanges = FALSE;
1150 netbeansSuppressNoLines = TRUE;
1151
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001152 nb_set_curbuf(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 wasChanged = buf->bufp->b_changed;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001154 cp = (char *)args;
1155 off = strtol(cp, &cp, 10);
1156 count = strtol(cp, &cp, 10);
1157 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158 /* delete "count" chars, starting at "off" */
1159 pos = off2pos(buf->bufp, off);
1160 if (!pos)
1161 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001162 nbdebug((" !bad position\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 nb_reply_text(cmdno, (char_u *)"!bad position");
1164 netbeansFireChanges = oldFire;
1165 netbeansSuppressNoLines = oldSuppress;
1166 return FAIL;
1167 }
1168 first = *pos;
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001169 nbdebug((" FIRST POS: line %d, col %d\n",
1170 first.lnum, first.col));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 pos = off2pos(buf->bufp, off+count-1);
1172 if (!pos)
1173 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001174 nbdebug((" !bad count\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175 nb_reply_text(cmdno, (char_u *)"!bad count");
1176 netbeansFireChanges = oldFire;
1177 netbeansSuppressNoLines = oldSuppress;
1178 return FAIL;
1179 }
1180 last = *pos;
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001181 nbdebug((" LAST POS: line %d, col %d\n",
1182 last.lnum, last.col));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001183 del_from_lnum = first.lnum;
1184 del_to_lnum = last.lnum;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001185 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001187 /* Get the position of the first byte after the deleted
1188 * section. "next" is NULL when deleting to the end of the
1189 * file. */
1190 next = off2pos(buf->bufp, off + count);
1191
1192 /* Remove part of the first line. */
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001193 if (first.col != 0
1194 || (next != NULL && first.lnum == next->lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 {
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001196 if (first.lnum != last.lnum
1197 || (next != NULL && first.lnum != next->lnum))
1198 {
1199 /* remove to the end of the first line */
1200 nb_partialremove(first.lnum, first.col,
1201 (colnr_T)MAXCOL);
1202 if (first.lnum == last.lnum)
1203 {
1204 /* Partial line to remove includes the end of
1205 * line. Join the line with the next one, have
1206 * the next line deleted below. */
1207 nb_joinlines(first.lnum, next->lnum);
1208 del_to_lnum = next->lnum;
1209 }
1210 }
1211 else
1212 {
1213 /* remove within one line */
1214 nb_partialremove(first.lnum, first.col, last.col);
1215 }
1216 ++del_from_lnum; /* don't delete the first line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 }
1218
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001219 /* Remove part of the last line. */
1220 if (first.lnum != last.lnum && next != NULL
1221 && next->col != 0 && last.lnum == next->lnum)
1222 {
1223 nb_partialremove(last.lnum, 0, last.col);
1224 if (del_from_lnum > first.lnum)
1225 {
1226 /* Join end of last line to start of first line; last
1227 * line is deleted below. */
1228 nb_joinlines(first.lnum, last.lnum);
1229 }
1230 else
1231 /* First line is deleted as a whole, keep the last
1232 * line. */
1233 --del_to_lnum;
1234 }
1235
1236 /* First is partial line; last line to remove includes
1237 * the end of line; join first line to line following last
1238 * line; line following last line is deleted below. */
1239 if (first.lnum != last.lnum && del_from_lnum > first.lnum
1240 && next != NULL && last.lnum != next->lnum)
1241 {
1242 nb_joinlines(first.lnum, next->lnum);
1243 del_to_lnum = next->lnum;
1244 }
1245
1246 /* Delete whole lines if there are any. */
1247 if (del_to_lnum >= del_from_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 {
1249 int i;
1250
1251 /* delete signs from the lines being deleted */
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001252 for (i = del_from_lnum; i <= del_to_lnum; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 {
Bram Moolenaar7d83bf42018-12-29 18:53:55 +01001254 int id = buf_findsign_id(buf->bufp, (linenr_T)i, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 if (id > 0)
1256 {
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001257 nbdebug((" Deleting sign %d on line %d\n",
1258 id, i));
Bram Moolenaar7d83bf42018-12-29 18:53:55 +01001259 buf_delsign(buf->bufp, 0, id, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 }
1261 else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001262 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 nbdebug((" No sign on line %d\n", i));
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001264 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 }
1266
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001267 nbdebug((" Deleting lines %d through %d\n",
1268 del_from_lnum, del_to_lnum));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001269 curwin->w_cursor.lnum = del_from_lnum;
1270 curwin->w_cursor.col = 0;
1271 del_lines(del_to_lnum - del_from_lnum + 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 }
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001273
1274 /* Leave cursor at first deleted byte. */
1275 curwin->w_cursor = first;
1276 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 buf->bufp->b_changed = wasChanged; /* logically unchanged */
1278 netbeansFireChanges = oldFire;
1279 netbeansSuppressNoLines = oldSuppress;
1280
1281 u_blockfree(buf->bufp);
1282 u_clearall(buf->bufp);
1283 }
1284 nb_reply_nil(cmdno);
1285/* =====================================================================*/
1286 }
1287 else if (streq((char *)cmd, "insert"))
1288 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 char_u *to_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290
1291 if (skip >= SKIP_STOP)
1292 {
1293 nbdebug((" Skipping %s command\n", (char *) cmd));
1294 nb_reply_nil(cmdno);
1295 return OK;
1296 }
1297
1298 /* get offset */
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001299 cp = (char *)args;
1300 off = strtol(cp, &cp, 10);
1301 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302
1303 /* get text to be inserted */
1304 args = skipwhite(args);
1305 args = to_free = (char_u *)nb_unquote(args, NULL);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001306 /*
1307 nbdebug((" CHUNK[%d]: %d bytes at offset %d\n",
1308 buf->bufp->b_ml.ml_line_count, STRLEN(args), off));
1309 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310
1311 if (buf == NULL || buf->bufp == NULL)
1312 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001313 nbdebug((" invalid buffer identifier in insert\n"));
1314 EMSG("E635: invalid buffer identifier in insert");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 retval = FAIL;
1316 }
1317 else if (args != NULL)
1318 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001319 int ff_detected = EOL_UNKNOWN;
1320 int buf_was_empty = (buf->bufp->b_ml.ml_flags & ML_EMPTY);
1321 size_t len = 0;
1322 int added = 0;
1323 int oldFire = netbeansFireChanges;
1324 int old_b_changed;
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001325 char_u *nlp;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001326 linenr_T lnum;
1327 linenr_T lnum_start;
1328 pos_T *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 netbeansFireChanges = 0;
1331
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001332 /* Jump to the buffer where we insert. After this "curbuf"
1333 * can be used. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001334 nb_set_curbuf(buf->bufp);
Bram Moolenaara3227e22006-03-08 21:32:40 +00001335 old_b_changed = curbuf->b_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001337 /* Convert the specified character offset into a lnum/col
1338 * position. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001339 pos = off2pos(curbuf, off);
1340 if (pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001342 if (pos->lnum <= 0)
1343 lnum_start = 1;
1344 else
1345 lnum_start = pos->lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346 }
1347 else
1348 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001349 /* If the given position is not found, assume we want
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 * the end of the file. See setLocAndSize HACK. */
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001351 if (buf_was_empty)
1352 lnum_start = 1; /* above empty line */
1353 else
1354 lnum_start = curbuf->b_ml.ml_line_count + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001355 }
1356
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001357 /* "lnum" is the line where we insert: either append to it or
1358 * insert a new line above it. */
1359 lnum = lnum_start;
1360
1361 /* Loop over the "\n" separated lines of the argument. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001362 do_update = 1;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001363 while (*args != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 {
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001365 nlp = vim_strchr(args, '\n');
1366 if (nlp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001368 /* Incomplete line, probably truncated. Next "insert"
1369 * command should append to this one. */
1370 len = STRLEN(args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001372 else
1373 {
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001374 len = nlp - args;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001375
1376 /*
1377 * We need to detect EOL style, because the commands
1378 * use a character offset.
1379 */
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001380 if (nlp > args && nlp[-1] == '\r')
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001381 {
1382 ff_detected = EOL_DOS;
1383 --len;
1384 }
1385 else
1386 ff_detected = EOL_UNIX;
1387 }
1388 args[len] = NUL;
1389
1390 if (lnum == lnum_start
1391 && ((pos != NULL && pos->col > 0)
1392 || (lnum == 1 && buf_was_empty)))
1393 {
1394 char_u *oldline = ml_get(lnum);
1395 char_u *newline;
1396
Bram Moolenaare4365282012-04-20 19:47:05 +02001397 /* Insert halfway a line. */
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001398 newline = alloc_check(
1399 (unsigned)(STRLEN(oldline) + len + 1));
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001400 if (newline != NULL)
1401 {
Bram Moolenaare4365282012-04-20 19:47:05 +02001402 mch_memmove(newline, oldline, (size_t)pos->col);
1403 newline[pos->col] = NUL;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001404 STRCAT(newline, args);
Bram Moolenaare4365282012-04-20 19:47:05 +02001405 STRCAT(newline, oldline + pos->col);
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001406 ml_replace(lnum, newline, FALSE);
1407 }
1408 }
1409 else
1410 {
1411 /* Append a new line. Not that we always do this,
1412 * also when the text doesn't end in a "\n". */
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001413 ml_append((linenr_T)(lnum - 1), args,
1414 (colnr_T)(len + 1), FALSE);
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001415 ++added;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001416 }
1417
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001418 if (nlp == NULL)
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001419 break;
1420 ++lnum;
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001421 args = nlp + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001422 }
1423
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001424 /* Adjust the marks below the inserted lines. */
1425 appended_lines_mark(lnum_start - 1, (long)added);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001426
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001427 /*
1428 * When starting with an empty buffer set the fileformat.
1429 * This is just guessing...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 */
1431 if (buf_was_empty)
1432 {
1433 if (ff_detected == EOL_UNKNOWN)
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001434#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 ff_detected = EOL_DOS;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001436#else
1437 ff_detected = EOL_UNIX;
1438#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 set_fileformat(ff_detected, OPT_LOCAL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00001440 curbuf->b_start_ffc = *curbuf->b_p_ff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 }
1442
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443 /*
1444 * XXX - GRP - Is the next line right? If I've inserted
1445 * text the buffer has been updated but not written. Will
1446 * netbeans guarantee to write it? Even if I do a :q! ?
1447 */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001448 curbuf->b_changed = old_b_changed; /* logically unchanged */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 netbeansFireChanges = oldFire;
1450
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001451 /* Undo info is invalid now... */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001452 u_blockfree(curbuf);
1453 u_clearall(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 }
1455 vim_free(to_free);
1456 nb_reply_nil(cmdno); /* or !error */
1457 }
1458 else
1459 {
1460 nbdebug(("UNIMPLEMENTED FUNCTION: %s\n", cmd));
1461 nb_reply_nil(cmdno);
1462 retval = FAIL;
1463 }
1464 }
1465 else /* Not a function; no reply required. */
1466 {
1467/* =====================================================================*/
1468 if (streq((char *)cmd, "create"))
1469 {
1470 /* Create a buffer without a name. */
1471 if (buf == NULL)
1472 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001473 nbdebug((" invalid buffer identifier in create\n"));
1474 EMSG("E636: invalid buffer identifier in create");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 return FAIL;
1476 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01001477 VIM_CLEAR(buf->displayname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478
1479 netbeansReadFile = 0; /* don't try to open disk file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001480 do_ecmd(0, NULL, 0, 0, ECMD_ONE, ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481 netbeansReadFile = 1;
1482 buf->bufp = curbuf;
1483 maketitle();
Bram Moolenaar009b2592004-10-24 19:18:58 +00001484 buf->insertDone = FALSE;
Bram Moolenaar67c53842010-05-22 18:28:27 +02001485#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02001486 if (gui.in_use)
1487 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001488#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489/* =====================================================================*/
1490 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001491 else if (streq((char *)cmd, "insertDone"))
1492 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001493 if (buf == NULL || buf->bufp == NULL)
1494 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001495 nbdebug((" invalid buffer identifier in insertDone\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001496 }
1497 else
1498 {
1499 buf->bufp->b_start_eol = *args == 'T';
1500 buf->insertDone = TRUE;
1501 args += 2;
1502 buf->bufp->b_p_ro = *args == 'T';
1503 print_read_msg(buf);
1504 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001505/* =====================================================================*/
1506 }
1507 else if (streq((char *)cmd, "saveDone"))
1508 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001509 long savedChars = atol((char *)args);
1510
1511 if (buf == NULL || buf->bufp == NULL)
1512 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001513 nbdebug((" invalid buffer identifier in saveDone\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001514 }
1515 else
1516 print_save_msg(buf, savedChars);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001517/* =====================================================================*/
1518 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 else if (streq((char *)cmd, "startDocumentListen"))
1520 {
1521 if (buf == NULL)
1522 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001523 nbdebug((" invalid buffer identifier in startDocumentListen\n"));
1524 EMSG("E637: invalid buffer identifier in startDocumentListen");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 return FAIL;
1526 }
1527 buf->fireChanges = 1;
1528/* =====================================================================*/
1529 }
1530 else if (streq((char *)cmd, "stopDocumentListen"))
1531 {
1532 if (buf == NULL)
1533 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001534 nbdebug((" invalid buffer identifier in stopDocumentListen\n"));
1535 EMSG("E638: invalid buffer identifier in stopDocumentListen");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 return FAIL;
1537 }
1538 buf->fireChanges = 0;
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001539 if (buf->bufp != NULL && buf->bufp->b_was_netbeans_file)
Bram Moolenaar009b2592004-10-24 19:18:58 +00001540 {
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001541 if (!buf->bufp->b_netbeans_file)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001542 {
1543 nbdebug(("E658: NetBeans connection lost for buffer %ld\n", buf->bufp->b_fnum));
Bram Moolenaar009b2592004-10-24 19:18:58 +00001544 EMSGN(_("E658: NetBeans connection lost for buffer %ld"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 buf->bufp->b_fnum);
Bram Moolenaarf2330482008-06-24 20:19:36 +00001546 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001547 else
1548 {
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001549 /* NetBeans uses stopDocumentListen when it stops editing
1550 * a file. It then expects the buffer in Vim to
1551 * disappear. */
1552 do_bufdel(DOBUF_DEL, (char_u *)"", 1,
1553 buf->bufp->b_fnum, buf->bufp->b_fnum, TRUE);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001554 vim_memset(buf, 0, sizeof(nbbuf_T));
1555 }
1556 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557/* =====================================================================*/
1558 }
1559 else if (streq((char *)cmd, "setTitle"))
1560 {
1561 if (buf == NULL)
1562 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001563 nbdebug((" invalid buffer identifier in setTitle\n"));
1564 EMSG("E639: invalid buffer identifier in setTitle");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 return FAIL;
1566 }
1567 vim_free(buf->displayname);
1568 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569/* =====================================================================*/
1570 }
1571 else if (streq((char *)cmd, "initDone"))
1572 {
1573 if (buf == NULL || buf->bufp == NULL)
1574 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001575 nbdebug((" invalid buffer identifier in initDone\n"));
1576 EMSG("E640: invalid buffer identifier in initDone");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 return FAIL;
1578 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001579 do_update = 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001580 buf->initDone = TRUE;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001581 nb_set_curbuf(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 apply_autocmds(EVENT_BUFREADPOST, 0, 0, FALSE, buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583
1584 /* handle any postponed key commands */
1585 handle_key_queue();
1586/* =====================================================================*/
1587 }
1588 else if (streq((char *)cmd, "setBufferNumber")
1589 || streq((char *)cmd, "putBufferNumber"))
1590 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001591 char_u *path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 buf_T *bufp;
1593
1594 if (buf == NULL)
1595 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001596 nbdebug((" invalid buffer identifier in setBufferNumber\n"));
1597 EMSG("E641: invalid buffer identifier in setBufferNumber");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 return FAIL;
1599 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001600 path = (char_u *)nb_unquote(args, NULL);
1601 if (path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 return FAIL;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001603 bufp = buflist_findname(path);
1604 vim_free(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 if (bufp == NULL)
1606 {
Bram Moolenaarec906222009-02-21 21:14:00 +00001607 nbdebug((" File %s not found in setBufferNumber\n", args));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608 EMSG2("E642: File %s not found in setBufferNumber", args);
1609 return FAIL;
1610 }
1611 buf->bufp = bufp;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001612 buf->nbbuf_number = bufp->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613
1614 /* "setBufferNumber" has the side effect of jumping to the buffer
1615 * (don't know why!). Don't do that for "putBufferNumber". */
1616 if (*cmd != 'p')
1617 coloncmd(":buffer %d", bufp->b_fnum);
1618 else
1619 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001620 buf->initDone = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621
1622 /* handle any postponed key commands */
1623 handle_key_queue();
1624 }
1625
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626/* =====================================================================*/
1627 }
1628 else if (streq((char *)cmd, "setFullName"))
1629 {
1630 if (buf == NULL)
1631 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001632 nbdebug((" invalid buffer identifier in setFullName\n"));
1633 EMSG("E643: invalid buffer identifier in setFullName");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 return FAIL;
1635 }
1636 vim_free(buf->displayname);
1637 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638
1639 netbeansReadFile = 0; /* don't try to open disk file */
1640 do_ecmd(0, (char_u *)buf->displayname, 0, 0, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001641 ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642 netbeansReadFile = 1;
1643 buf->bufp = curbuf;
1644 maketitle();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001645#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02001646 if (gui.in_use)
1647 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001648#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649/* =====================================================================*/
1650 }
1651 else if (streq((char *)cmd, "editFile"))
1652 {
1653 if (buf == NULL)
1654 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001655 nbdebug((" invalid buffer identifier in editFile\n"));
1656 EMSG("E644: invalid buffer identifier in editFile");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 return FAIL;
1658 }
1659 /* Edit a file: like create + setFullName + read the file. */
1660 vim_free(buf->displayname);
1661 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 do_ecmd(0, (char_u *)buf->displayname, NULL, NULL, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001663 ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 buf->bufp = curbuf;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001665 buf->initDone = TRUE;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001666 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667#if defined(FEAT_TITLE)
1668 maketitle();
1669#endif
Bram Moolenaar67c53842010-05-22 18:28:27 +02001670#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02001671 if (gui.in_use)
1672 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001673#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674/* =====================================================================*/
1675 }
1676 else if (streq((char *)cmd, "setVisible"))
1677 {
1678 if (buf == NULL || buf->bufp == NULL)
1679 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001680 nbdebug((" invalid buffer identifier in setVisible\n"));
1681 /* This message was commented out, probably because it can
1682 * happen when shutting down. */
1683 if (p_verbose > 0)
1684 EMSG("E645: invalid buffer identifier in setVisible");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685 return FAIL;
1686 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001687 if (streq((char *)args, "T") && buf->bufp != curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 {
1689 exarg_T exarg;
1690 exarg.cmd = (char_u *)"goto";
1691 exarg.forceit = FALSE;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001692 dosetvisible = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 goto_buffer(&exarg, DOBUF_FIRST, FORWARD, buf->bufp->b_fnum);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001694 do_update = 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001695 dosetvisible = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696
Bram Moolenaar67c53842010-05-22 18:28:27 +02001697#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698 /* Side effect!!!. */
Bram Moolenaard54a6882010-08-09 22:49:00 +02001699 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700 gui_mch_set_foreground();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001701#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703/* =====================================================================*/
1704 }
1705 else if (streq((char *)cmd, "raise"))
1706 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02001707#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708 /* Bring gvim to the foreground. */
Bram Moolenaard54a6882010-08-09 22:49:00 +02001709 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710 gui_mch_set_foreground();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001711#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712/* =====================================================================*/
1713 }
1714 else if (streq((char *)cmd, "setModified"))
1715 {
Bram Moolenaarff064e12008-06-09 13:10:45 +00001716 int prev_b_changed;
1717
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 if (buf == NULL || buf->bufp == NULL)
1719 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001720 nbdebug((" invalid buffer identifier in setModified\n"));
1721 /* This message was commented out, probably because it can
1722 * happen when shutting down. */
1723 if (p_verbose > 0)
1724 EMSG("E646: invalid buffer identifier in setModified");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725 return FAIL;
1726 }
Bram Moolenaarff064e12008-06-09 13:10:45 +00001727 prev_b_changed = buf->bufp->b_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728 if (streq((char *)args, "T"))
Bram Moolenaarff064e12008-06-09 13:10:45 +00001729 buf->bufp->b_changed = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 else
1731 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02001732 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733
1734 /* Assume NetBeans stored the file. Reset the timestamp to
1735 * avoid "file changed" warnings. */
1736 if (buf->bufp->b_ffname != NULL
1737 && mch_stat((char *)buf->bufp->b_ffname, &st) >= 0)
1738 buf_store_time(buf->bufp, &st, buf->bufp->b_ffname);
Bram Moolenaarff064e12008-06-09 13:10:45 +00001739 buf->bufp->b_changed = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 }
1741 buf->modified = buf->bufp->b_changed;
Bram Moolenaarff064e12008-06-09 13:10:45 +00001742 if (prev_b_changed != buf->bufp->b_changed)
1743 {
Bram Moolenaarff064e12008-06-09 13:10:45 +00001744 check_status(buf->bufp);
1745 redraw_tabline = TRUE;
Bram Moolenaarff064e12008-06-09 13:10:45 +00001746#ifdef FEAT_TITLE
1747 maketitle();
1748#endif
1749 update_screen(0);
1750 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751/* =====================================================================*/
1752 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001753 else if (streq((char *)cmd, "setModtime"))
1754 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001755 if (buf == NULL || buf->bufp == NULL)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001756 nbdebug((" invalid buffer identifier in setModtime\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001757 else
1758 buf->bufp->b_mtime = atoi((char *)args);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001759/* =====================================================================*/
1760 }
1761 else if (streq((char *)cmd, "setReadOnly"))
1762 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001763 if (buf == NULL || buf->bufp == NULL)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001764 nbdebug((" invalid buffer identifier in setReadOnly\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001765 else if (streq((char *)args, "T"))
Bram Moolenaar009b2592004-10-24 19:18:58 +00001766 buf->bufp->b_p_ro = TRUE;
1767 else
1768 buf->bufp->b_p_ro = FALSE;
1769/* =====================================================================*/
1770 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 else if (streq((char *)cmd, "setMark"))
1772 {
1773 /* not yet */
1774/* =====================================================================*/
1775 }
1776 else if (streq((char *)cmd, "showBalloon"))
1777 {
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01001778#if defined(FEAT_BEVAL_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 static char *text = NULL;
1780
1781 /*
1782 * Set up the Balloon Expression Evaluation area.
1783 * Ignore 'ballooneval' here.
1784 * The text pointer must remain valid for a while.
1785 */
1786 if (balloonEval != NULL)
1787 {
1788 vim_free(text);
1789 text = nb_unquote(args, NULL);
1790 if (text != NULL)
1791 gui_mch_post_balloon(balloonEval, (char_u *)text);
1792 }
1793#endif
1794/* =====================================================================*/
1795 }
1796 else if (streq((char *)cmd, "setDot"))
1797 {
1798 pos_T *pos;
1799#ifdef NBDEBUG
1800 char_u *s;
1801#endif
1802
1803 if (buf == NULL || buf->bufp == NULL)
1804 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001805 nbdebug((" invalid buffer identifier in setDot\n"));
1806 EMSG("E647: invalid buffer identifier in setDot");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 return FAIL;
1808 }
1809
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001810 nb_set_curbuf(buf->bufp);
1811
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812 /* Don't want Visual mode now. */
1813 if (VIsual_active)
1814 end_visual_mode();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815#ifdef NBDEBUG
1816 s = args;
1817#endif
1818 pos = get_off_or_lnum(buf->bufp, &args);
1819 if (pos)
1820 {
1821 curwin->w_cursor = *pos;
1822 check_cursor();
1823#ifdef FEAT_FOLDING
1824 foldOpenCursor();
1825#endif
1826 }
1827 else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001828 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829 nbdebug((" BAD POSITION in setDot: %s\n", s));
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001830 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831
1832 /* gui_update_cursor(TRUE, FALSE); */
1833 /* update_curbuf(NOT_VALID); */
1834 update_topline(); /* scroll to show the line */
1835 update_screen(VALID);
1836 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02001837 cursor_on();
Bram Moolenaara338adc2018-01-31 20:51:47 +01001838 out_flush_cursor(TRUE, FALSE);
1839
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 /* Quit a hit-return or more prompt. */
1841 if (State == HITRETURN || State == ASKMORE)
1842 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843#ifdef FEAT_GUI_GTK
Bram Moolenaard54a6882010-08-09 22:49:00 +02001844 if (gui.in_use && gtk_main_level() > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 gtk_main_quit();
1846#endif
1847 }
1848/* =====================================================================*/
1849 }
1850 else if (streq((char *)cmd, "close"))
1851 {
1852#ifdef NBDEBUG
1853 char *name = "<NONE>";
1854#endif
1855
1856 if (buf == NULL)
1857 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001858 nbdebug((" invalid buffer identifier in close\n"));
1859 EMSG("E648: invalid buffer identifier in close");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 return FAIL;
1861 }
1862
1863#ifdef NBDEBUG
1864 if (buf->displayname != NULL)
1865 name = buf->displayname;
1866#endif
Bram Moolenaarf2330482008-06-24 20:19:36 +00001867 if (buf->bufp == NULL)
1868 {
1869 nbdebug((" invalid buffer identifier in close\n"));
1870 /* This message was commented out, probably because it can
1871 * happen when shutting down. */
1872 if (p_verbose > 0)
1873 EMSG("E649: invalid buffer identifier in close");
1874 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 nbdebug((" CLOSE %d: %s\n", bufno, name));
Bram Moolenaar67c53842010-05-22 18:28:27 +02001876#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 need_mouse_correct = TRUE;
Bram Moolenaar67c53842010-05-22 18:28:27 +02001878#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 if (buf->bufp != NULL)
1880 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD,
1881 buf->bufp->b_fnum, TRUE);
Bram Moolenaar8d602722006-08-08 19:34:19 +00001882 buf->bufp = NULL;
1883 buf->initDone = FALSE;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001884 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885/* =====================================================================*/
1886 }
1887 else if (streq((char *)cmd, "setStyle")) /* obsolete... */
1888 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001889 nbdebug((" setStyle is obsolete!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890/* =====================================================================*/
1891 }
1892 else if (streq((char *)cmd, "setExitDelay"))
1893 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001894 /* Only used in version 2.1. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895/* =====================================================================*/
1896 }
1897 else if (streq((char *)cmd, "defineAnnoType"))
1898 {
1899#ifdef FEAT_SIGNS
1900 int typeNum;
1901 char_u *typeName;
1902 char_u *tooltip;
1903 char_u *p;
1904 char_u *glyphFile;
Bram Moolenaar67c53842010-05-22 18:28:27 +02001905 int parse_error = FALSE;
1906 char_u *fg;
1907 char_u *bg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908
1909 if (buf == NULL)
1910 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001911 nbdebug((" invalid buffer identifier in defineAnnoType\n"));
1912 EMSG("E650: invalid buffer identifier in defineAnnoType");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 return FAIL;
1914 }
1915
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001916 cp = (char *)args;
1917 typeNum = strtol(cp, &cp, 10);
1918 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 args = skipwhite(args);
1920 typeName = (char_u *)nb_unquote(args, &args);
1921 args = skipwhite(args + 1);
1922 tooltip = (char_u *)nb_unquote(args, &args);
1923 args = skipwhite(args + 1);
1924
1925 p = (char_u *)nb_unquote(args, &args);
1926 glyphFile = vim_strsave_escaped(p, escape_chars);
1927 vim_free(p);
1928
1929 args = skipwhite(args + 1);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001930 p = skiptowhite(args);
1931 if (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02001933 *p = NUL;
1934 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02001936 fg = vim_strsave(args);
1937 bg = vim_strsave(p);
1938 if (STRLEN(fg) > MAX_COLOR_LENGTH || STRLEN(bg) > MAX_COLOR_LENGTH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02001940 EMSG("E532: highlighting color name too long in defineAnnoType");
1941 vim_free(typeName);
1942 parse_error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02001944 else if (typeName != NULL && tooltip != NULL && glyphFile != NULL)
1945 addsigntype(buf, typeNum, typeName, tooltip, glyphFile, fg, bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 else
1947 vim_free(typeName);
1948
1949 /* don't free typeName; it's used directly in addsigntype() */
Bram Moolenaar67c53842010-05-22 18:28:27 +02001950 vim_free(fg);
1951 vim_free(bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 vim_free(tooltip);
1953 vim_free(glyphFile);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001954 if (parse_error)
1955 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956
1957#endif
1958/* =====================================================================*/
1959 }
1960 else if (streq((char *)cmd, "addAnno"))
1961 {
1962#ifdef FEAT_SIGNS
1963 int serNum;
1964 int localTypeNum;
1965 int typeNum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 pos_T *pos;
1967
1968 if (buf == NULL || buf->bufp == NULL)
1969 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001970 nbdebug((" invalid buffer identifier in addAnno\n"));
1971 EMSG("E651: invalid buffer identifier in addAnno");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 return FAIL;
1973 }
1974
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001975 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001977 cp = (char *)args;
1978 serNum = strtol(cp, &cp, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979
1980 /* Get the typenr specific for this buffer and convert it to
1981 * the global typenumber, as used for the sign name. */
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001982 localTypeNum = strtol(cp, &cp, 10);
1983 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 typeNum = mapsigntype(buf, localTypeNum);
1985
1986 pos = get_off_or_lnum(buf->bufp, &args);
1987
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001988 cp = (char *)args;
Bram Moolenaar42335f52018-09-13 15:33:43 +02001989 vim_ignored = (int)strtol(cp, &cp, 10);
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001990 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991# ifdef NBDEBUG
Bram Moolenaar42335f52018-09-13 15:33:43 +02001992 if (vim_ignored != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001994 nbdebug((" partial line annotation -- Not Yet Implemented!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001995 }
1996# endif
1997 if (serNum >= GUARDEDOFFSET)
1998 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001999 nbdebug((" too many annotations! ignoring...\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 return FAIL;
2001 }
2002 if (pos)
2003 {
Bram Moolenaarec906222009-02-21 21:14:00 +00002004 coloncmd(":sign place %d line=%ld name=%d buffer=%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005 serNum, pos->lnum, typeNum, buf->bufp->b_fnum);
2006 if (typeNum == curPCtype)
2007 coloncmd(":sign jump %d buffer=%d", serNum,
2008 buf->bufp->b_fnum);
2009 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010#endif
2011/* =====================================================================*/
2012 }
2013 else if (streq((char *)cmd, "removeAnno"))
2014 {
2015#ifdef FEAT_SIGNS
2016 int serNum;
2017
2018 if (buf == NULL || buf->bufp == NULL)
2019 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002020 nbdebug((" invalid buffer identifier in removeAnno\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 return FAIL;
2022 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002023 do_update = 1;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002024 cp = (char *)args;
2025 serNum = strtol(cp, &cp, 10);
2026 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027 coloncmd(":sign unplace %d buffer=%d",
2028 serNum, buf->bufp->b_fnum);
2029 redraw_buf_later(buf->bufp, NOT_VALID);
2030#endif
2031/* =====================================================================*/
2032 }
2033 else if (streq((char *)cmd, "moveAnnoToFront"))
2034 {
2035#ifdef FEAT_SIGNS
Bram Moolenaarf2330482008-06-24 20:19:36 +00002036 nbdebug((" moveAnnoToFront: Not Yet Implemented!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037#endif
2038/* =====================================================================*/
2039 }
2040 else if (streq((char *)cmd, "guard") || streq((char *)cmd, "unguard"))
2041 {
2042 int len;
2043 pos_T first;
2044 pos_T last;
2045 pos_T *pos;
2046 int un = (cmd[0] == 'u');
2047 static int guardId = GUARDEDOFFSET;
2048
2049 if (skip >= SKIP_STOP)
2050 {
2051 nbdebug((" Skipping %s command\n", (char *) cmd));
2052 return OK;
2053 }
2054
2055 nb_init_graphics();
2056
2057 if (buf == NULL || buf->bufp == NULL)
2058 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002059 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 return FAIL;
2061 }
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002062 nb_set_curbuf(buf->bufp);
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002063 cp = (char *)args;
2064 off = strtol(cp, &cp, 10);
2065 len = strtol(cp, NULL, 10);
2066 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 pos = off2pos(buf->bufp, off);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002068 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 if (!pos)
2070 nbdebug((" no such start pos in %s, %ld\n", cmd, off));
2071 else
2072 {
2073 first = *pos;
2074 pos = off2pos(buf->bufp, off + len - 1);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002075 if (pos != NULL && pos->col == 0)
2076 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 /*
2078 * In Java Swing the offset is a position between 2
2079 * characters. If col == 0 then we really want the
2080 * previous line as the end.
2081 */
2082 pos = off2pos(buf->bufp, off + len - 2);
2083 }
2084 if (!pos)
2085 nbdebug((" no such end pos in %s, %ld\n",
2086 cmd, off + len - 1));
2087 else
2088 {
2089 long lnum;
2090 last = *pos;
2091 /* set highlight for region */
2092 nbdebug((" %sGUARD %ld,%d to %ld,%d\n", (un) ? "UN" : "",
2093 first.lnum, first.col,
2094 last.lnum, last.col));
2095#ifdef FEAT_SIGNS
2096 for (lnum = first.lnum; lnum <= last.lnum; lnum++)
2097 {
2098 if (un)
2099 {
2100 /* never used */
2101 }
2102 else
2103 {
2104 if (buf_findsigntype_id(buf->bufp, lnum,
2105 GUARDED) == 0)
2106 {
2107 coloncmd(
Bram Moolenaarec906222009-02-21 21:14:00 +00002108 ":sign place %d line=%ld name=%d buffer=%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 guardId++, lnum, GUARDED,
2110 buf->bufp->b_fnum);
2111 }
2112 }
2113 }
2114#endif
2115 redraw_buf_later(buf->bufp, NOT_VALID);
2116 }
2117 }
2118/* =====================================================================*/
2119 }
2120 else if (streq((char *)cmd, "startAtomic"))
2121 {
2122 inAtomic = 1;
2123/* =====================================================================*/
2124 }
2125 else if (streq((char *)cmd, "endAtomic"))
2126 {
2127 inAtomic = 0;
2128 if (needupdate)
2129 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002130 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131 needupdate = 0;
2132 }
2133/* =====================================================================*/
2134 }
2135 else if (streq((char *)cmd, "save"))
2136 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002137 /*
Bram Moolenaar9af41842016-09-25 21:45:05 +02002138 * NOTE - This command is obsolete wrt NetBeans. It's left in
Bram Moolenaar009b2592004-10-24 19:18:58 +00002139 * only for historical reasons.
2140 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 if (buf == NULL || buf->bufp == NULL)
2142 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002143 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 return FAIL;
2145 }
2146
2147 /* the following is taken from ex_cmds.c (do_wqall function) */
2148 if (bufIsChanged(buf->bufp))
2149 {
2150 /* Only write if the buffer can be written. */
2151 if (p_write
2152 && !buf->bufp->b_p_ro
2153 && buf->bufp->b_ffname != NULL
2154#ifdef FEAT_QUICKFIX
2155 && !bt_dontwrite(buf->bufp)
2156#endif
2157 )
2158 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002159 bufref_T bufref;
2160
2161 set_bufref(&bufref, buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 buf_write_all(buf->bufp, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 /* an autocommand may have deleted the buffer */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002164 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 buf->bufp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 }
2167 }
Bram Moolenaarf2330482008-06-24 20:19:36 +00002168 else
2169 {
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002170 nbdebug((" Buffer has no changes!\n"));
Bram Moolenaarf2330482008-06-24 20:19:36 +00002171 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172/* =====================================================================*/
2173 }
2174 else if (streq((char *)cmd, "netbeansBuffer"))
2175 {
2176 if (buf == NULL || buf->bufp == NULL)
2177 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002178 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179 return FAIL;
2180 }
2181 if (*args == 'T')
2182 {
2183 buf->bufp->b_netbeans_file = TRUE;
2184 buf->bufp->b_was_netbeans_file = TRUE;
2185 }
2186 else
2187 buf->bufp->b_netbeans_file = FALSE;
2188/* =====================================================================*/
2189 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00002190 else if (streq((char *)cmd, "specialKeys"))
2191 {
2192 special_keys(args);
2193/* =====================================================================*/
2194 }
2195 else if (streq((char *)cmd, "actionMenuItem"))
2196 {
2197 /* not used yet */
2198/* =====================================================================*/
2199 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 else if (streq((char *)cmd, "version"))
2201 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002202 /* not used yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 }
Bram Moolenaarf2330482008-06-24 20:19:36 +00002204 else
2205 {
2206 nbdebug(("Unrecognised command: %s\n", cmd));
2207 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208 /*
2209 * Unrecognized command is ignored.
2210 */
2211 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002212 if (inAtomic && do_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 {
2214 needupdate = 1;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002215 do_update = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 }
2217
Bram Moolenaar009b2592004-10-24 19:18:58 +00002218 /*
2219 * Is this needed? I moved the netbeans_Xt_connect() later during startup
Bram Moolenaar9af41842016-09-25 21:45:05 +02002220 * and it may no longer be necessary. If it's not needed then needupdate
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002221 * and do_update can also be removed.
Bram Moolenaar009b2592004-10-24 19:18:58 +00002222 */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002223 if (buf != NULL && buf->initDone && do_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 {
2225 update_screen(NOT_VALID);
2226 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02002227 cursor_on();
Bram Moolenaara338adc2018-01-31 20:51:47 +01002228 out_flush_cursor(TRUE, FALSE);
2229
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230 /* Quit a hit-return or more prompt. */
2231 if (State == HITRETURN || State == ASKMORE)
2232 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233#ifdef FEAT_GUI_GTK
Bram Moolenaard54a6882010-08-09 22:49:00 +02002234 if (gui.in_use && gtk_main_level() > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 gtk_main_quit();
2236#endif
2237 }
2238 }
2239
2240 return retval;
2241}
2242
2243
2244/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002245 * If "buf" is not the current buffer try changing to a window that edits this
2246 * buffer. If there is no such window then close the current buffer and set
2247 * the current buffer as "buf".
2248 */
2249 static void
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00002250nb_set_curbuf(buf_T *buf)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002251{
Bram Moolenaar404c9422015-03-14 15:35:52 +01002252 if (curbuf != buf) {
2253 if (buf_jump_open_win(buf) != NULL)
2254 return;
Bram Moolenaar404c9422015-03-14 15:35:52 +01002255 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf) != NULL)
2256 return;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002257 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaar404c9422015-03-14 15:35:52 +01002258 }
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002259}
2260
2261/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 * Process a vim colon command.
2263 */
2264 static void
2265coloncmd(char *cmd, ...)
2266{
2267 char buf[1024];
2268 va_list ap;
2269
2270 va_start(ap, cmd);
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02002271 vim_vsnprintf(buf, sizeof(buf), cmd, ap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 va_end(ap);
2273
2274 nbdebug((" COLONCMD %s\n", buf));
2275
2276/* ALT_INPUT_LOCK_ON; */
2277 do_cmdline((char_u *)buf, NULL, NULL, DOCMD_NOWAIT | DOCMD_KEYTYPED);
2278/* ALT_INPUT_LOCK_OFF; */
2279
2280 setcursor(); /* restore the cursor position */
Bram Moolenaara338adc2018-01-31 20:51:47 +01002281 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282}
2283
2284
2285/*
Bram Moolenaar009b2592004-10-24 19:18:58 +00002286 * Parse the specialKeys argument and issue the appropriate map commands.
2287 */
2288 static void
2289special_keys(char_u *args)
2290{
2291 char *save_str = nb_unquote(args, NULL);
2292 char *tok = strtok(save_str, " ");
2293 char *sep;
Bram Moolenaarca24e2c2017-01-22 15:19:22 +01002294#define KEYBUFLEN 64
2295 char keybuf[KEYBUFLEN];
Bram Moolenaar009b2592004-10-24 19:18:58 +00002296 char cmdbuf[256];
2297
2298 while (tok != NULL)
2299 {
2300 int i = 0;
2301
2302 if ((sep = strchr(tok, '-')) != NULL)
2303 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002304 *sep = NUL;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002305 while (*tok)
2306 {
2307 switch (*tok)
2308 {
2309 case 'A':
2310 case 'M':
2311 case 'C':
2312 case 'S':
2313 keybuf[i++] = *tok;
2314 keybuf[i++] = '-';
2315 break;
2316 }
2317 tok++;
2318 }
2319 tok++;
2320 }
2321
Bram Moolenaarca24e2c2017-01-22 15:19:22 +01002322 if (strlen(tok) + i < KEYBUFLEN)
2323 {
2324 strcpy(&keybuf[i], tok);
2325 vim_snprintf(cmdbuf, sizeof(cmdbuf),
2326 "<silent><%s> :nbkey %s<CR>", keybuf, keybuf);
2327 do_map(0, (char_u *)cmdbuf, NORMAL, FALSE);
2328 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00002329 tok = strtok(NULL, " ");
2330 }
2331 vim_free(save_str);
2332}
2333
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002334 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002335ex_nbclose(exarg_T *eap UNUSED)
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002336{
2337 netbeans_close();
2338}
Bram Moolenaar009b2592004-10-24 19:18:58 +00002339
2340 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002341ex_nbkey(exarg_T *eap)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002342{
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002343 (void)netbeans_keystring(eap->arg);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002344}
2345
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002346 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002347ex_nbstart(
2348 exarg_T *eap)
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002349{
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002350#ifdef FEAT_GUI
2351# if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \
Bram Moolenaar7ad7d012010-11-16 15:49:02 +01002352 && !defined(FEAT_GUI_W32)
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002353 if (gui.in_use)
2354 {
Bram Moolenaar7ad7d012010-11-16 15:49:02 +01002355 EMSG(_("E838: netbeans is not supported with this GUI"));
2356 return;
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002357 }
2358# endif
2359#endif
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002360 netbeans_open((char *)eap->arg, FALSE);
2361}
Bram Moolenaar009b2592004-10-24 19:18:58 +00002362
2363/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 * Initialize highlights and signs for use by netbeans (mostly obsolete)
2365 */
2366 static void
2367nb_init_graphics(void)
2368{
2369 static int did_init = FALSE;
2370
2371 if (!did_init)
2372 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002373 coloncmd(":highlight NBGuarded guibg=Cyan guifg=Black"
2374 " ctermbg=LightCyan ctermfg=Black");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 coloncmd(":sign define %d linehl=NBGuarded", GUARDED);
2376
2377 did_init = TRUE;
2378 }
2379}
2380
2381/*
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002382 * Convert key to netbeans name. This uses the global "mod_mask".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383 */
2384 static void
2385netbeans_keyname(int key, char *buf)
2386{
2387 char *name = 0;
2388 char namebuf[2];
2389 int ctrl = 0;
2390 int shift = 0;
2391 int alt = 0;
2392
2393 if (mod_mask & MOD_MASK_CTRL)
2394 ctrl = 1;
2395 if (mod_mask & MOD_MASK_SHIFT)
2396 shift = 1;
2397 if (mod_mask & MOD_MASK_ALT)
2398 alt = 1;
2399
2400
2401 switch (key)
2402 {
2403 case K_F1: name = "F1"; break;
2404 case K_S_F1: name = "F1"; shift = 1; break;
2405 case K_F2: name = "F2"; break;
2406 case K_S_F2: name = "F2"; shift = 1; break;
2407 case K_F3: name = "F3"; break;
2408 case K_S_F3: name = "F3"; shift = 1; break;
2409 case K_F4: name = "F4"; break;
2410 case K_S_F4: name = "F4"; shift = 1; break;
2411 case K_F5: name = "F5"; break;
2412 case K_S_F5: name = "F5"; shift = 1; break;
2413 case K_F6: name = "F6"; break;
2414 case K_S_F6: name = "F6"; shift = 1; break;
2415 case K_F7: name = "F7"; break;
2416 case K_S_F7: name = "F7"; shift = 1; break;
2417 case K_F8: name = "F8"; break;
2418 case K_S_F8: name = "F8"; shift = 1; break;
2419 case K_F9: name = "F9"; break;
2420 case K_S_F9: name = "F9"; shift = 1; break;
2421 case K_F10: name = "F10"; break;
2422 case K_S_F10: name = "F10"; shift = 1; break;
2423 case K_F11: name = "F11"; break;
2424 case K_S_F11: name = "F11"; shift = 1; break;
2425 case K_F12: name = "F12"; break;
2426 case K_S_F12: name = "F12"; shift = 1; break;
2427 default:
2428 if (key >= ' ' && key <= '~')
2429 {
2430 /* Allow ASCII characters. */
2431 name = namebuf;
2432 namebuf[0] = key;
2433 namebuf[1] = NUL;
2434 }
2435 else
2436 name = "X";
2437 break;
2438 }
2439
2440 buf[0] = '\0';
2441 if (ctrl)
2442 strcat(buf, "C");
2443 if (shift)
2444 strcat(buf, "S");
2445 if (alt)
2446 strcat(buf, "M"); /* META */
2447 if (ctrl || shift || alt)
2448 strcat(buf, "-");
2449 strcat(buf, name);
2450}
2451
Bram Moolenaar67c53842010-05-22 18:28:27 +02002452#if defined(FEAT_BEVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453/*
2454 * Function to be called for balloon evaluation. Grabs the text under the
2455 * cursor and sends it to the debugger for evaluation. The debugger should
2456 * respond with a showBalloon command when there is a useful result.
2457 */
Bram Moolenaard62bec82005-03-07 22:56:57 +00002458 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459netbeans_beval_cb(
2460 BalloonEval *beval,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002461 int state UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462{
Bram Moolenaard62bec82005-03-07 22:56:57 +00002463 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 char_u *text;
Bram Moolenaard62bec82005-03-07 22:56:57 +00002465 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466 int col;
Bram Moolenaard9462e32011-04-11 21:35:11 +02002467 char *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 char_u *p;
2469
2470 /* Don't do anything when 'ballooneval' is off, messages scrolled the
2471 * windows up or we have no connection. */
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01002472 if (!can_use_beval() || !NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473 return;
2474
Bram Moolenaard62bec82005-03-07 22:56:57 +00002475 if (get_beval_info(beval, TRUE, &wp, &lnum, &text, &col) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 {
2477 /* Send debugger request. Only when the text is of reasonable
2478 * length. */
2479 if (text != NULL && text[0] != NUL && STRLEN(text) < MAXPATHL)
2480 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002481 buf = (char *)alloc(MAXPATHL * 2 + 25);
2482 if (buf != NULL)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002483 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002484 p = nb_quote(text);
2485 if (p != NULL)
2486 {
2487 vim_snprintf(buf, MAXPATHL * 2 + 25,
2488 "0:balloonText=%d \"%s\"\n", r_cmdno, p);
2489 vim_free(p);
2490 }
2491 nbdebug(("EVT: %s", buf));
2492 nb_send(buf, "netbeans_beval_cb");
2493 vim_free(buf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002494 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 }
2496 vim_free(text);
2497 }
2498}
2499#endif
2500
2501/*
Bram Moolenaare0874f82016-01-24 20:36:41 +01002502 * Return TRUE when the netbeans connection is active.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002503 */
2504 int
2505netbeans_active(void)
2506{
2507 return NETBEANS_OPEN;
2508}
2509
Bram Moolenaar67c53842010-05-22 18:28:27 +02002510/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511 * Tell netbeans that the window was opened, ready for commands.
2512 */
2513 void
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002514netbeans_open(char *params, int doabort)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515{
2516 char *cmd = "0:startupDone=0\n";
2517
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002518 if (NETBEANS_OPEN)
2519 {
2520 EMSG(_("E511: netbeans already connected"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521 return;
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002522 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002524 if (netbeans_connect(params, doabort) != OK)
Bram Moolenaar67c53842010-05-22 18:28:27 +02002525 return;
Bram Moolenaard62bec82005-03-07 22:56:57 +00002526
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 nbdebug(("EVT: %s", cmd));
2528 nb_send(cmd, "netbeans_startup_done");
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002529
2530 /* update the screen after having added the gutter */
2531 changed_window_setting();
2532 update_screen(CLEAR);
2533 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02002534 cursor_on();
Bram Moolenaara338adc2018-01-31 20:51:47 +01002535 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536}
2537
Bram Moolenaar009b2592004-10-24 19:18:58 +00002538/*
2539 * Tell netbeans that we're exiting. This should be called right
2540 * before calling exit.
2541 */
2542 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002543netbeans_send_disconnect(void)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002544{
2545 char buf[128];
2546
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002547 if (NETBEANS_OPEN)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002548 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002549 sprintf(buf, "0:disconnect=%d\n", r_cmdno);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002550 nbdebug(("EVT: %s", buf));
2551 nb_send(buf, "netbeans_disconnect");
2552 }
2553}
2554
Bram Moolenaar3266c852016-04-30 18:07:05 +02002555#if defined(FEAT_EVAL) || defined(PROTO)
2556 int
2557set_ref_in_nb_channel(int copyID)
2558{
2559 int abort = FALSE;
2560 typval_T tv;
2561
2562 if (nb_channel != NULL)
2563 {
2564 tv.v_type = VAR_CHANNEL;
2565 tv.vval.v_channel = nb_channel;
2566 abort = set_ref_in_item(&tv, copyID, NULL, NULL);
2567 }
2568 return abort;
2569}
2570#endif
2571
Bram Moolenaar173c9852010-09-29 17:27:01 +02002572#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_W32) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573/*
2574 * Tell netbeans that the window was moved or resized.
2575 */
2576 void
2577netbeans_frame_moved(int new_x, int new_y)
2578{
2579 char buf[128];
2580
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002581 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 return;
2583
2584 sprintf(buf, "0:geometry=%d %d %d %d %d\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00002585 r_cmdno, (int)Columns, (int)Rows, new_x, new_y);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002586 /*nbdebug(("EVT: %s", buf)); happens too many times during a move */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 nb_send(buf, "netbeans_frame_moved");
2588}
2589#endif
2590
2591/*
Bram Moolenaar009b2592004-10-24 19:18:58 +00002592 * Tell netbeans the user opened or activated a file.
2593 */
2594 void
2595netbeans_file_activated(buf_T *bufp)
2596{
2597 int bufno = nb_getbufno(bufp);
2598 nbbuf_T *bp = nb_get_buf(bufno);
2599 char buffer[2*MAXPATHL];
2600 char_u *q;
2601
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002602 if (!NETBEANS_OPEN || !bufp->b_netbeans_file || dosetvisible)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002603 return;
2604
2605 q = nb_quote(bufp->b_ffname);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002606 if (q == NULL || bp == NULL)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002607 return;
2608
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002609 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n",
Bram Moolenaar009b2592004-10-24 19:18:58 +00002610 bufno,
2611 bufno,
2612 (char *)q,
2613 "T", /* open in NetBeans */
2614 "F"); /* modified */
2615
2616 vim_free(q);
2617 nbdebug(("EVT: %s", buffer));
2618
2619 nb_send(buffer, "netbeans_file_opened");
2620}
2621
2622/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 * Tell netbeans the user opened a file.
2624 */
2625 void
Bram Moolenaar009b2592004-10-24 19:18:58 +00002626netbeans_file_opened(buf_T *bufp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627{
Bram Moolenaar009b2592004-10-24 19:18:58 +00002628 int bufno = nb_getbufno(bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 char buffer[2*MAXPATHL];
2630 char_u *q;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002631 nbbuf_T *bp = nb_get_buf(nb_getbufno(bufp));
2632 int bnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002634 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 return;
2636
Bram Moolenaar009b2592004-10-24 19:18:58 +00002637 q = nb_quote(bufp->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 if (q == NULL)
2639 return;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002640 if (bp != NULL)
2641 bnum = bufno;
2642 else
2643 bnum = 0;
2644
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002645 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n",
Bram Moolenaar009b2592004-10-24 19:18:58 +00002646 bnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 0,
2648 (char *)q,
2649 "T", /* open in NetBeans */
2650 "F"); /* modified */
2651
2652 vim_free(q);
2653 nbdebug(("EVT: %s", buffer));
2654
2655 nb_send(buffer, "netbeans_file_opened");
Bram Moolenaarb7407d32018-02-03 17:36:27 +01002656 if (p_acd && vim_chdirfile(bufp->b_ffname, "auto") == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 shorten_fnames(TRUE);
2658}
2659
2660/*
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002661 * Tell netbeans that a file was deleted or wiped out.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 */
2663 void
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002664netbeans_file_killed(buf_T *bufp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665{
2666 int bufno = nb_getbufno(bufp);
2667 nbbuf_T *nbbuf = nb_get_buf(bufno);
2668 char buffer[2*MAXPATHL];
2669
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002670 if (!NETBEANS_OPEN || bufno == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 return;
2672
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002673 nbdebug(("netbeans_file_killed:\n"));
2674 nbdebug((" Killing bufno: %d", bufno));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675
Bram Moolenaar89d40322006-08-29 15:30:07 +00002676 sprintf(buffer, "%d:killed=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677
2678 nbdebug(("EVT: %s", buffer));
2679
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002680 nb_send(buffer, "netbeans_file_killed");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681
2682 if (nbbuf != NULL)
2683 nbbuf->bufp = NULL;
2684}
2685
2686/*
2687 * Get a pointer to the Netbeans buffer for Vim buffer "bufp".
2688 * Return NULL if there is no such buffer or changes are not to be reported.
2689 * Otherwise store the buffer number in "*bufnop".
2690 */
2691 static nbbuf_T *
2692nb_bufp2nbbuf_fire(buf_T *bufp, int *bufnop)
2693{
2694 int bufno;
2695 nbbuf_T *nbbuf;
2696
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002697 if (!NETBEANS_OPEN || !netbeansFireChanges)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 return NULL; /* changes are not reported at all */
2699
2700 bufno = nb_getbufno(bufp);
2701 if (bufno <= 0)
2702 return NULL; /* file is not known to NetBeans */
2703
2704 nbbuf = nb_get_buf(bufno);
2705 if (nbbuf != NULL && !nbbuf->fireChanges)
2706 return NULL; /* changes in this buffer are not reported */
2707
2708 *bufnop = bufno;
2709 return nbbuf;
2710}
2711
2712/*
2713 * Tell netbeans the user inserted some text.
2714 */
2715 void
2716netbeans_inserted(
2717 buf_T *bufp,
2718 linenr_T linenr,
2719 colnr_T col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 char_u *txt,
2721 int newlen)
2722{
2723 char_u *buf;
2724 int bufno;
2725 nbbuf_T *nbbuf;
2726 pos_T pos;
2727 long off;
2728 char_u *p;
2729 char_u *newtxt;
2730
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002731 if (!NETBEANS_OPEN)
2732 return;
2733
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2735 if (nbbuf == NULL)
2736 return;
2737
Bram Moolenaar009b2592004-10-24 19:18:58 +00002738 /* Don't mark as modified for initial read */
2739 if (nbbuf->insertDone)
2740 nbbuf->modified = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741
2742 pos.lnum = linenr;
2743 pos.col = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744 off = pos2off(bufp, &pos);
2745
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 /* send the "insert" EVT */
2747 newtxt = alloc(newlen + 1);
Bram Moolenaarb6356332005-07-18 21:40:44 +00002748 vim_strncpy(newtxt, txt, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749 p = nb_quote(newtxt);
2750 if (p != NULL)
2751 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002752 buf = alloc(128 + 2*newlen);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002753 sprintf((char *)buf, "%d:insert=%d %ld \"%s\"\n",
2754 bufno, r_cmdno, off, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755 nbdebug(("EVT: %s", buf));
2756 nb_send((char *)buf, "netbeans_inserted");
Bram Moolenaar009b2592004-10-24 19:18:58 +00002757 vim_free(p);
2758 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 vim_free(newtxt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761}
2762
2763/*
2764 * Tell netbeans some bytes have been removed.
2765 */
2766 void
2767netbeans_removed(
2768 buf_T *bufp,
2769 linenr_T linenr,
2770 colnr_T col,
2771 long len)
2772{
2773 char_u buf[128];
2774 int bufno;
2775 nbbuf_T *nbbuf;
2776 pos_T pos;
2777 long off;
2778
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002779 if (!NETBEANS_OPEN)
2780 return;
2781
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2783 if (nbbuf == NULL)
2784 return;
2785
2786 if (len < 0)
2787 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002788 nbdebug(("Negative len %ld in netbeans_removed()!\n", len));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789 return;
2790 }
2791
2792 nbbuf->modified = 1;
2793
2794 pos.lnum = linenr;
2795 pos.col = col;
2796
2797 off = pos2off(bufp, &pos);
2798
Bram Moolenaar89d40322006-08-29 15:30:07 +00002799 sprintf((char *)buf, "%d:remove=%d %ld %ld\n", bufno, r_cmdno, off, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 nbdebug(("EVT: %s", buf));
2801 nb_send((char *)buf, "netbeans_removed");
2802}
2803
2804/*
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01002805 * Send netbeans an unmodified command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002808netbeans_unmodified(buf_T *bufp UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809{
Bram Moolenaar09092152010-08-08 16:38:42 +02002810 /* This is a no-op, because NetBeans considers a buffer modified
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811 * even when all changes have been undone. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812}
2813
2814/*
Bram Moolenaar9af41842016-09-25 21:45:05 +02002815 * Send a button release event back to netbeans. It's up to netbeans
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 * to decide what to do (if anything) with this event.
2817 */
2818 void
2819netbeans_button_release(int button)
2820{
2821 char buf[128];
2822 int bufno;
2823
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002824 if (!NETBEANS_OPEN)
2825 return;
2826
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 bufno = nb_getbufno(curbuf);
2828
2829 if (bufno >= 0 && curwin != NULL && curwin->w_buffer == curbuf)
2830 {
Bram Moolenaar53f81742017-09-22 14:35:51 +02002831 int col = mouse_col - curwin->w_wincol
Bram Moolenaar67c53842010-05-22 18:28:27 +02002832 - ((curwin->w_p_nu || curwin->w_p_rnu) ? 9 : 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 long off = pos2off(curbuf, &curwin->w_cursor);
2834
2835 /* sync the cursor position */
Bram Moolenaar89d40322006-08-29 15:30:07 +00002836 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 nbdebug(("EVT: %s", buf));
2838 nb_send(buf, "netbeans_button_release[newDotAndMark]");
2839
Bram Moolenaar89d40322006-08-29 15:30:07 +00002840 sprintf(buf, "%d:buttonRelease=%d %d %ld %d\n", bufno, r_cmdno,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 button, (long)curwin->w_cursor.lnum, col);
2842 nbdebug(("EVT: %s", buf));
2843 nb_send(buf, "netbeans_button_release");
2844 }
2845}
2846
2847
2848/*
Bram Moolenaar143c38c2007-05-10 16:41:10 +00002849 * Send a keypress event back to netbeans. This usually simulates some
Bram Moolenaar009b2592004-10-24 19:18:58 +00002850 * kind of function key press. This function operates on a key code.
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002851 * Return TRUE when the key was sent, FALSE when the command has been
2852 * postponed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 */
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002854 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855netbeans_keycommand(int key)
2856{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 char keyName[60];
Bram Moolenaar009b2592004-10-24 19:18:58 +00002858
2859 netbeans_keyname(key, keyName);
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002860 return netbeans_keystring((char_u *)keyName);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002861}
2862
2863
2864/*
Bram Moolenaar143c38c2007-05-10 16:41:10 +00002865 * Send a keypress event back to netbeans. This usually simulates some
Bram Moolenaar009b2592004-10-24 19:18:58 +00002866 * kind of function key press. This function operates on a key string.
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002867 * Return TRUE when the key was sent, FALSE when the command has been
2868 * postponed.
Bram Moolenaar009b2592004-10-24 19:18:58 +00002869 */
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002870 static int
2871netbeans_keystring(char_u *keyName)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002872{
2873 char buf[2*MAXPATHL];
2874 int bufno = nb_getbufno(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 long off;
2876 char_u *q;
2877
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002878 if (!NETBEANS_OPEN)
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002879 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881 if (bufno == -1)
2882 {
2883 nbdebug(("got keycommand for non-NetBeans buffer, opening...\n"));
2884 q = curbuf->b_ffname == NULL ? (char_u *)""
2885 : nb_quote(curbuf->b_ffname);
2886 if (q == NULL)
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002887 return TRUE;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002888 vim_snprintf(buf, sizeof(buf), "0:fileOpened=%d \"%s\" %s %s\n", 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889 q,
2890 "T", /* open in NetBeans */
2891 "F"); /* modified */
2892 if (curbuf->b_ffname != NULL)
2893 vim_free(q);
2894 nbdebug(("EVT: %s", buf));
2895 nb_send(buf, "netbeans_keycommand");
2896
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002897 postpone_keycommand(keyName);
2898 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 }
2900
2901 /* sync the cursor position */
2902 off = pos2off(curbuf, &curwin->w_cursor);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002903 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904 nbdebug(("EVT: %s", buf));
2905 nb_send(buf, "netbeans_keycommand");
2906
2907 /* To work on Win32 you must apply patch to ExtEditor module
2908 * from ExtEdCaret.java.diff - make EVT_newDotAndMark handler
2909 * more synchronous
2910 */
2911
2912 /* now send keyCommand event */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002913 vim_snprintf(buf, sizeof(buf), "%d:keyCommand=%d \"%s\"\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00002914 bufno, r_cmdno, keyName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 nbdebug(("EVT: %s", buf));
2916 nb_send(buf, "netbeans_keycommand");
2917
2918 /* New: do both at once and include the lnum/col. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002919 vim_snprintf(buf, sizeof(buf), "%d:keyAtPos=%d \"%s\" %ld %ld/%ld\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00002920 bufno, r_cmdno, keyName,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 off, (long)curwin->w_cursor.lnum, (long)curwin->w_cursor.col);
2922 nbdebug(("EVT: %s", buf));
2923 nb_send(buf, "netbeans_keycommand");
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002924 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925}
2926
2927
2928/*
2929 * Send a save event to netbeans.
2930 */
2931 void
2932netbeans_save_buffer(buf_T *bufp)
2933{
2934 char_u buf[64];
2935 int bufno;
2936 nbbuf_T *nbbuf;
2937
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002938 if (!NETBEANS_OPEN)
2939 return;
2940
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2942 if (nbbuf == NULL)
2943 return;
2944
2945 nbbuf->modified = 0;
2946
Bram Moolenaar89d40322006-08-29 15:30:07 +00002947 sprintf((char *)buf, "%d:save=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948 nbdebug(("EVT: %s", buf));
2949 nb_send((char *)buf, "netbeans_save_buffer");
2950}
2951
2952
2953/*
2954 * Send remove command to netbeans (this command has been turned off).
2955 */
2956 void
2957netbeans_deleted_all_lines(buf_T *bufp)
2958{
2959 char_u buf[64];
2960 int bufno;
2961 nbbuf_T *nbbuf;
2962
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002963 if (!NETBEANS_OPEN)
2964 return;
2965
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2967 if (nbbuf == NULL)
2968 return;
2969
Bram Moolenaar009b2592004-10-24 19:18:58 +00002970 /* Don't mark as modified for initial read */
2971 if (nbbuf->insertDone)
2972 nbbuf->modified = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973
Bram Moolenaar89d40322006-08-29 15:30:07 +00002974 sprintf((char *)buf, "%d:remove=%d 0 -1\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975 nbdebug(("EVT(suppressed): %s", buf));
2976/* nb_send(buf, "netbeans_deleted_all_lines"); */
2977}
2978
2979
2980/*
2981 * See if the lines are guarded. The top and bot parameters are from
2982 * u_savecommon(), these are the line above the change and the line below the
2983 * change.
2984 */
2985 int
2986netbeans_is_guarded(linenr_T top, linenr_T bot)
2987{
2988 signlist_T *p;
2989 int lnum;
2990
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002991 if (!NETBEANS_OPEN)
2992 return FALSE;
2993
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 for (p = curbuf->b_signlist; p != NULL; p = p->next)
2995 if (p->id >= GUARDEDOFFSET)
2996 for (lnum = top + 1; lnum < bot; lnum++)
2997 if (lnum == p->lnum)
2998 return TRUE;
2999
3000 return FALSE;
3001}
3002
Bram Moolenaar173c9852010-09-29 17:27:01 +02003003#if defined(FEAT_GUI_X11) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004/*
3005 * We have multiple signs to draw at the same location. Draw the
3006 * multi-sign indicator instead. This is the Motif version.
3007 */
3008 void
3009netbeans_draw_multisign_indicator(int row)
3010{
3011 int i;
3012 int y;
3013 int x;
3014
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003015 if (!NETBEANS_OPEN)
3016 return;
3017
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018 x = 0;
3019 y = row * gui.char_height + 2;
3020
3021 for (i = 0; i < gui.char_height - 3; i++)
3022 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y++);
3023
3024 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+0, y);
3025 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3026 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+4, y++);
3027 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+1, y);
3028 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3029 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+3, y++);
3030 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3031}
Bram Moolenaar173c9852010-09-29 17:27:01 +02003032#endif /* FEAT_GUI_X11 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033
Bram Moolenaar64404472010-06-26 06:24:45 +02003034#if defined(FEAT_GUI_GTK) && !defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035/*
3036 * We have multiple signs to draw at the same location. Draw the
3037 * multi-sign indicator instead. This is the GTK/Gnome version.
3038 */
3039 void
3040netbeans_draw_multisign_indicator(int row)
3041{
3042 int i;
3043 int y;
3044 int x;
Bram Moolenaar98921892016-02-23 17:14:37 +01003045#if GTK_CHECK_VERSION(3,0,0)
3046 cairo_t *cr = NULL;
3047#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 GdkDrawable *drawable = gui.drawarea->window;
Bram Moolenaar98921892016-02-23 17:14:37 +01003049#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003051 if (!NETBEANS_OPEN)
3052 return;
3053
Bram Moolenaar98921892016-02-23 17:14:37 +01003054#if GTK_CHECK_VERSION(3,0,0)
3055 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003056 cairo_set_source_rgba(cr,
3057 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
3058 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01003059#endif
3060
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 x = 0;
3062 y = row * gui.char_height + 2;
3063
3064 for (i = 0; i < gui.char_height - 3; i++)
Bram Moolenaar98921892016-02-23 17:14:37 +01003065#if GTK_CHECK_VERSION(3,0,0)
3066 cairo_rectangle(cr, x+2, y++, 1, 1);
3067#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 gdk_draw_point(drawable, gui.text_gc, x+2, y++);
Bram Moolenaar98921892016-02-23 17:14:37 +01003069#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070
Bram Moolenaar98921892016-02-23 17:14:37 +01003071#if GTK_CHECK_VERSION(3,0,0)
3072 cairo_rectangle(cr, x+0, y, 1, 1);
3073 cairo_rectangle(cr, x+2, y, 1, 1);
3074 cairo_rectangle(cr, x+4, y++, 1, 1);
3075 cairo_rectangle(cr, x+1, y, 1, 1);
3076 cairo_rectangle(cr, x+2, y, 1, 1);
3077 cairo_rectangle(cr, x+3, y++, 1, 1);
3078 cairo_rectangle(cr, x+2, y, 1, 1);
3079#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080 gdk_draw_point(drawable, gui.text_gc, x+0, y);
3081 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3082 gdk_draw_point(drawable, gui.text_gc, x+4, y++);
3083 gdk_draw_point(drawable, gui.text_gc, x+1, y);
3084 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3085 gdk_draw_point(drawable, gui.text_gc, x+3, y++);
3086 gdk_draw_point(drawable, gui.text_gc, x+2, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003087#endif
3088
3089#if GTK_CHECK_VERSION(3,0,0)
3090 cairo_destroy(cr);
3091#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092}
3093#endif /* FEAT_GUI_GTK */
3094
3095/*
3096 * If the mouse is clicked in the gutter of a line with multiple
3097 * annotations, cycle through the set of signs.
3098 */
3099 void
3100netbeans_gutter_click(linenr_T lnum)
3101{
3102 signlist_T *p;
3103
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003104 if (!NETBEANS_OPEN)
3105 return;
3106
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107 for (p = curbuf->b_signlist; p != NULL; p = p->next)
3108 {
3109 if (p->lnum == lnum && p->next && p->next->lnum == lnum)
3110 {
3111 signlist_T *tail;
3112
3113 /* remove "p" from list, reinsert it at the tail of the sublist */
3114 if (p->prev)
3115 p->prev->next = p->next;
3116 else
3117 curbuf->b_signlist = p->next;
3118 p->next->prev = p->prev;
3119 /* now find end of sublist and insert p */
3120 for (tail = p->next;
3121 tail->next && tail->next->lnum == lnum
3122 && tail->next->id < GUARDEDOFFSET;
3123 tail = tail->next)
3124 ;
3125 /* tail now points to last entry with same lnum (except
3126 * that "guarded" annotations are always last) */
3127 p->next = tail->next;
3128 if (tail->next)
3129 tail->next->prev = p;
3130 p->prev = tail;
3131 tail->next = p;
3132 update_debug_sign(curbuf, lnum);
3133 break;
3134 }
3135 }
3136}
3137
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138/*
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003139 * Add a sign of the requested type at the requested location.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 *
3141 * Reverse engineering:
3142 * Apparently an annotation is defined the first time it is used in a buffer.
3143 * When the same annotation is used in two buffers, the second time we do not
3144 * need to define a new sign name but reuse the existing one. But since the
3145 * ID number used in the second buffer starts counting at one again, a mapping
3146 * is made from the ID specifically for the buffer to the global sign name
3147 * (which is a number).
3148 *
3149 * globalsignmap[] stores the signs that have been defined globally.
3150 * buf->signmapused[] maps buffer-local annotation IDs to an index in
3151 * globalsignmap[].
3152 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 static void
3154addsigntype(
3155 nbbuf_T *buf,
3156 int typeNum,
3157 char_u *typeName,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003158 char_u *tooltip UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159 char_u *glyphFile,
Bram Moolenaar67c53842010-05-22 18:28:27 +02003160 char_u *fg,
3161 char_u *bg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163 int i, j;
Bram Moolenaar67c53842010-05-22 18:28:27 +02003164 int use_fg = (*fg && STRCMP(fg, "none") != 0);
3165 int use_bg = (*bg && STRCMP(bg, "none") != 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166
3167 for (i = 0; i < globalsignmapused; i++)
3168 if (STRCMP(typeName, globalsignmap[i]) == 0)
3169 break;
3170
3171 if (i == globalsignmapused) /* not found; add it to global map */
3172 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003173 nbdebug(("DEFINEANNOTYPE(%d,%s,%s,%s,%s,%s)\n",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174 typeNum, typeName, tooltip, glyphFile, fg, bg));
3175 if (use_fg || use_bg)
3176 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003177 char fgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1];
3178 char bgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1];
3179 char *ptr;
3180 int value;
3181
3182 value = strtol((char *)fg, &ptr, 10);
3183 if (ptr != (char *)fg)
3184 sprintf(fgbuf, "guifg=#%06x", value & 0xFFFFFF);
3185 else
3186 sprintf(fgbuf, "guifg=%s ctermfg=%s", fg, fg);
3187
3188 value = strtol((char *)bg, &ptr, 10);
3189 if (ptr != (char *)bg)
3190 sprintf(bgbuf, "guibg=#%06x", value & 0xFFFFFF);
3191 else
3192 sprintf(bgbuf, "guibg=%s ctermbg=%s", bg, bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193
3194 coloncmd(":highlight NB_%s %s %s", typeName, (use_fg) ? fgbuf : "",
3195 (use_bg) ? bgbuf : "");
3196 if (*glyphFile == NUL)
3197 /* no glyph, line highlighting only */
3198 coloncmd(":sign define %d linehl=NB_%s", i + 1, typeName);
3199 else if (vim_strsize(glyphFile) <= 2)
3200 /* one- or two-character glyph name, use as text glyph with
3201 * texthl */
3202 coloncmd(":sign define %d text=%s texthl=NB_%s", i + 1,
3203 glyphFile, typeName);
3204 else
3205 /* glyph, line highlighting */
3206 coloncmd(":sign define %d icon=%s linehl=NB_%s", i + 1,
3207 glyphFile, typeName);
3208 }
3209 else
3210 /* glyph, no line highlighting */
3211 coloncmd(":sign define %d icon=%s", i + 1, glyphFile);
3212
3213 if (STRCMP(typeName,"CurrentPC") == 0)
3214 curPCtype = typeNum;
3215
3216 if (globalsignmapused == globalsignmaplen)
3217 {
3218 if (globalsignmaplen == 0) /* first allocation */
3219 {
3220 globalsignmaplen = 20;
3221 globalsignmap = (char **)alloc_clear(globalsignmaplen*sizeof(char *));
3222 }
3223 else /* grow it */
3224 {
3225 int incr;
3226 int oldlen = globalsignmaplen;
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003227 char **t_globalsignmap = globalsignmap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228
3229 globalsignmaplen *= 2;
3230 incr = globalsignmaplen - oldlen;
3231 globalsignmap = (char **)vim_realloc(globalsignmap,
3232 globalsignmaplen * sizeof(char *));
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003233 if (globalsignmap == NULL)
3234 {
3235 vim_free(t_globalsignmap);
3236 globalsignmaplen = 0;
3237 return;
3238 }
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003239 vim_memset(globalsignmap + oldlen, 0, incr * sizeof(char *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240 }
3241 }
3242
3243 globalsignmap[i] = (char *)typeName;
3244 globalsignmapused = i + 1;
3245 }
3246
3247 /* check local map; should *not* be found! */
3248 for (j = 0; j < buf->signmapused; j++)
3249 if (buf->signmap[j] == i + 1)
3250 return;
3251
3252 /* add to local map */
3253 if (buf->signmapused == buf->signmaplen)
3254 {
3255 if (buf->signmaplen == 0) /* first allocation */
3256 {
3257 buf->signmaplen = 5;
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003258 buf->signmap = (int *)alloc_clear(buf->signmaplen * sizeof(int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 }
3260 else /* grow it */
3261 {
3262 int incr;
3263 int oldlen = buf->signmaplen;
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003264 int *t_signmap = buf->signmap;
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003265
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 buf->signmaplen *= 2;
3267 incr = buf->signmaplen - oldlen;
3268 buf->signmap = (int *)vim_realloc(buf->signmap,
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003269 buf->signmaplen * sizeof(int));
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003270 if (buf->signmap == NULL)
3271 {
3272 vim_free(t_signmap);
3273 buf->signmaplen = 0;
3274 return;
3275 }
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003276 vim_memset(buf->signmap + oldlen, 0, incr * sizeof(int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277 }
3278 }
3279
3280 buf->signmap[buf->signmapused++] = i + 1;
3281
3282}
3283
3284
3285/*
3286 * See if we have the requested sign type in the buffer.
3287 */
3288 static int
3289mapsigntype(nbbuf_T *buf, int localsigntype)
3290{
3291 if (--localsigntype >= 0 && localsigntype < buf->signmapused)
3292 return buf->signmap[localsigntype];
3293
3294 return 0;
3295}
3296
3297
3298/*
3299 * Compute length of buffer, don't print anything.
3300 */
3301 static long
3302get_buf_size(buf_T *bufp)
3303{
3304 linenr_T lnum;
3305 long char_count = 0;
3306 int eol_size;
3307 long last_check = 100000L;
3308
3309 if (bufp->b_ml.ml_flags & ML_EMPTY)
3310 return 0;
3311 else
3312 {
3313 if (get_fileformat(bufp) == EOL_DOS)
3314 eol_size = 2;
3315 else
3316 eol_size = 1;
3317 for (lnum = 1; lnum <= bufp->b_ml.ml_line_count; ++lnum)
3318 {
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00003319 char_count += (long)STRLEN(ml_get_buf(bufp, lnum, FALSE))
3320 + eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 /* Check for a CTRL-C every 100000 characters */
3322 if (char_count > last_check)
3323 {
3324 ui_breakcheck();
3325 if (got_int)
3326 return char_count;
3327 last_check = char_count + 100000L;
3328 }
3329 }
3330 /* Correction for when last line doesn't have an EOL. */
Bram Moolenaar34d72d42015-07-17 14:18:08 +02003331 if (!bufp->b_p_eol && (bufp->b_p_bin || !bufp->b_p_fixeol))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332 char_count -= eol_size;
3333 }
3334
3335 return char_count;
3336}
3337
3338/*
3339 * Convert character offset to lnum,col
3340 */
3341 static pos_T *
3342off2pos(buf_T *buf, long offset)
3343{
3344 linenr_T lnum;
3345 static pos_T pos;
3346
3347 pos.lnum = 0;
3348 pos.col = 0;
3349#ifdef FEAT_VIRTUALEDIT
3350 pos.coladd = 0;
3351#endif
3352
3353 if (!(buf->b_ml.ml_flags & ML_EMPTY))
3354 {
3355 if ((lnum = ml_find_line_or_offset(buf, (linenr_T)0, &offset)) < 0)
3356 return NULL;
3357 pos.lnum = lnum;
3358 pos.col = offset;
3359 }
3360
3361 return &pos;
3362}
3363
3364/*
3365 * Convert an argument in the form "1234" to an offset and compute the
3366 * lnum/col from it. Convert an argument in the form "123/12" directly to a
3367 * lnum/col.
3368 * "argp" is advanced to after the argument.
3369 * Return a pointer to the position, NULL if something is wrong.
3370 */
3371 static pos_T *
3372get_off_or_lnum(buf_T *buf, char_u **argp)
3373{
3374 static pos_T mypos;
3375 long off;
3376
3377 off = strtol((char *)*argp, (char **)argp, 10);
3378 if (**argp == '/')
3379 {
3380 mypos.lnum = (linenr_T)off;
3381 ++*argp;
3382 mypos.col = strtol((char *)*argp, (char **)argp, 10);
3383#ifdef FEAT_VIRTUALEDIT
3384 mypos.coladd = 0;
3385#endif
3386 return &mypos;
3387 }
3388 return off2pos(buf, off);
3389}
3390
3391
3392/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003393 * Convert (lnum,col) to byte offset in the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394 */
3395 static long
3396pos2off(buf_T *buf, pos_T *pos)
3397{
3398 long offset = 0;
3399
3400 if (!(buf->b_ml.ml_flags & ML_EMPTY))
3401 {
3402 if ((offset = ml_find_line_or_offset(buf, pos->lnum, 0)) < 0)
3403 return 0;
3404 offset += pos->col;
3405 }
3406
3407 return offset;
3408}
3409
3410
Bram Moolenaar009b2592004-10-24 19:18:58 +00003411/*
Bram Moolenaar9af41842016-09-25 21:45:05 +02003412 * This message is printed after NetBeans opens a new file. It's
Bram Moolenaar009b2592004-10-24 19:18:58 +00003413 * similar to the message readfile() uses, but since NetBeans
3414 * doesn't normally call readfile, we do our own.
3415 */
3416 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003417print_read_msg(nbbuf_T *buf)
Bram Moolenaar009b2592004-10-24 19:18:58 +00003418{
3419 int lnum = buf->bufp->b_ml.ml_line_count;
Bram Moolenaar8767f522016-07-01 17:17:39 +02003420 off_T nchars = buf->bufp->b_orig_size;
Bram Moolenaar009b2592004-10-24 19:18:58 +00003421 char_u c;
3422
3423 msg_add_fname(buf->bufp, buf->bufp->b_ffname);
3424 c = FALSE;
3425
3426 if (buf->bufp->b_p_ro)
3427 {
3428 STRCAT(IObuff, shortmess(SHM_RO) ? _("[RO]") : _("[readonly]"));
3429 c = TRUE;
3430 }
3431 if (!buf->bufp->b_start_eol)
3432 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003433 STRCAT(IObuff, shortmess(SHM_LAST) ? _("[noeol]")
3434 : _("[Incomplete last line]"));
Bram Moolenaar009b2592004-10-24 19:18:58 +00003435 c = TRUE;
3436 }
3437 msg_add_lines(c, (long)lnum, nchars);
3438
3439 /* Now display it */
Bram Moolenaard23a8232018-02-10 18:45:26 +01003440 VIM_CLEAR(keep_msg);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003441 msg_scrolled_ign = TRUE;
3442 msg_trunc_attr(IObuff, FALSE, 0);
3443 msg_scrolled_ign = FALSE;
3444}
3445
3446
3447/*
Bram Moolenaar67c53842010-05-22 18:28:27 +02003448 * Print a message after NetBeans writes the file. This message should be
3449 * identical to the standard message a non-netbeans user would see when
3450 * writing a file.
Bram Moolenaar009b2592004-10-24 19:18:58 +00003451 */
3452 static void
Bram Moolenaar8767f522016-07-01 17:17:39 +02003453print_save_msg(nbbuf_T *buf, off_T nchars)
Bram Moolenaar009b2592004-10-24 19:18:58 +00003454{
3455 char_u c;
3456 char_u *p;
3457
3458 if (nchars >= 0)
3459 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003460 /* put fname in IObuff with quotes */
3461 msg_add_fname(buf->bufp, buf->bufp->b_ffname);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003462 c = FALSE;
3463
3464 msg_add_lines(c, buf->bufp->b_ml.ml_line_count,
Bram Moolenaar914703b2010-05-31 21:59:46 +02003465 buf->bufp->b_orig_size);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003466
Bram Moolenaard23a8232018-02-10 18:45:26 +01003467 VIM_CLEAR(keep_msg);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003468 msg_scrolled_ign = TRUE;
3469 p = msg_trunc_attr(IObuff, FALSE, 0);
3470 if ((msg_scrolled && !need_wait_return) || !buf->initDone)
3471 {
3472 /* Need to repeat the message after redrawing when:
3473 * - When reading from stdin (the screen will be cleared next).
3474 * - When restart_edit is set (otherwise there will be a delay
3475 * before redrawing).
3476 * - When the screen was scrolled but there is no wait-return
3477 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003478 set_keep_msg(p, 0);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003479 }
3480 msg_scrolled_ign = FALSE;
3481 /* add_to_input_buf((char_u *)"\f", 1); */
3482 }
3483 else
3484 {
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003485 char_u msgbuf[IOSIZE];
Bram Moolenaar009b2592004-10-24 19:18:58 +00003486
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003487 vim_snprintf((char *)msgbuf, IOSIZE,
3488 _("E505: %s is read-only (add ! to override)"), IObuff);
3489 nbdebug((" %s\n", msgbuf));
3490 emsg(msgbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003491 }
3492}
3493
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494#endif /* defined(FEAT_NETBEANS_INTG) */