blob: 2d55b8006531d0373ebc3a208525e8709b09b69c [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 Moolenaar4f974752019-02-17 17:44:42 +010030#ifndef MSWIN
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 Moolenaarf9e3e092019-01-13 23:38:42 +0100260 semsg(_("E668: Wrong access mode for NetBeans connection info file: \"%s\""),
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261 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;
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100407 buffer = channel_get(nb_channel, PART_SOCK, NULL);
Bram Moolenaar5ce4a0b2016-06-08 20:17:23 +0200408 /* "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 Moolenaarf9e3e092019-01-13 23:38:42 +0100480 semsg("E627: missing colon: %s", cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481 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 Moolenaarf9e3e092019-01-13 23:38:42 +0100504 semsg("E628: missing ! or / in: %s", cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 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));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100521 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 Moolenaar964b3742019-05-24 18:54:09 +0200793 reply = alloc(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 Moolenaar964b3742019-05-24 18:54:09 +0200822 char_u *buf = alloc(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 Moolenaar18a4ba22019-05-24 19:39:03 +0200866 result = (char *)alloc_clear(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 Moolenaarc85c8fc2019-02-17 19:12:21 +0100937 nbdebug((" NEW LINE %ld: %s\n", lnum, newtext));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000938 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 Moolenaar964b3742019-05-24 18:54:09 +0200954 p = alloc(len_first + len_other + 1);
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000955 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"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001035 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"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001058 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"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001080 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;
Bram Moolenaar964b3742019-05-24 18:54:09 +02001087 text = alloc((len > 0) ? ((len + nlines) * 2) : 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 if (text == NULL)
1089 {
1090 nbdebug((" nb_do_cmd: getText has null text field\n"));
1091 retval = FAIL;
1092 }
1093 else
1094 {
1095 p = text;
1096 *p++ = '\"';
1097 for (; lno <= nlines ; lno++)
1098 {
1099 line = nb_quote(ml_get_buf(buf->bufp, lno, FALSE));
1100 if (line != NULL)
1101 {
1102 STRCPY(p, line);
1103 p += STRLEN(line);
1104 *p++ = '\\';
1105 *p++ = 'n';
Bram Moolenaar009b2592004-10-24 19:18:58 +00001106 vim_free(line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 }
1109 *p++ = '\"';
1110 *p = '\0';
1111 }
1112 }
1113 if (text == NULL)
1114 nb_reply_text(cmdno, (char_u *)"");
1115 else
1116 {
1117 nb_reply_text(cmdno, text);
1118 vim_free(text);
1119 }
1120/* =====================================================================*/
1121 }
1122 else if (streq((char *)cmd, "remove"))
1123 {
1124 long count;
1125 pos_T first, last;
1126 pos_T *pos;
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001127 pos_T *next;
1128 linenr_T del_from_lnum, del_to_lnum; /* lines to be deleted as a whole */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 int oldFire = netbeansFireChanges;
1130 int oldSuppress = netbeansSuppressNoLines;
1131 int wasChanged;
1132
1133 if (skip >= SKIP_STOP)
1134 {
1135 nbdebug((" Skipping %s command\n", (char *) cmd));
1136 nb_reply_nil(cmdno);
1137 return OK;
1138 }
1139
1140 if (buf == NULL || buf->bufp == NULL)
1141 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001142 nbdebug((" invalid buffer identifier in remove\n"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001143 emsg("E634: invalid buffer identifier in remove");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 retval = FAIL;
1145 }
1146 else
1147 {
1148 netbeansFireChanges = FALSE;
1149 netbeansSuppressNoLines = TRUE;
1150
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001151 nb_set_curbuf(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 wasChanged = buf->bufp->b_changed;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001153 cp = (char *)args;
1154 off = strtol(cp, &cp, 10);
1155 count = strtol(cp, &cp, 10);
1156 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 /* delete "count" chars, starting at "off" */
1158 pos = off2pos(buf->bufp, off);
1159 if (!pos)
1160 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001161 nbdebug((" !bad position\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 nb_reply_text(cmdno, (char_u *)"!bad position");
1163 netbeansFireChanges = oldFire;
1164 netbeansSuppressNoLines = oldSuppress;
1165 return FAIL;
1166 }
1167 first = *pos;
Bram Moolenaarc85c8fc2019-02-17 19:12:21 +01001168 nbdebug((" FIRST POS: line %ld, col %d\n",
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001169 first.lnum, first.col));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 pos = off2pos(buf->bufp, off+count-1);
1171 if (!pos)
1172 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001173 nbdebug((" !bad count\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 nb_reply_text(cmdno, (char_u *)"!bad count");
1175 netbeansFireChanges = oldFire;
1176 netbeansSuppressNoLines = oldSuppress;
1177 return FAIL;
1178 }
1179 last = *pos;
Bram Moolenaarc85c8fc2019-02-17 19:12:21 +01001180 nbdebug((" LAST POS: line %ld, col %d\n",
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001181 last.lnum, last.col));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001182 del_from_lnum = first.lnum;
1183 del_to_lnum = last.lnum;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001184 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001186 /* Get the position of the first byte after the deleted
1187 * section. "next" is NULL when deleting to the end of the
1188 * file. */
1189 next = off2pos(buf->bufp, off + count);
1190
1191 /* Remove part of the first line. */
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001192 if (first.col != 0
1193 || (next != NULL && first.lnum == next->lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 {
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001195 if (first.lnum != last.lnum
1196 || (next != NULL && first.lnum != next->lnum))
1197 {
1198 /* remove to the end of the first line */
1199 nb_partialremove(first.lnum, first.col,
1200 (colnr_T)MAXCOL);
1201 if (first.lnum == last.lnum)
1202 {
1203 /* Partial line to remove includes the end of
1204 * line. Join the line with the next one, have
1205 * the next line deleted below. */
1206 nb_joinlines(first.lnum, next->lnum);
1207 del_to_lnum = next->lnum;
1208 }
1209 }
1210 else
1211 {
1212 /* remove within one line */
1213 nb_partialremove(first.lnum, first.col, last.col);
1214 }
1215 ++del_from_lnum; /* don't delete the first line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 }
1217
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001218 /* Remove part of the last line. */
1219 if (first.lnum != last.lnum && next != NULL
1220 && next->col != 0 && last.lnum == next->lnum)
1221 {
1222 nb_partialremove(last.lnum, 0, last.col);
1223 if (del_from_lnum > first.lnum)
1224 {
1225 /* Join end of last line to start of first line; last
1226 * line is deleted below. */
1227 nb_joinlines(first.lnum, last.lnum);
1228 }
1229 else
1230 /* First line is deleted as a whole, keep the last
1231 * line. */
1232 --del_to_lnum;
1233 }
1234
1235 /* First is partial line; last line to remove includes
1236 * the end of line; join first line to line following last
1237 * line; line following last line is deleted below. */
1238 if (first.lnum != last.lnum && del_from_lnum > first.lnum
1239 && next != NULL && last.lnum != next->lnum)
1240 {
1241 nb_joinlines(first.lnum, next->lnum);
1242 del_to_lnum = next->lnum;
1243 }
1244
1245 /* Delete whole lines if there are any. */
1246 if (del_to_lnum >= del_from_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 {
1248 int i;
1249
1250 /* delete signs from the lines being deleted */
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001251 for (i = del_from_lnum; i <= del_to_lnum; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252 {
Bram Moolenaar7d83bf42018-12-29 18:53:55 +01001253 int id = buf_findsign_id(buf->bufp, (linenr_T)i, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 if (id > 0)
1255 {
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001256 nbdebug((" Deleting sign %d on line %d\n",
1257 id, i));
Bram Moolenaar7d83bf42018-12-29 18:53:55 +01001258 buf_delsign(buf->bufp, 0, id, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 }
1260 else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001261 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 nbdebug((" No sign on line %d\n", i));
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001263 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 }
1265
Bram Moolenaarc85c8fc2019-02-17 19:12:21 +01001266 nbdebug((" Deleting lines %ld through %ld\n",
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001267 del_from_lnum, del_to_lnum));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001268 curwin->w_cursor.lnum = del_from_lnum;
1269 curwin->w_cursor.col = 0;
1270 del_lines(del_to_lnum - del_from_lnum + 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 }
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001272
1273 /* Leave cursor at first deleted byte. */
1274 curwin->w_cursor = first;
1275 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 buf->bufp->b_changed = wasChanged; /* logically unchanged */
1277 netbeansFireChanges = oldFire;
1278 netbeansSuppressNoLines = oldSuppress;
1279
1280 u_blockfree(buf->bufp);
1281 u_clearall(buf->bufp);
1282 }
1283 nb_reply_nil(cmdno);
1284/* =====================================================================*/
1285 }
1286 else if (streq((char *)cmd, "insert"))
1287 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288 char_u *to_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289
1290 if (skip >= SKIP_STOP)
1291 {
1292 nbdebug((" Skipping %s command\n", (char *) cmd));
1293 nb_reply_nil(cmdno);
1294 return OK;
1295 }
1296
1297 /* get offset */
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001298 cp = (char *)args;
1299 off = strtol(cp, &cp, 10);
1300 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301
1302 /* get text to be inserted */
1303 args = skipwhite(args);
1304 args = to_free = (char_u *)nb_unquote(args, NULL);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001305 /*
1306 nbdebug((" CHUNK[%d]: %d bytes at offset %d\n",
1307 buf->bufp->b_ml.ml_line_count, STRLEN(args), off));
1308 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309
1310 if (buf == NULL || buf->bufp == NULL)
1311 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001312 nbdebug((" invalid buffer identifier in insert\n"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001313 emsg("E635: invalid buffer identifier in insert");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 retval = FAIL;
1315 }
1316 else if (args != NULL)
1317 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001318 int ff_detected = EOL_UNKNOWN;
1319 int buf_was_empty = (buf->bufp->b_ml.ml_flags & ML_EMPTY);
1320 size_t len = 0;
1321 int added = 0;
1322 int oldFire = netbeansFireChanges;
1323 int old_b_changed;
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001324 char_u *nlp;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001325 linenr_T lnum;
1326 linenr_T lnum_start;
1327 pos_T *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 netbeansFireChanges = 0;
1330
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001331 /* Jump to the buffer where we insert. After this "curbuf"
1332 * can be used. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001333 nb_set_curbuf(buf->bufp);
Bram Moolenaara3227e22006-03-08 21:32:40 +00001334 old_b_changed = curbuf->b_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001336 /* Convert the specified character offset into a lnum/col
1337 * position. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001338 pos = off2pos(curbuf, off);
1339 if (pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001341 if (pos->lnum <= 0)
1342 lnum_start = 1;
1343 else
1344 lnum_start = pos->lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345 }
1346 else
1347 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001348 /* If the given position is not found, assume we want
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 * the end of the file. See setLocAndSize HACK. */
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001350 if (buf_was_empty)
1351 lnum_start = 1; /* above empty line */
1352 else
1353 lnum_start = curbuf->b_ml.ml_line_count + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001354 }
1355
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001356 /* "lnum" is the line where we insert: either append to it or
1357 * insert a new line above it. */
1358 lnum = lnum_start;
1359
1360 /* Loop over the "\n" separated lines of the argument. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001361 do_update = 1;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001362 while (*args != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 {
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001364 nlp = vim_strchr(args, '\n');
1365 if (nlp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001367 /* Incomplete line, probably truncated. Next "insert"
1368 * command should append to this one. */
1369 len = STRLEN(args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001371 else
1372 {
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001373 len = nlp - args;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001374
1375 /*
1376 * We need to detect EOL style, because the commands
1377 * use a character offset.
1378 */
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001379 if (nlp > args && nlp[-1] == '\r')
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001380 {
1381 ff_detected = EOL_DOS;
1382 --len;
1383 }
1384 else
1385 ff_detected = EOL_UNIX;
1386 }
1387 args[len] = NUL;
1388
1389 if (lnum == lnum_start
1390 && ((pos != NULL && pos->col > 0)
1391 || (lnum == 1 && buf_was_empty)))
1392 {
1393 char_u *oldline = ml_get(lnum);
1394 char_u *newline;
1395
Bram Moolenaare4365282012-04-20 19:47:05 +02001396 /* Insert halfway a line. */
Bram Moolenaar964b3742019-05-24 18:54:09 +02001397 newline = alloc(STRLEN(oldline) + len + 1);
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001398 if (newline != NULL)
1399 {
Bram Moolenaare4365282012-04-20 19:47:05 +02001400 mch_memmove(newline, oldline, (size_t)pos->col);
1401 newline[pos->col] = NUL;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001402 STRCAT(newline, args);
Bram Moolenaare4365282012-04-20 19:47:05 +02001403 STRCAT(newline, oldline + pos->col);
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001404 ml_replace(lnum, newline, FALSE);
1405 }
1406 }
1407 else
1408 {
1409 /* Append a new line. Not that we always do this,
1410 * also when the text doesn't end in a "\n". */
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001411 ml_append((linenr_T)(lnum - 1), args,
1412 (colnr_T)(len + 1), FALSE);
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001413 ++added;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001414 }
1415
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001416 if (nlp == NULL)
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001417 break;
1418 ++lnum;
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001419 args = nlp + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001420 }
1421
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001422 /* Adjust the marks below the inserted lines. */
1423 appended_lines_mark(lnum_start - 1, (long)added);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001425 /*
1426 * When starting with an empty buffer set the fileformat.
1427 * This is just guessing...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428 */
1429 if (buf_was_empty)
1430 {
1431 if (ff_detected == EOL_UNKNOWN)
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001432#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 ff_detected = EOL_DOS;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001434#else
1435 ff_detected = EOL_UNIX;
1436#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001437 set_fileformat(ff_detected, OPT_LOCAL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00001438 curbuf->b_start_ffc = *curbuf->b_p_ff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 }
1440
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 /*
1442 * XXX - GRP - Is the next line right? If I've inserted
1443 * text the buffer has been updated but not written. Will
1444 * netbeans guarantee to write it? Even if I do a :q! ?
1445 */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001446 curbuf->b_changed = old_b_changed; /* logically unchanged */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 netbeansFireChanges = oldFire;
1448
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001449 /* Undo info is invalid now... */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001450 u_blockfree(curbuf);
1451 u_clearall(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452 }
1453 vim_free(to_free);
1454 nb_reply_nil(cmdno); /* or !error */
1455 }
1456 else
1457 {
1458 nbdebug(("UNIMPLEMENTED FUNCTION: %s\n", cmd));
1459 nb_reply_nil(cmdno);
1460 retval = FAIL;
1461 }
1462 }
1463 else /* Not a function; no reply required. */
1464 {
1465/* =====================================================================*/
1466 if (streq((char *)cmd, "create"))
1467 {
1468 /* Create a buffer without a name. */
1469 if (buf == NULL)
1470 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001471 nbdebug((" invalid buffer identifier in create\n"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001472 emsg("E636: invalid buffer identifier in create");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 return FAIL;
1474 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01001475 VIM_CLEAR(buf->displayname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476
1477 netbeansReadFile = 0; /* don't try to open disk file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001478 do_ecmd(0, NULL, 0, 0, ECMD_ONE, ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 netbeansReadFile = 1;
1480 buf->bufp = curbuf;
1481 maketitle();
Bram Moolenaar009b2592004-10-24 19:18:58 +00001482 buf->insertDone = FALSE;
Bram Moolenaar67c53842010-05-22 18:28:27 +02001483#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02001484 if (gui.in_use)
1485 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001486#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487/* =====================================================================*/
1488 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001489 else if (streq((char *)cmd, "insertDone"))
1490 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001491 if (buf == NULL || buf->bufp == NULL)
1492 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001493 nbdebug((" invalid buffer identifier in insertDone\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001494 }
1495 else
1496 {
1497 buf->bufp->b_start_eol = *args == 'T';
1498 buf->insertDone = TRUE;
1499 args += 2;
1500 buf->bufp->b_p_ro = *args == 'T';
1501 print_read_msg(buf);
1502 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001503/* =====================================================================*/
1504 }
1505 else if (streq((char *)cmd, "saveDone"))
1506 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001507 long savedChars = atol((char *)args);
1508
1509 if (buf == NULL || buf->bufp == NULL)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001510 nbdebug((" invalid buffer identifier in saveDone\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001511 else
1512 print_save_msg(buf, savedChars);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001513/* =====================================================================*/
1514 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 else if (streq((char *)cmd, "startDocumentListen"))
1516 {
1517 if (buf == NULL)
1518 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001519 nbdebug((" invalid buffer identifier in startDocumentListen\n"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001520 emsg("E637: invalid buffer identifier in startDocumentListen");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 return FAIL;
1522 }
1523 buf->fireChanges = 1;
1524/* =====================================================================*/
1525 }
1526 else if (streq((char *)cmd, "stopDocumentListen"))
1527 {
1528 if (buf == NULL)
1529 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001530 nbdebug((" invalid buffer identifier in stopDocumentListen\n"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001531 emsg("E638: invalid buffer identifier in stopDocumentListen");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 return FAIL;
1533 }
1534 buf->fireChanges = 0;
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001535 if (buf->bufp != NULL && buf->bufp->b_was_netbeans_file)
Bram Moolenaar009b2592004-10-24 19:18:58 +00001536 {
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001537 if (!buf->bufp->b_netbeans_file)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001538 {
Bram Moolenaarc85c8fc2019-02-17 19:12:21 +01001539 nbdebug(("E658: NetBeans connection lost for buffer %d\n", buf->bufp->b_fnum));
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01001540 semsg(_("E658: NetBeans connection lost for buffer %d"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 buf->bufp->b_fnum);
Bram Moolenaarf2330482008-06-24 20:19:36 +00001542 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001543 else
1544 {
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001545 /* NetBeans uses stopDocumentListen when it stops editing
1546 * a file. It then expects the buffer in Vim to
1547 * disappear. */
1548 do_bufdel(DOBUF_DEL, (char_u *)"", 1,
1549 buf->bufp->b_fnum, buf->bufp->b_fnum, TRUE);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001550 vim_memset(buf, 0, sizeof(nbbuf_T));
1551 }
1552 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553/* =====================================================================*/
1554 }
1555 else if (streq((char *)cmd, "setTitle"))
1556 {
1557 if (buf == NULL)
1558 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001559 nbdebug((" invalid buffer identifier in setTitle\n"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001560 emsg("E639: invalid buffer identifier in setTitle");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 return FAIL;
1562 }
1563 vim_free(buf->displayname);
1564 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565/* =====================================================================*/
1566 }
1567 else if (streq((char *)cmd, "initDone"))
1568 {
1569 if (buf == NULL || buf->bufp == NULL)
1570 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001571 nbdebug((" invalid buffer identifier in initDone\n"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001572 emsg("E640: invalid buffer identifier in initDone");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 return FAIL;
1574 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001575 do_update = 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001576 buf->initDone = TRUE;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001577 nb_set_curbuf(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 apply_autocmds(EVENT_BUFREADPOST, 0, 0, FALSE, buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579
1580 /* handle any postponed key commands */
1581 handle_key_queue();
1582/* =====================================================================*/
1583 }
1584 else if (streq((char *)cmd, "setBufferNumber")
1585 || streq((char *)cmd, "putBufferNumber"))
1586 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001587 char_u *path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 buf_T *bufp;
1589
1590 if (buf == NULL)
1591 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001592 nbdebug((" invalid buffer identifier in setBufferNumber\n"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001593 emsg("E641: invalid buffer identifier in setBufferNumber");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 return FAIL;
1595 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001596 path = (char_u *)nb_unquote(args, NULL);
1597 if (path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 return FAIL;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001599 bufp = buflist_findname(path);
1600 vim_free(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 if (bufp == NULL)
1602 {
Bram Moolenaarec906222009-02-21 21:14:00 +00001603 nbdebug((" File %s not found in setBufferNumber\n", args));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001604 semsg("E642: File %s not found in setBufferNumber", args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 return FAIL;
1606 }
1607 buf->bufp = bufp;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001608 buf->nbbuf_number = bufp->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609
1610 /* "setBufferNumber" has the side effect of jumping to the buffer
1611 * (don't know why!). Don't do that for "putBufferNumber". */
1612 if (*cmd != 'p')
1613 coloncmd(":buffer %d", bufp->b_fnum);
1614 else
1615 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001616 buf->initDone = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617
1618 /* handle any postponed key commands */
1619 handle_key_queue();
1620 }
1621
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622/* =====================================================================*/
1623 }
1624 else if (streq((char *)cmd, "setFullName"))
1625 {
1626 if (buf == NULL)
1627 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001628 nbdebug((" invalid buffer identifier in setFullName\n"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001629 emsg("E643: invalid buffer identifier in setFullName");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630 return FAIL;
1631 }
1632 vim_free(buf->displayname);
1633 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634
1635 netbeansReadFile = 0; /* don't try to open disk file */
1636 do_ecmd(0, (char_u *)buf->displayname, 0, 0, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001637 ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 netbeansReadFile = 1;
1639 buf->bufp = curbuf;
1640 maketitle();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001641#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02001642 if (gui.in_use)
1643 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001644#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645/* =====================================================================*/
1646 }
1647 else if (streq((char *)cmd, "editFile"))
1648 {
1649 if (buf == NULL)
1650 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001651 nbdebug((" invalid buffer identifier in editFile\n"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001652 emsg("E644: invalid buffer identifier in editFile");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 return FAIL;
1654 }
1655 /* Edit a file: like create + setFullName + read the file. */
1656 vim_free(buf->displayname);
1657 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 do_ecmd(0, (char_u *)buf->displayname, NULL, NULL, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001659 ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 buf->bufp = curbuf;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001661 buf->initDone = TRUE;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001662 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663#if defined(FEAT_TITLE)
1664 maketitle();
1665#endif
Bram Moolenaar67c53842010-05-22 18:28:27 +02001666#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02001667 if (gui.in_use)
1668 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001669#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670/* =====================================================================*/
1671 }
1672 else if (streq((char *)cmd, "setVisible"))
1673 {
1674 if (buf == NULL || buf->bufp == NULL)
1675 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001676 nbdebug((" invalid buffer identifier in setVisible\n"));
1677 /* This message was commented out, probably because it can
1678 * happen when shutting down. */
1679 if (p_verbose > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001680 emsg("E645: invalid buffer identifier in setVisible");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 return FAIL;
1682 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001683 if (streq((char *)args, "T") && buf->bufp != curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 {
1685 exarg_T exarg;
1686 exarg.cmd = (char_u *)"goto";
1687 exarg.forceit = FALSE;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001688 dosetvisible = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689 goto_buffer(&exarg, DOBUF_FIRST, FORWARD, buf->bufp->b_fnum);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001690 do_update = 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001691 dosetvisible = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692
Bram Moolenaar67c53842010-05-22 18:28:27 +02001693#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694 /* Side effect!!!. */
Bram Moolenaard54a6882010-08-09 22:49:00 +02001695 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 gui_mch_set_foreground();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001697#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699/* =====================================================================*/
1700 }
1701 else if (streq((char *)cmd, "raise"))
1702 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02001703#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 /* Bring gvim to the foreground. */
Bram Moolenaard54a6882010-08-09 22:49:00 +02001705 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706 gui_mch_set_foreground();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001707#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708/* =====================================================================*/
1709 }
1710 else if (streq((char *)cmd, "setModified"))
1711 {
Bram Moolenaarff064e12008-06-09 13:10:45 +00001712 int prev_b_changed;
1713
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 if (buf == NULL || buf->bufp == NULL)
1715 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001716 nbdebug((" invalid buffer identifier in setModified\n"));
1717 /* This message was commented out, probably because it can
1718 * happen when shutting down. */
1719 if (p_verbose > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001720 emsg("E646: invalid buffer identifier in setModified");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 return FAIL;
1722 }
Bram Moolenaarff064e12008-06-09 13:10:45 +00001723 prev_b_changed = buf->bufp->b_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724 if (streq((char *)args, "T"))
Bram Moolenaarff064e12008-06-09 13:10:45 +00001725 buf->bufp->b_changed = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 else
1727 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02001728 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729
1730 /* Assume NetBeans stored the file. Reset the timestamp to
1731 * avoid "file changed" warnings. */
1732 if (buf->bufp->b_ffname != NULL
1733 && mch_stat((char *)buf->bufp->b_ffname, &st) >= 0)
1734 buf_store_time(buf->bufp, &st, buf->bufp->b_ffname);
Bram Moolenaarff064e12008-06-09 13:10:45 +00001735 buf->bufp->b_changed = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 }
1737 buf->modified = buf->bufp->b_changed;
Bram Moolenaarff064e12008-06-09 13:10:45 +00001738 if (prev_b_changed != buf->bufp->b_changed)
1739 {
Bram Moolenaarff064e12008-06-09 13:10:45 +00001740 check_status(buf->bufp);
1741 redraw_tabline = TRUE;
Bram Moolenaarff064e12008-06-09 13:10:45 +00001742#ifdef FEAT_TITLE
1743 maketitle();
1744#endif
1745 update_screen(0);
1746 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747/* =====================================================================*/
1748 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001749 else if (streq((char *)cmd, "setModtime"))
1750 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001751 if (buf == NULL || buf->bufp == NULL)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001752 nbdebug((" invalid buffer identifier in setModtime\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001753 else
1754 buf->bufp->b_mtime = atoi((char *)args);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001755/* =====================================================================*/
1756 }
1757 else if (streq((char *)cmd, "setReadOnly"))
1758 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001759 if (buf == NULL || buf->bufp == NULL)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001760 nbdebug((" invalid buffer identifier in setReadOnly\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001761 else if (streq((char *)args, "T"))
Bram Moolenaar009b2592004-10-24 19:18:58 +00001762 buf->bufp->b_p_ro = TRUE;
1763 else
1764 buf->bufp->b_p_ro = FALSE;
1765/* =====================================================================*/
1766 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767 else if (streq((char *)cmd, "setMark"))
1768 {
1769 /* not yet */
1770/* =====================================================================*/
1771 }
1772 else if (streq((char *)cmd, "showBalloon"))
1773 {
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01001774#if defined(FEAT_BEVAL_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 static char *text = NULL;
1776
1777 /*
1778 * Set up the Balloon Expression Evaluation area.
1779 * Ignore 'ballooneval' here.
1780 * The text pointer must remain valid for a while.
1781 */
1782 if (balloonEval != NULL)
1783 {
1784 vim_free(text);
1785 text = nb_unquote(args, NULL);
1786 if (text != NULL)
1787 gui_mch_post_balloon(balloonEval, (char_u *)text);
1788 }
1789#endif
1790/* =====================================================================*/
1791 }
1792 else if (streq((char *)cmd, "setDot"))
1793 {
1794 pos_T *pos;
1795#ifdef NBDEBUG
1796 char_u *s;
1797#endif
1798
1799 if (buf == NULL || buf->bufp == NULL)
1800 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001801 nbdebug((" invalid buffer identifier in setDot\n"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001802 emsg("E647: invalid buffer identifier in setDot");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 return FAIL;
1804 }
1805
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001806 nb_set_curbuf(buf->bufp);
1807
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808 /* Don't want Visual mode now. */
1809 if (VIsual_active)
1810 end_visual_mode();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811#ifdef NBDEBUG
1812 s = args;
1813#endif
1814 pos = get_off_or_lnum(buf->bufp, &args);
1815 if (pos)
1816 {
1817 curwin->w_cursor = *pos;
1818 check_cursor();
1819#ifdef FEAT_FOLDING
1820 foldOpenCursor();
1821#endif
1822 }
1823 else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001824 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 nbdebug((" BAD POSITION in setDot: %s\n", s));
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001826 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827
1828 /* gui_update_cursor(TRUE, FALSE); */
1829 /* update_curbuf(NOT_VALID); */
1830 update_topline(); /* scroll to show the line */
1831 update_screen(VALID);
1832 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02001833 cursor_on();
Bram Moolenaara338adc2018-01-31 20:51:47 +01001834 out_flush_cursor(TRUE, FALSE);
1835
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836 /* Quit a hit-return or more prompt. */
1837 if (State == HITRETURN || State == ASKMORE)
1838 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839#ifdef FEAT_GUI_GTK
Bram Moolenaard54a6882010-08-09 22:49:00 +02001840 if (gui.in_use && gtk_main_level() > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 gtk_main_quit();
1842#endif
1843 }
1844/* =====================================================================*/
1845 }
1846 else if (streq((char *)cmd, "close"))
1847 {
1848#ifdef NBDEBUG
1849 char *name = "<NONE>";
1850#endif
1851
1852 if (buf == NULL)
1853 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001854 nbdebug((" invalid buffer identifier in close\n"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001855 emsg("E648: invalid buffer identifier in close");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 return FAIL;
1857 }
1858
1859#ifdef NBDEBUG
1860 if (buf->displayname != NULL)
1861 name = buf->displayname;
1862#endif
Bram Moolenaarf2330482008-06-24 20:19:36 +00001863 if (buf->bufp == NULL)
1864 {
1865 nbdebug((" invalid buffer identifier in close\n"));
1866 /* This message was commented out, probably because it can
1867 * happen when shutting down. */
1868 if (p_verbose > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001869 emsg("E649: invalid buffer identifier in close");
Bram Moolenaarf2330482008-06-24 20:19:36 +00001870 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 nbdebug((" CLOSE %d: %s\n", bufno, name));
Bram Moolenaar67c53842010-05-22 18:28:27 +02001872#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 need_mouse_correct = TRUE;
Bram Moolenaar67c53842010-05-22 18:28:27 +02001874#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 if (buf->bufp != NULL)
1876 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD,
1877 buf->bufp->b_fnum, TRUE);
Bram Moolenaar8d602722006-08-08 19:34:19 +00001878 buf->bufp = NULL;
1879 buf->initDone = FALSE;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001880 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881/* =====================================================================*/
1882 }
1883 else if (streq((char *)cmd, "setStyle")) /* obsolete... */
1884 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001885 nbdebug((" setStyle is obsolete!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886/* =====================================================================*/
1887 }
1888 else if (streq((char *)cmd, "setExitDelay"))
1889 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001890 /* Only used in version 2.1. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891/* =====================================================================*/
1892 }
1893 else if (streq((char *)cmd, "defineAnnoType"))
1894 {
1895#ifdef FEAT_SIGNS
1896 int typeNum;
1897 char_u *typeName;
1898 char_u *tooltip;
1899 char_u *p;
1900 char_u *glyphFile;
Bram Moolenaar67c53842010-05-22 18:28:27 +02001901 int parse_error = FALSE;
1902 char_u *fg;
1903 char_u *bg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904
1905 if (buf == NULL)
1906 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001907 nbdebug((" invalid buffer identifier in defineAnnoType\n"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001908 emsg("E650: invalid buffer identifier in defineAnnoType");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909 return FAIL;
1910 }
1911
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001912 cp = (char *)args;
1913 typeNum = strtol(cp, &cp, 10);
1914 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 args = skipwhite(args);
1916 typeName = (char_u *)nb_unquote(args, &args);
1917 args = skipwhite(args + 1);
1918 tooltip = (char_u *)nb_unquote(args, &args);
1919 args = skipwhite(args + 1);
1920
1921 p = (char_u *)nb_unquote(args, &args);
1922 glyphFile = vim_strsave_escaped(p, escape_chars);
1923 vim_free(p);
1924
1925 args = skipwhite(args + 1);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001926 p = skiptowhite(args);
1927 if (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02001929 *p = NUL;
1930 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02001932 fg = vim_strsave(args);
1933 bg = vim_strsave(p);
1934 if (STRLEN(fg) > MAX_COLOR_LENGTH || STRLEN(bg) > MAX_COLOR_LENGTH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001936 emsg("E532: highlighting color name too long in defineAnnoType");
Bram Moolenaar67c53842010-05-22 18:28:27 +02001937 vim_free(typeName);
1938 parse_error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02001940 else if (typeName != NULL && tooltip != NULL && glyphFile != NULL)
1941 addsigntype(buf, typeNum, typeName, tooltip, glyphFile, fg, bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 else
1943 vim_free(typeName);
1944
1945 /* don't free typeName; it's used directly in addsigntype() */
Bram Moolenaar67c53842010-05-22 18:28:27 +02001946 vim_free(fg);
1947 vim_free(bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 vim_free(tooltip);
1949 vim_free(glyphFile);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001950 if (parse_error)
1951 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952
1953#endif
1954/* =====================================================================*/
1955 }
1956 else if (streq((char *)cmd, "addAnno"))
1957 {
1958#ifdef FEAT_SIGNS
1959 int serNum;
1960 int localTypeNum;
1961 int typeNum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 pos_T *pos;
1963
1964 if (buf == NULL || buf->bufp == NULL)
1965 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001966 nbdebug((" invalid buffer identifier in addAnno\n"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001967 emsg("E651: invalid buffer identifier in addAnno");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 return FAIL;
1969 }
1970
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001971 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001973 cp = (char *)args;
1974 serNum = strtol(cp, &cp, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975
1976 /* Get the typenr specific for this buffer and convert it to
1977 * the global typenumber, as used for the sign name. */
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001978 localTypeNum = strtol(cp, &cp, 10);
1979 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 typeNum = mapsigntype(buf, localTypeNum);
1981
1982 pos = get_off_or_lnum(buf->bufp, &args);
1983
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001984 cp = (char *)args;
Bram Moolenaar42335f52018-09-13 15:33:43 +02001985 vim_ignored = (int)strtol(cp, &cp, 10);
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001986 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987# ifdef NBDEBUG
Bram Moolenaar42335f52018-09-13 15:33:43 +02001988 if (vim_ignored != -1)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001989 nbdebug((" partial line annotation -- Not Yet Implemented!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990# endif
1991 if (serNum >= GUARDEDOFFSET)
1992 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001993 nbdebug((" too many annotations! ignoring...\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 return FAIL;
1995 }
1996 if (pos)
1997 {
Bram Moolenaarec906222009-02-21 21:14:00 +00001998 coloncmd(":sign place %d line=%ld name=%d buffer=%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999 serNum, pos->lnum, typeNum, buf->bufp->b_fnum);
2000 if (typeNum == curPCtype)
2001 coloncmd(":sign jump %d buffer=%d", serNum,
2002 buf->bufp->b_fnum);
2003 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004#endif
2005/* =====================================================================*/
2006 }
2007 else if (streq((char *)cmd, "removeAnno"))
2008 {
2009#ifdef FEAT_SIGNS
2010 int serNum;
2011
2012 if (buf == NULL || buf->bufp == NULL)
2013 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002014 nbdebug((" invalid buffer identifier in removeAnno\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 return FAIL;
2016 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002017 do_update = 1;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002018 cp = (char *)args;
2019 serNum = strtol(cp, &cp, 10);
2020 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 coloncmd(":sign unplace %d buffer=%d",
2022 serNum, buf->bufp->b_fnum);
2023 redraw_buf_later(buf->bufp, NOT_VALID);
2024#endif
2025/* =====================================================================*/
2026 }
2027 else if (streq((char *)cmd, "moveAnnoToFront"))
2028 {
2029#ifdef FEAT_SIGNS
Bram Moolenaarf2330482008-06-24 20:19:36 +00002030 nbdebug((" moveAnnoToFront: Not Yet Implemented!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031#endif
2032/* =====================================================================*/
2033 }
2034 else if (streq((char *)cmd, "guard") || streq((char *)cmd, "unguard"))
2035 {
2036 int len;
2037 pos_T first;
2038 pos_T last;
2039 pos_T *pos;
2040 int un = (cmd[0] == 'u');
2041 static int guardId = GUARDEDOFFSET;
2042
2043 if (skip >= SKIP_STOP)
2044 {
2045 nbdebug((" Skipping %s command\n", (char *) cmd));
2046 return OK;
2047 }
2048
2049 nb_init_graphics();
2050
2051 if (buf == NULL || buf->bufp == NULL)
2052 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002053 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 return FAIL;
2055 }
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002056 nb_set_curbuf(buf->bufp);
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002057 cp = (char *)args;
2058 off = strtol(cp, &cp, 10);
2059 len = strtol(cp, NULL, 10);
2060 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 pos = off2pos(buf->bufp, off);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002062 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 if (!pos)
2064 nbdebug((" no such start pos in %s, %ld\n", cmd, off));
2065 else
2066 {
2067 first = *pos;
2068 pos = off2pos(buf->bufp, off + len - 1);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002069 if (pos != NULL && pos->col == 0)
2070 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 /*
2072 * In Java Swing the offset is a position between 2
2073 * characters. If col == 0 then we really want the
2074 * previous line as the end.
2075 */
2076 pos = off2pos(buf->bufp, off + len - 2);
2077 }
2078 if (!pos)
2079 nbdebug((" no such end pos in %s, %ld\n",
2080 cmd, off + len - 1));
2081 else
2082 {
2083 long lnum;
2084 last = *pos;
2085 /* set highlight for region */
2086 nbdebug((" %sGUARD %ld,%d to %ld,%d\n", (un) ? "UN" : "",
2087 first.lnum, first.col,
2088 last.lnum, last.col));
2089#ifdef FEAT_SIGNS
2090 for (lnum = first.lnum; lnum <= last.lnum; lnum++)
2091 {
2092 if (un)
2093 {
2094 /* never used */
2095 }
2096 else
2097 {
2098 if (buf_findsigntype_id(buf->bufp, lnum,
2099 GUARDED) == 0)
2100 {
2101 coloncmd(
Bram Moolenaarec906222009-02-21 21:14:00 +00002102 ":sign place %d line=%ld name=%d buffer=%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 guardId++, lnum, GUARDED,
2104 buf->bufp->b_fnum);
2105 }
2106 }
2107 }
2108#endif
2109 redraw_buf_later(buf->bufp, NOT_VALID);
2110 }
2111 }
2112/* =====================================================================*/
2113 }
2114 else if (streq((char *)cmd, "startAtomic"))
2115 {
2116 inAtomic = 1;
2117/* =====================================================================*/
2118 }
2119 else if (streq((char *)cmd, "endAtomic"))
2120 {
2121 inAtomic = 0;
2122 if (needupdate)
2123 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002124 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 needupdate = 0;
2126 }
2127/* =====================================================================*/
2128 }
2129 else if (streq((char *)cmd, "save"))
2130 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002131 /*
Bram Moolenaar9af41842016-09-25 21:45:05 +02002132 * NOTE - This command is obsolete wrt NetBeans. It's left in
Bram Moolenaar009b2592004-10-24 19:18:58 +00002133 * only for historical reasons.
2134 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 if (buf == NULL || buf->bufp == NULL)
2136 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002137 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 return FAIL;
2139 }
2140
2141 /* the following is taken from ex_cmds.c (do_wqall function) */
2142 if (bufIsChanged(buf->bufp))
2143 {
2144 /* Only write if the buffer can be written. */
2145 if (p_write
2146 && !buf->bufp->b_p_ro
2147 && buf->bufp->b_ffname != NULL
2148#ifdef FEAT_QUICKFIX
2149 && !bt_dontwrite(buf->bufp)
2150#endif
2151 )
2152 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002153 bufref_T bufref;
2154
2155 set_bufref(&bufref, buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 buf_write_all(buf->bufp, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002157 /* an autocommand may have deleted the buffer */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002158 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 buf->bufp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 }
2161 }
Bram Moolenaarf2330482008-06-24 20:19:36 +00002162 else
2163 {
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002164 nbdebug((" Buffer has no changes!\n"));
Bram Moolenaarf2330482008-06-24 20:19:36 +00002165 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166/* =====================================================================*/
2167 }
2168 else if (streq((char *)cmd, "netbeansBuffer"))
2169 {
2170 if (buf == NULL || buf->bufp == NULL)
2171 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002172 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 return FAIL;
2174 }
2175 if (*args == 'T')
2176 {
2177 buf->bufp->b_netbeans_file = TRUE;
2178 buf->bufp->b_was_netbeans_file = TRUE;
2179 }
2180 else
2181 buf->bufp->b_netbeans_file = FALSE;
2182/* =====================================================================*/
2183 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00002184 else if (streq((char *)cmd, "specialKeys"))
2185 {
2186 special_keys(args);
2187/* =====================================================================*/
2188 }
2189 else if (streq((char *)cmd, "actionMenuItem"))
2190 {
2191 /* not used yet */
2192/* =====================================================================*/
2193 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 else if (streq((char *)cmd, "version"))
2195 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002196 /* not used yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 }
Bram Moolenaarf2330482008-06-24 20:19:36 +00002198 else
2199 {
2200 nbdebug(("Unrecognised command: %s\n", cmd));
2201 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 /*
2203 * Unrecognized command is ignored.
2204 */
2205 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002206 if (inAtomic && do_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207 {
2208 needupdate = 1;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002209 do_update = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 }
2211
Bram Moolenaar009b2592004-10-24 19:18:58 +00002212 /*
2213 * Is this needed? I moved the netbeans_Xt_connect() later during startup
Bram Moolenaar9af41842016-09-25 21:45:05 +02002214 * and it may no longer be necessary. If it's not needed then needupdate
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002215 * and do_update can also be removed.
Bram Moolenaar009b2592004-10-24 19:18:58 +00002216 */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002217 if (buf != NULL && buf->initDone && do_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 {
2219 update_screen(NOT_VALID);
2220 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02002221 cursor_on();
Bram Moolenaara338adc2018-01-31 20:51:47 +01002222 out_flush_cursor(TRUE, FALSE);
2223
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 /* Quit a hit-return or more prompt. */
2225 if (State == HITRETURN || State == ASKMORE)
2226 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227#ifdef FEAT_GUI_GTK
Bram Moolenaard54a6882010-08-09 22:49:00 +02002228 if (gui.in_use && gtk_main_level() > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 gtk_main_quit();
2230#endif
2231 }
2232 }
2233
2234 return retval;
2235}
2236
2237
2238/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002239 * If "buf" is not the current buffer try changing to a window that edits this
2240 * buffer. If there is no such window then close the current buffer and set
2241 * the current buffer as "buf".
2242 */
2243 static void
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00002244nb_set_curbuf(buf_T *buf)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002245{
Bram Moolenaar404c9422015-03-14 15:35:52 +01002246 if (curbuf != buf) {
2247 if (buf_jump_open_win(buf) != NULL)
2248 return;
Bram Moolenaar404c9422015-03-14 15:35:52 +01002249 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf) != NULL)
2250 return;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002251 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaar404c9422015-03-14 15:35:52 +01002252 }
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002253}
2254
2255/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 * Process a vim colon command.
2257 */
2258 static void
2259coloncmd(char *cmd, ...)
2260{
2261 char buf[1024];
2262 va_list ap;
2263
2264 va_start(ap, cmd);
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02002265 vim_vsnprintf(buf, sizeof(buf), cmd, ap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266 va_end(ap);
2267
2268 nbdebug((" COLONCMD %s\n", buf));
2269
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 do_cmdline((char_u *)buf, NULL, NULL, DOCMD_NOWAIT | DOCMD_KEYTYPED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271
2272 setcursor(); /* restore the cursor position */
Bram Moolenaara338adc2018-01-31 20:51:47 +01002273 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274}
2275
2276
2277/*
Bram Moolenaar009b2592004-10-24 19:18:58 +00002278 * Parse the specialKeys argument and issue the appropriate map commands.
2279 */
2280 static void
2281special_keys(char_u *args)
2282{
2283 char *save_str = nb_unquote(args, NULL);
2284 char *tok = strtok(save_str, " ");
2285 char *sep;
Bram Moolenaarca24e2c2017-01-22 15:19:22 +01002286#define KEYBUFLEN 64
2287 char keybuf[KEYBUFLEN];
Bram Moolenaar009b2592004-10-24 19:18:58 +00002288 char cmdbuf[256];
2289
2290 while (tok != NULL)
2291 {
2292 int i = 0;
2293
2294 if ((sep = strchr(tok, '-')) != NULL)
2295 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002296 *sep = NUL;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002297 while (*tok)
2298 {
2299 switch (*tok)
2300 {
2301 case 'A':
2302 case 'M':
2303 case 'C':
2304 case 'S':
2305 keybuf[i++] = *tok;
2306 keybuf[i++] = '-';
2307 break;
2308 }
2309 tok++;
2310 }
2311 tok++;
2312 }
2313
Bram Moolenaarca24e2c2017-01-22 15:19:22 +01002314 if (strlen(tok) + i < KEYBUFLEN)
2315 {
2316 strcpy(&keybuf[i], tok);
2317 vim_snprintf(cmdbuf, sizeof(cmdbuf),
2318 "<silent><%s> :nbkey %s<CR>", keybuf, keybuf);
2319 do_map(0, (char_u *)cmdbuf, NORMAL, FALSE);
2320 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00002321 tok = strtok(NULL, " ");
2322 }
2323 vim_free(save_str);
2324}
2325
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002326 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002327ex_nbclose(exarg_T *eap UNUSED)
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002328{
2329 netbeans_close();
2330}
Bram Moolenaar009b2592004-10-24 19:18:58 +00002331
2332 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002333ex_nbkey(exarg_T *eap)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002334{
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002335 (void)netbeans_keystring(eap->arg);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002336}
2337
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002338 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002339ex_nbstart(
2340 exarg_T *eap)
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002341{
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002342#ifdef FEAT_GUI
2343# if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01002344 && !defined(FEAT_GUI_MSWIN)
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002345 if (gui.in_use)
2346 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002347 emsg(_("E838: netbeans is not supported with this GUI"));
Bram Moolenaar7ad7d012010-11-16 15:49:02 +01002348 return;
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002349 }
2350# endif
2351#endif
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002352 netbeans_open((char *)eap->arg, FALSE);
2353}
Bram Moolenaar009b2592004-10-24 19:18:58 +00002354
2355/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 * Initialize highlights and signs for use by netbeans (mostly obsolete)
2357 */
2358 static void
2359nb_init_graphics(void)
2360{
2361 static int did_init = FALSE;
2362
2363 if (!did_init)
2364 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002365 coloncmd(":highlight NBGuarded guibg=Cyan guifg=Black"
2366 " ctermbg=LightCyan ctermfg=Black");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 coloncmd(":sign define %d linehl=NBGuarded", GUARDED);
2368
2369 did_init = TRUE;
2370 }
2371}
2372
2373/*
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002374 * Convert key to netbeans name. This uses the global "mod_mask".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 */
2376 static void
2377netbeans_keyname(int key, char *buf)
2378{
2379 char *name = 0;
2380 char namebuf[2];
2381 int ctrl = 0;
2382 int shift = 0;
2383 int alt = 0;
2384
2385 if (mod_mask & MOD_MASK_CTRL)
2386 ctrl = 1;
2387 if (mod_mask & MOD_MASK_SHIFT)
2388 shift = 1;
2389 if (mod_mask & MOD_MASK_ALT)
2390 alt = 1;
2391
2392
2393 switch (key)
2394 {
2395 case K_F1: name = "F1"; break;
2396 case K_S_F1: name = "F1"; shift = 1; break;
2397 case K_F2: name = "F2"; break;
2398 case K_S_F2: name = "F2"; shift = 1; break;
2399 case K_F3: name = "F3"; break;
2400 case K_S_F3: name = "F3"; shift = 1; break;
2401 case K_F4: name = "F4"; break;
2402 case K_S_F4: name = "F4"; shift = 1; break;
2403 case K_F5: name = "F5"; break;
2404 case K_S_F5: name = "F5"; shift = 1; break;
2405 case K_F6: name = "F6"; break;
2406 case K_S_F6: name = "F6"; shift = 1; break;
2407 case K_F7: name = "F7"; break;
2408 case K_S_F7: name = "F7"; shift = 1; break;
2409 case K_F8: name = "F8"; break;
2410 case K_S_F8: name = "F8"; shift = 1; break;
2411 case K_F9: name = "F9"; break;
2412 case K_S_F9: name = "F9"; shift = 1; break;
2413 case K_F10: name = "F10"; break;
2414 case K_S_F10: name = "F10"; shift = 1; break;
2415 case K_F11: name = "F11"; break;
2416 case K_S_F11: name = "F11"; shift = 1; break;
2417 case K_F12: name = "F12"; break;
2418 case K_S_F12: name = "F12"; shift = 1; break;
2419 default:
2420 if (key >= ' ' && key <= '~')
2421 {
2422 /* Allow ASCII characters. */
2423 name = namebuf;
2424 namebuf[0] = key;
2425 namebuf[1] = NUL;
2426 }
2427 else
2428 name = "X";
2429 break;
2430 }
2431
2432 buf[0] = '\0';
2433 if (ctrl)
2434 strcat(buf, "C");
2435 if (shift)
2436 strcat(buf, "S");
2437 if (alt)
2438 strcat(buf, "M"); /* META */
2439 if (ctrl || shift || alt)
2440 strcat(buf, "-");
2441 strcat(buf, name);
2442}
2443
Bram Moolenaar67c53842010-05-22 18:28:27 +02002444#if defined(FEAT_BEVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445/*
2446 * Function to be called for balloon evaluation. Grabs the text under the
2447 * cursor and sends it to the debugger for evaluation. The debugger should
2448 * respond with a showBalloon command when there is a useful result.
2449 */
Bram Moolenaard62bec82005-03-07 22:56:57 +00002450 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451netbeans_beval_cb(
2452 BalloonEval *beval,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002453 int state UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454{
Bram Moolenaard62bec82005-03-07 22:56:57 +00002455 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 char_u *text;
Bram Moolenaard62bec82005-03-07 22:56:57 +00002457 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 int col;
Bram Moolenaard9462e32011-04-11 21:35:11 +02002459 char *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460 char_u *p;
2461
2462 /* Don't do anything when 'ballooneval' is off, messages scrolled the
2463 * windows up or we have no connection. */
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01002464 if (!can_use_beval() || !NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465 return;
2466
Bram Moolenaard62bec82005-03-07 22:56:57 +00002467 if (get_beval_info(beval, TRUE, &wp, &lnum, &text, &col) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 {
2469 /* Send debugger request. Only when the text is of reasonable
2470 * length. */
2471 if (text != NULL && text[0] != NUL && STRLEN(text) < MAXPATHL)
2472 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002473 buf = (char *)alloc(MAXPATHL * 2 + 25);
2474 if (buf != NULL)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002475 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002476 p = nb_quote(text);
2477 if (p != NULL)
2478 {
2479 vim_snprintf(buf, MAXPATHL * 2 + 25,
2480 "0:balloonText=%d \"%s\"\n", r_cmdno, p);
2481 vim_free(p);
2482 }
2483 nbdebug(("EVT: %s", buf));
2484 nb_send(buf, "netbeans_beval_cb");
2485 vim_free(buf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002486 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487 }
2488 vim_free(text);
2489 }
2490}
2491#endif
2492
2493/*
Bram Moolenaare0874f82016-01-24 20:36:41 +01002494 * Return TRUE when the netbeans connection is active.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002495 */
2496 int
2497netbeans_active(void)
2498{
2499 return NETBEANS_OPEN;
2500}
2501
Bram Moolenaar67c53842010-05-22 18:28:27 +02002502/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 * Tell netbeans that the window was opened, ready for commands.
2504 */
2505 void
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002506netbeans_open(char *params, int doabort)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507{
2508 char *cmd = "0:startupDone=0\n";
2509
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002510 if (NETBEANS_OPEN)
2511 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002512 emsg(_("E511: netbeans already connected"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 return;
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002514 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002516 if (netbeans_connect(params, doabort) != OK)
Bram Moolenaar67c53842010-05-22 18:28:27 +02002517 return;
Bram Moolenaard62bec82005-03-07 22:56:57 +00002518
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519 nbdebug(("EVT: %s", cmd));
2520 nb_send(cmd, "netbeans_startup_done");
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002521
2522 /* update the screen after having added the gutter */
2523 changed_window_setting();
2524 update_screen(CLEAR);
2525 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02002526 cursor_on();
Bram Moolenaara338adc2018-01-31 20:51:47 +01002527 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528}
2529
Bram Moolenaar009b2592004-10-24 19:18:58 +00002530/*
2531 * Tell netbeans that we're exiting. This should be called right
2532 * before calling exit.
2533 */
2534 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002535netbeans_send_disconnect(void)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002536{
2537 char buf[128];
2538
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002539 if (NETBEANS_OPEN)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002540 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002541 sprintf(buf, "0:disconnect=%d\n", r_cmdno);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002542 nbdebug(("EVT: %s", buf));
2543 nb_send(buf, "netbeans_disconnect");
2544 }
2545}
2546
Bram Moolenaar3266c852016-04-30 18:07:05 +02002547#if defined(FEAT_EVAL) || defined(PROTO)
2548 int
2549set_ref_in_nb_channel(int copyID)
2550{
2551 int abort = FALSE;
2552 typval_T tv;
2553
2554 if (nb_channel != NULL)
2555 {
2556 tv.v_type = VAR_CHANNEL;
2557 tv.vval.v_channel = nb_channel;
2558 abort = set_ref_in_item(&tv, copyID, NULL, NULL);
2559 }
2560 return abort;
2561}
2562#endif
2563
Bram Moolenaar4f974752019-02-17 17:44:42 +01002564#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565/*
2566 * Tell netbeans that the window was moved or resized.
2567 */
2568 void
2569netbeans_frame_moved(int new_x, int new_y)
2570{
2571 char buf[128];
2572
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002573 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 return;
2575
2576 sprintf(buf, "0:geometry=%d %d %d %d %d\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00002577 r_cmdno, (int)Columns, (int)Rows, new_x, new_y);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002578 /*nbdebug(("EVT: %s", buf)); happens too many times during a move */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 nb_send(buf, "netbeans_frame_moved");
2580}
2581#endif
2582
2583/*
Bram Moolenaar009b2592004-10-24 19:18:58 +00002584 * Tell netbeans the user opened or activated a file.
2585 */
2586 void
2587netbeans_file_activated(buf_T *bufp)
2588{
2589 int bufno = nb_getbufno(bufp);
2590 nbbuf_T *bp = nb_get_buf(bufno);
2591 char buffer[2*MAXPATHL];
2592 char_u *q;
2593
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002594 if (!NETBEANS_OPEN || !bufp->b_netbeans_file || dosetvisible)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002595 return;
2596
2597 q = nb_quote(bufp->b_ffname);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002598 if (q == NULL || bp == NULL)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002599 return;
2600
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002601 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n",
Bram Moolenaar009b2592004-10-24 19:18:58 +00002602 bufno,
2603 bufno,
2604 (char *)q,
2605 "T", /* open in NetBeans */
2606 "F"); /* modified */
2607
2608 vim_free(q);
2609 nbdebug(("EVT: %s", buffer));
2610
2611 nb_send(buffer, "netbeans_file_opened");
2612}
2613
2614/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 * Tell netbeans the user opened a file.
2616 */
2617 void
Bram Moolenaar009b2592004-10-24 19:18:58 +00002618netbeans_file_opened(buf_T *bufp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619{
Bram Moolenaar009b2592004-10-24 19:18:58 +00002620 int bufno = nb_getbufno(bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621 char buffer[2*MAXPATHL];
2622 char_u *q;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002623 nbbuf_T *bp = nb_get_buf(nb_getbufno(bufp));
2624 int bnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002626 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627 return;
2628
Bram Moolenaar009b2592004-10-24 19:18:58 +00002629 q = nb_quote(bufp->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002630 if (q == NULL)
2631 return;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002632 if (bp != NULL)
2633 bnum = bufno;
2634 else
2635 bnum = 0;
2636
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002637 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n",
Bram Moolenaar009b2592004-10-24 19:18:58 +00002638 bnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 0,
2640 (char *)q,
2641 "T", /* open in NetBeans */
2642 "F"); /* modified */
2643
2644 vim_free(q);
2645 nbdebug(("EVT: %s", buffer));
2646
2647 nb_send(buffer, "netbeans_file_opened");
Bram Moolenaarb7407d32018-02-03 17:36:27 +01002648 if (p_acd && vim_chdirfile(bufp->b_ffname, "auto") == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649 shorten_fnames(TRUE);
2650}
2651
2652/*
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002653 * Tell netbeans that a file was deleted or wiped out.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 */
2655 void
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002656netbeans_file_killed(buf_T *bufp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657{
2658 int bufno = nb_getbufno(bufp);
2659 nbbuf_T *nbbuf = nb_get_buf(bufno);
2660 char buffer[2*MAXPATHL];
2661
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002662 if (!NETBEANS_OPEN || bufno == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663 return;
2664
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002665 nbdebug(("netbeans_file_killed:\n"));
2666 nbdebug((" Killing bufno: %d", bufno));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667
Bram Moolenaar89d40322006-08-29 15:30:07 +00002668 sprintf(buffer, "%d:killed=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669
2670 nbdebug(("EVT: %s", buffer));
2671
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002672 nb_send(buffer, "netbeans_file_killed");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673
2674 if (nbbuf != NULL)
2675 nbbuf->bufp = NULL;
2676}
2677
2678/*
2679 * Get a pointer to the Netbeans buffer for Vim buffer "bufp".
2680 * Return NULL if there is no such buffer or changes are not to be reported.
2681 * Otherwise store the buffer number in "*bufnop".
2682 */
2683 static nbbuf_T *
2684nb_bufp2nbbuf_fire(buf_T *bufp, int *bufnop)
2685{
2686 int bufno;
2687 nbbuf_T *nbbuf;
2688
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002689 if (!NETBEANS_OPEN || !netbeansFireChanges)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 return NULL; /* changes are not reported at all */
2691
2692 bufno = nb_getbufno(bufp);
2693 if (bufno <= 0)
2694 return NULL; /* file is not known to NetBeans */
2695
2696 nbbuf = nb_get_buf(bufno);
2697 if (nbbuf != NULL && !nbbuf->fireChanges)
2698 return NULL; /* changes in this buffer are not reported */
2699
2700 *bufnop = bufno;
2701 return nbbuf;
2702}
2703
2704/*
2705 * Tell netbeans the user inserted some text.
2706 */
2707 void
2708netbeans_inserted(
2709 buf_T *bufp,
2710 linenr_T linenr,
2711 colnr_T col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 char_u *txt,
2713 int newlen)
2714{
2715 char_u *buf;
2716 int bufno;
2717 nbbuf_T *nbbuf;
2718 pos_T pos;
2719 long off;
2720 char_u *p;
2721 char_u *newtxt;
2722
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002723 if (!NETBEANS_OPEN)
2724 return;
2725
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2727 if (nbbuf == NULL)
2728 return;
2729
Bram Moolenaar009b2592004-10-24 19:18:58 +00002730 /* Don't mark as modified for initial read */
2731 if (nbbuf->insertDone)
2732 nbbuf->modified = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733
2734 pos.lnum = linenr;
2735 pos.col = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736 off = pos2off(bufp, &pos);
2737
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738 /* send the "insert" EVT */
2739 newtxt = alloc(newlen + 1);
Bram Moolenaarb6356332005-07-18 21:40:44 +00002740 vim_strncpy(newtxt, txt, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741 p = nb_quote(newtxt);
2742 if (p != NULL)
2743 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002744 buf = alloc(128 + 2*newlen);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002745 sprintf((char *)buf, "%d:insert=%d %ld \"%s\"\n",
2746 bufno, r_cmdno, off, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747 nbdebug(("EVT: %s", buf));
2748 nb_send((char *)buf, "netbeans_inserted");
Bram Moolenaar009b2592004-10-24 19:18:58 +00002749 vim_free(p);
2750 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752 vim_free(newtxt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753}
2754
2755/*
2756 * Tell netbeans some bytes have been removed.
2757 */
2758 void
2759netbeans_removed(
2760 buf_T *bufp,
2761 linenr_T linenr,
2762 colnr_T col,
2763 long len)
2764{
2765 char_u buf[128];
2766 int bufno;
2767 nbbuf_T *nbbuf;
2768 pos_T pos;
2769 long off;
2770
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002771 if (!NETBEANS_OPEN)
2772 return;
2773
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2775 if (nbbuf == NULL)
2776 return;
2777
2778 if (len < 0)
2779 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002780 nbdebug(("Negative len %ld in netbeans_removed()!\n", len));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781 return;
2782 }
2783
2784 nbbuf->modified = 1;
2785
2786 pos.lnum = linenr;
2787 pos.col = col;
2788
2789 off = pos2off(bufp, &pos);
2790
Bram Moolenaar89d40322006-08-29 15:30:07 +00002791 sprintf((char *)buf, "%d:remove=%d %ld %ld\n", bufno, r_cmdno, off, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 nbdebug(("EVT: %s", buf));
2793 nb_send((char *)buf, "netbeans_removed");
2794}
2795
2796/*
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01002797 * Send netbeans an unmodified command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002800netbeans_unmodified(buf_T *bufp UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801{
Bram Moolenaar09092152010-08-08 16:38:42 +02002802 /* This is a no-op, because NetBeans considers a buffer modified
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803 * even when all changes have been undone. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804}
2805
2806/*
Bram Moolenaar9af41842016-09-25 21:45:05 +02002807 * Send a button release event back to netbeans. It's up to netbeans
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 * to decide what to do (if anything) with this event.
2809 */
2810 void
2811netbeans_button_release(int button)
2812{
2813 char buf[128];
2814 int bufno;
2815
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002816 if (!NETBEANS_OPEN)
2817 return;
2818
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 bufno = nb_getbufno(curbuf);
2820
2821 if (bufno >= 0 && curwin != NULL && curwin->w_buffer == curbuf)
2822 {
Bram Moolenaar53f81742017-09-22 14:35:51 +02002823 int col = mouse_col - curwin->w_wincol
Bram Moolenaar67c53842010-05-22 18:28:27 +02002824 - ((curwin->w_p_nu || curwin->w_p_rnu) ? 9 : 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 long off = pos2off(curbuf, &curwin->w_cursor);
2826
2827 /* sync the cursor position */
Bram Moolenaar89d40322006-08-29 15:30:07 +00002828 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 nbdebug(("EVT: %s", buf));
2830 nb_send(buf, "netbeans_button_release[newDotAndMark]");
2831
Bram Moolenaar89d40322006-08-29 15:30:07 +00002832 sprintf(buf, "%d:buttonRelease=%d %d %ld %d\n", bufno, r_cmdno,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 button, (long)curwin->w_cursor.lnum, col);
2834 nbdebug(("EVT: %s", buf));
2835 nb_send(buf, "netbeans_button_release");
2836 }
2837}
2838
2839
2840/*
Bram Moolenaar143c38c2007-05-10 16:41:10 +00002841 * Send a keypress event back to netbeans. This usually simulates some
Bram Moolenaar009b2592004-10-24 19:18:58 +00002842 * kind of function key press. This function operates on a key code.
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002843 * Return TRUE when the key was sent, FALSE when the command has been
2844 * postponed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845 */
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002846 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847netbeans_keycommand(int key)
2848{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 char keyName[60];
Bram Moolenaar009b2592004-10-24 19:18:58 +00002850
2851 netbeans_keyname(key, keyName);
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002852 return netbeans_keystring((char_u *)keyName);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002853}
2854
2855
2856/*
Bram Moolenaar143c38c2007-05-10 16:41:10 +00002857 * Send a keypress event back to netbeans. This usually simulates some
Bram Moolenaar009b2592004-10-24 19:18:58 +00002858 * kind of function key press. This function operates on a key string.
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002859 * Return TRUE when the key was sent, FALSE when the command has been
2860 * postponed.
Bram Moolenaar009b2592004-10-24 19:18:58 +00002861 */
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002862 static int
2863netbeans_keystring(char_u *keyName)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002864{
2865 char buf[2*MAXPATHL];
2866 int bufno = nb_getbufno(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 long off;
2868 char_u *q;
2869
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002870 if (!NETBEANS_OPEN)
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002871 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873 if (bufno == -1)
2874 {
2875 nbdebug(("got keycommand for non-NetBeans buffer, opening...\n"));
2876 q = curbuf->b_ffname == NULL ? (char_u *)""
2877 : nb_quote(curbuf->b_ffname);
2878 if (q == NULL)
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002879 return TRUE;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002880 vim_snprintf(buf, sizeof(buf), "0:fileOpened=%d \"%s\" %s %s\n", 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881 q,
2882 "T", /* open in NetBeans */
2883 "F"); /* modified */
2884 if (curbuf->b_ffname != NULL)
2885 vim_free(q);
2886 nbdebug(("EVT: %s", buf));
2887 nb_send(buf, "netbeans_keycommand");
2888
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002889 postpone_keycommand(keyName);
2890 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 }
2892
2893 /* sync the cursor position */
2894 off = pos2off(curbuf, &curwin->w_cursor);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002895 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002896 nbdebug(("EVT: %s", buf));
2897 nb_send(buf, "netbeans_keycommand");
2898
2899 /* To work on Win32 you must apply patch to ExtEditor module
2900 * from ExtEdCaret.java.diff - make EVT_newDotAndMark handler
2901 * more synchronous
2902 */
2903
2904 /* now send keyCommand event */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002905 vim_snprintf(buf, sizeof(buf), "%d:keyCommand=%d \"%s\"\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00002906 bufno, r_cmdno, keyName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907 nbdebug(("EVT: %s", buf));
2908 nb_send(buf, "netbeans_keycommand");
2909
2910 /* New: do both at once and include the lnum/col. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002911 vim_snprintf(buf, sizeof(buf), "%d:keyAtPos=%d \"%s\" %ld %ld/%ld\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00002912 bufno, r_cmdno, keyName,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913 off, (long)curwin->w_cursor.lnum, (long)curwin->w_cursor.col);
2914 nbdebug(("EVT: %s", buf));
2915 nb_send(buf, "netbeans_keycommand");
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002916 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917}
2918
2919
2920/*
2921 * Send a save event to netbeans.
2922 */
2923 void
2924netbeans_save_buffer(buf_T *bufp)
2925{
2926 char_u buf[64];
2927 int bufno;
2928 nbbuf_T *nbbuf;
2929
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002930 if (!NETBEANS_OPEN)
2931 return;
2932
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2934 if (nbbuf == NULL)
2935 return;
2936
2937 nbbuf->modified = 0;
2938
Bram Moolenaar89d40322006-08-29 15:30:07 +00002939 sprintf((char *)buf, "%d:save=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940 nbdebug(("EVT: %s", buf));
2941 nb_send((char *)buf, "netbeans_save_buffer");
2942}
2943
2944
2945/*
2946 * Send remove command to netbeans (this command has been turned off).
2947 */
2948 void
2949netbeans_deleted_all_lines(buf_T *bufp)
2950{
2951 char_u buf[64];
2952 int bufno;
2953 nbbuf_T *nbbuf;
2954
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002955 if (!NETBEANS_OPEN)
2956 return;
2957
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2959 if (nbbuf == NULL)
2960 return;
2961
Bram Moolenaar009b2592004-10-24 19:18:58 +00002962 /* Don't mark as modified for initial read */
2963 if (nbbuf->insertDone)
2964 nbbuf->modified = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965
Bram Moolenaar89d40322006-08-29 15:30:07 +00002966 sprintf((char *)buf, "%d:remove=%d 0 -1\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 nbdebug(("EVT(suppressed): %s", buf));
2968/* nb_send(buf, "netbeans_deleted_all_lines"); */
2969}
2970
2971
2972/*
2973 * See if the lines are guarded. The top and bot parameters are from
2974 * u_savecommon(), these are the line above the change and the line below the
2975 * change.
2976 */
2977 int
2978netbeans_is_guarded(linenr_T top, linenr_T bot)
2979{
2980 signlist_T *p;
2981 int lnum;
2982
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002983 if (!NETBEANS_OPEN)
2984 return FALSE;
2985
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986 for (p = curbuf->b_signlist; p != NULL; p = p->next)
2987 if (p->id >= GUARDEDOFFSET)
2988 for (lnum = top + 1; lnum < bot; lnum++)
2989 if (lnum == p->lnum)
2990 return TRUE;
2991
2992 return FALSE;
2993}
2994
Bram Moolenaar173c9852010-09-29 17:27:01 +02002995#if defined(FEAT_GUI_X11) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996/*
2997 * We have multiple signs to draw at the same location. Draw the
2998 * multi-sign indicator instead. This is the Motif version.
2999 */
3000 void
3001netbeans_draw_multisign_indicator(int row)
3002{
3003 int i;
3004 int y;
3005 int x;
3006
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003007 if (!NETBEANS_OPEN)
3008 return;
3009
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010 x = 0;
3011 y = row * gui.char_height + 2;
3012
3013 for (i = 0; i < gui.char_height - 3; i++)
3014 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y++);
3015
3016 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+0, y);
3017 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3018 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+4, y++);
3019 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+1, y);
3020 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3021 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+3, y++);
3022 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3023}
Bram Moolenaar173c9852010-09-29 17:27:01 +02003024#endif /* FEAT_GUI_X11 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025
Bram Moolenaar64404472010-06-26 06:24:45 +02003026#if defined(FEAT_GUI_GTK) && !defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027/*
3028 * We have multiple signs to draw at the same location. Draw the
3029 * multi-sign indicator instead. This is the GTK/Gnome version.
3030 */
3031 void
3032netbeans_draw_multisign_indicator(int row)
3033{
3034 int i;
3035 int y;
3036 int x;
Bram Moolenaar98921892016-02-23 17:14:37 +01003037#if GTK_CHECK_VERSION(3,0,0)
3038 cairo_t *cr = NULL;
3039#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040 GdkDrawable *drawable = gui.drawarea->window;
Bram Moolenaar98921892016-02-23 17:14:37 +01003041#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003043 if (!NETBEANS_OPEN)
3044 return;
3045
Bram Moolenaar98921892016-02-23 17:14:37 +01003046#if GTK_CHECK_VERSION(3,0,0)
3047 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003048 cairo_set_source_rgba(cr,
3049 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
3050 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01003051#endif
3052
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053 x = 0;
3054 y = row * gui.char_height + 2;
3055
3056 for (i = 0; i < gui.char_height - 3; i++)
Bram Moolenaar98921892016-02-23 17:14:37 +01003057#if GTK_CHECK_VERSION(3,0,0)
3058 cairo_rectangle(cr, x+2, y++, 1, 1);
3059#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060 gdk_draw_point(drawable, gui.text_gc, x+2, y++);
Bram Moolenaar98921892016-02-23 17:14:37 +01003061#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003062
Bram Moolenaar98921892016-02-23 17:14:37 +01003063#if GTK_CHECK_VERSION(3,0,0)
3064 cairo_rectangle(cr, x+0, y, 1, 1);
3065 cairo_rectangle(cr, x+2, y, 1, 1);
3066 cairo_rectangle(cr, x+4, y++, 1, 1);
3067 cairo_rectangle(cr, x+1, y, 1, 1);
3068 cairo_rectangle(cr, x+2, y, 1, 1);
3069 cairo_rectangle(cr, x+3, y++, 1, 1);
3070 cairo_rectangle(cr, x+2, y, 1, 1);
3071#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072 gdk_draw_point(drawable, gui.text_gc, x+0, y);
3073 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3074 gdk_draw_point(drawable, gui.text_gc, x+4, y++);
3075 gdk_draw_point(drawable, gui.text_gc, x+1, y);
3076 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3077 gdk_draw_point(drawable, gui.text_gc, x+3, y++);
3078 gdk_draw_point(drawable, gui.text_gc, x+2, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003079#endif
3080
3081#if GTK_CHECK_VERSION(3,0,0)
3082 cairo_destroy(cr);
3083#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084}
3085#endif /* FEAT_GUI_GTK */
3086
3087/*
3088 * If the mouse is clicked in the gutter of a line with multiple
3089 * annotations, cycle through the set of signs.
3090 */
3091 void
3092netbeans_gutter_click(linenr_T lnum)
3093{
3094 signlist_T *p;
3095
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003096 if (!NETBEANS_OPEN)
3097 return;
3098
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 for (p = curbuf->b_signlist; p != NULL; p = p->next)
3100 {
3101 if (p->lnum == lnum && p->next && p->next->lnum == lnum)
3102 {
3103 signlist_T *tail;
3104
3105 /* remove "p" from list, reinsert it at the tail of the sublist */
3106 if (p->prev)
3107 p->prev->next = p->next;
3108 else
3109 curbuf->b_signlist = p->next;
3110 p->next->prev = p->prev;
3111 /* now find end of sublist and insert p */
3112 for (tail = p->next;
3113 tail->next && tail->next->lnum == lnum
3114 && tail->next->id < GUARDEDOFFSET;
3115 tail = tail->next)
3116 ;
3117 /* tail now points to last entry with same lnum (except
3118 * that "guarded" annotations are always last) */
3119 p->next = tail->next;
3120 if (tail->next)
3121 tail->next->prev = p;
3122 p->prev = tail;
3123 tail->next = p;
3124 update_debug_sign(curbuf, lnum);
3125 break;
3126 }
3127 }
3128}
3129
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130/*
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003131 * Add a sign of the requested type at the requested location.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 *
3133 * Reverse engineering:
3134 * Apparently an annotation is defined the first time it is used in a buffer.
3135 * When the same annotation is used in two buffers, the second time we do not
3136 * need to define a new sign name but reuse the existing one. But since the
3137 * ID number used in the second buffer starts counting at one again, a mapping
3138 * is made from the ID specifically for the buffer to the global sign name
3139 * (which is a number).
3140 *
3141 * globalsignmap[] stores the signs that have been defined globally.
3142 * buf->signmapused[] maps buffer-local annotation IDs to an index in
3143 * globalsignmap[].
3144 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 static void
3146addsigntype(
3147 nbbuf_T *buf,
3148 int typeNum,
3149 char_u *typeName,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003150 char_u *tooltip UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 char_u *glyphFile,
Bram Moolenaar67c53842010-05-22 18:28:27 +02003152 char_u *fg,
3153 char_u *bg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155 int i, j;
Bram Moolenaar67c53842010-05-22 18:28:27 +02003156 int use_fg = (*fg && STRCMP(fg, "none") != 0);
3157 int use_bg = (*bg && STRCMP(bg, "none") != 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158
3159 for (i = 0; i < globalsignmapused; i++)
3160 if (STRCMP(typeName, globalsignmap[i]) == 0)
3161 break;
3162
3163 if (i == globalsignmapused) /* not found; add it to global map */
3164 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003165 nbdebug(("DEFINEANNOTYPE(%d,%s,%s,%s,%s,%s)\n",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166 typeNum, typeName, tooltip, glyphFile, fg, bg));
3167 if (use_fg || use_bg)
3168 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003169 char fgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1];
3170 char bgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1];
3171 char *ptr;
3172 int value;
3173
3174 value = strtol((char *)fg, &ptr, 10);
3175 if (ptr != (char *)fg)
3176 sprintf(fgbuf, "guifg=#%06x", value & 0xFFFFFF);
3177 else
3178 sprintf(fgbuf, "guifg=%s ctermfg=%s", fg, fg);
3179
3180 value = strtol((char *)bg, &ptr, 10);
3181 if (ptr != (char *)bg)
3182 sprintf(bgbuf, "guibg=#%06x", value & 0xFFFFFF);
3183 else
3184 sprintf(bgbuf, "guibg=%s ctermbg=%s", bg, bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185
3186 coloncmd(":highlight NB_%s %s %s", typeName, (use_fg) ? fgbuf : "",
3187 (use_bg) ? bgbuf : "");
3188 if (*glyphFile == NUL)
3189 /* no glyph, line highlighting only */
3190 coloncmd(":sign define %d linehl=NB_%s", i + 1, typeName);
3191 else if (vim_strsize(glyphFile) <= 2)
3192 /* one- or two-character glyph name, use as text glyph with
3193 * texthl */
3194 coloncmd(":sign define %d text=%s texthl=NB_%s", i + 1,
3195 glyphFile, typeName);
3196 else
3197 /* glyph, line highlighting */
3198 coloncmd(":sign define %d icon=%s linehl=NB_%s", i + 1,
3199 glyphFile, typeName);
3200 }
3201 else
3202 /* glyph, no line highlighting */
3203 coloncmd(":sign define %d icon=%s", i + 1, glyphFile);
3204
3205 if (STRCMP(typeName,"CurrentPC") == 0)
3206 curPCtype = typeNum;
3207
3208 if (globalsignmapused == globalsignmaplen)
3209 {
3210 if (globalsignmaplen == 0) /* first allocation */
3211 {
3212 globalsignmaplen = 20;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02003213 globalsignmap = (char **)alloc_clear(
3214 globalsignmaplen * sizeof(char *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215 }
3216 else /* grow it */
3217 {
3218 int incr;
3219 int oldlen = globalsignmaplen;
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003220 char **t_globalsignmap = globalsignmap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221
3222 globalsignmaplen *= 2;
3223 incr = globalsignmaplen - oldlen;
3224 globalsignmap = (char **)vim_realloc(globalsignmap,
3225 globalsignmaplen * sizeof(char *));
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003226 if (globalsignmap == NULL)
3227 {
3228 vim_free(t_globalsignmap);
3229 globalsignmaplen = 0;
3230 return;
3231 }
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003232 vim_memset(globalsignmap + oldlen, 0, incr * sizeof(char *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233 }
3234 }
3235
3236 globalsignmap[i] = (char *)typeName;
3237 globalsignmapused = i + 1;
3238 }
3239
3240 /* check local map; should *not* be found! */
3241 for (j = 0; j < buf->signmapused; j++)
3242 if (buf->signmap[j] == i + 1)
3243 return;
3244
3245 /* add to local map */
3246 if (buf->signmapused == buf->signmaplen)
3247 {
3248 if (buf->signmaplen == 0) /* first allocation */
3249 {
3250 buf->signmaplen = 5;
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003251 buf->signmap = (int *)alloc_clear(buf->signmaplen * sizeof(int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 }
3253 else /* grow it */
3254 {
3255 int incr;
3256 int oldlen = buf->signmaplen;
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003257 int *t_signmap = buf->signmap;
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003258
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 buf->signmaplen *= 2;
3260 incr = buf->signmaplen - oldlen;
3261 buf->signmap = (int *)vim_realloc(buf->signmap,
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003262 buf->signmaplen * sizeof(int));
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003263 if (buf->signmap == NULL)
3264 {
3265 vim_free(t_signmap);
3266 buf->signmaplen = 0;
3267 return;
3268 }
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003269 vim_memset(buf->signmap + oldlen, 0, incr * sizeof(int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270 }
3271 }
3272
3273 buf->signmap[buf->signmapused++] = i + 1;
3274
3275}
3276
3277
3278/*
3279 * See if we have the requested sign type in the buffer.
3280 */
3281 static int
3282mapsigntype(nbbuf_T *buf, int localsigntype)
3283{
3284 if (--localsigntype >= 0 && localsigntype < buf->signmapused)
3285 return buf->signmap[localsigntype];
3286
3287 return 0;
3288}
3289
3290
3291/*
3292 * Compute length of buffer, don't print anything.
3293 */
3294 static long
3295get_buf_size(buf_T *bufp)
3296{
3297 linenr_T lnum;
3298 long char_count = 0;
3299 int eol_size;
3300 long last_check = 100000L;
3301
3302 if (bufp->b_ml.ml_flags & ML_EMPTY)
3303 return 0;
3304 else
3305 {
3306 if (get_fileformat(bufp) == EOL_DOS)
3307 eol_size = 2;
3308 else
3309 eol_size = 1;
3310 for (lnum = 1; lnum <= bufp->b_ml.ml_line_count; ++lnum)
3311 {
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00003312 char_count += (long)STRLEN(ml_get_buf(bufp, lnum, FALSE))
3313 + eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314 /* Check for a CTRL-C every 100000 characters */
3315 if (char_count > last_check)
3316 {
3317 ui_breakcheck();
3318 if (got_int)
3319 return char_count;
3320 last_check = char_count + 100000L;
3321 }
3322 }
3323 /* Correction for when last line doesn't have an EOL. */
Bram Moolenaar34d72d42015-07-17 14:18:08 +02003324 if (!bufp->b_p_eol && (bufp->b_p_bin || !bufp->b_p_fixeol))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325 char_count -= eol_size;
3326 }
3327
3328 return char_count;
3329}
3330
3331/*
3332 * Convert character offset to lnum,col
3333 */
3334 static pos_T *
3335off2pos(buf_T *buf, long offset)
3336{
3337 linenr_T lnum;
3338 static pos_T pos;
3339
3340 pos.lnum = 0;
3341 pos.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342 pos.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343
3344 if (!(buf->b_ml.ml_flags & ML_EMPTY))
3345 {
3346 if ((lnum = ml_find_line_or_offset(buf, (linenr_T)0, &offset)) < 0)
3347 return NULL;
3348 pos.lnum = lnum;
3349 pos.col = offset;
3350 }
3351
3352 return &pos;
3353}
3354
3355/*
3356 * Convert an argument in the form "1234" to an offset and compute the
3357 * lnum/col from it. Convert an argument in the form "123/12" directly to a
3358 * lnum/col.
3359 * "argp" is advanced to after the argument.
3360 * Return a pointer to the position, NULL if something is wrong.
3361 */
3362 static pos_T *
3363get_off_or_lnum(buf_T *buf, char_u **argp)
3364{
3365 static pos_T mypos;
3366 long off;
3367
3368 off = strtol((char *)*argp, (char **)argp, 10);
3369 if (**argp == '/')
3370 {
3371 mypos.lnum = (linenr_T)off;
3372 ++*argp;
3373 mypos.col = strtol((char *)*argp, (char **)argp, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374 mypos.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375 return &mypos;
3376 }
3377 return off2pos(buf, off);
3378}
3379
3380
3381/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003382 * Convert (lnum,col) to byte offset in the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383 */
3384 static long
3385pos2off(buf_T *buf, pos_T *pos)
3386{
3387 long offset = 0;
3388
3389 if (!(buf->b_ml.ml_flags & ML_EMPTY))
3390 {
3391 if ((offset = ml_find_line_or_offset(buf, pos->lnum, 0)) < 0)
3392 return 0;
3393 offset += pos->col;
3394 }
3395
3396 return offset;
3397}
3398
3399
Bram Moolenaar009b2592004-10-24 19:18:58 +00003400/*
Bram Moolenaar9af41842016-09-25 21:45:05 +02003401 * This message is printed after NetBeans opens a new file. It's
Bram Moolenaar009b2592004-10-24 19:18:58 +00003402 * similar to the message readfile() uses, but since NetBeans
3403 * doesn't normally call readfile, we do our own.
3404 */
3405 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003406print_read_msg(nbbuf_T *buf)
Bram Moolenaar009b2592004-10-24 19:18:58 +00003407{
3408 int lnum = buf->bufp->b_ml.ml_line_count;
Bram Moolenaar8767f522016-07-01 17:17:39 +02003409 off_T nchars = buf->bufp->b_orig_size;
Bram Moolenaar009b2592004-10-24 19:18:58 +00003410 char_u c;
3411
3412 msg_add_fname(buf->bufp, buf->bufp->b_ffname);
3413 c = FALSE;
3414
3415 if (buf->bufp->b_p_ro)
3416 {
3417 STRCAT(IObuff, shortmess(SHM_RO) ? _("[RO]") : _("[readonly]"));
3418 c = TRUE;
3419 }
3420 if (!buf->bufp->b_start_eol)
3421 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003422 STRCAT(IObuff, shortmess(SHM_LAST) ? _("[noeol]")
3423 : _("[Incomplete last line]"));
Bram Moolenaar009b2592004-10-24 19:18:58 +00003424 c = TRUE;
3425 }
3426 msg_add_lines(c, (long)lnum, nchars);
3427
3428 /* Now display it */
Bram Moolenaard23a8232018-02-10 18:45:26 +01003429 VIM_CLEAR(keep_msg);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003430 msg_scrolled_ign = TRUE;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003431 msg_trunc_attr((char *)IObuff, FALSE, 0);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003432 msg_scrolled_ign = FALSE;
3433}
3434
3435
3436/*
Bram Moolenaar67c53842010-05-22 18:28:27 +02003437 * Print a message after NetBeans writes the file. This message should be
3438 * identical to the standard message a non-netbeans user would see when
3439 * writing a file.
Bram Moolenaar009b2592004-10-24 19:18:58 +00003440 */
3441 static void
Bram Moolenaar8767f522016-07-01 17:17:39 +02003442print_save_msg(nbbuf_T *buf, off_T nchars)
Bram Moolenaar009b2592004-10-24 19:18:58 +00003443{
3444 char_u c;
3445 char_u *p;
3446
3447 if (nchars >= 0)
3448 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003449 /* put fname in IObuff with quotes */
3450 msg_add_fname(buf->bufp, buf->bufp->b_ffname);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003451 c = FALSE;
3452
3453 msg_add_lines(c, buf->bufp->b_ml.ml_line_count,
Bram Moolenaar914703b2010-05-31 21:59:46 +02003454 buf->bufp->b_orig_size);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003455
Bram Moolenaard23a8232018-02-10 18:45:26 +01003456 VIM_CLEAR(keep_msg);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003457 msg_scrolled_ign = TRUE;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003458 p = (char_u *)msg_trunc_attr((char *)IObuff, FALSE, 0);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003459 if ((msg_scrolled && !need_wait_return) || !buf->initDone)
3460 {
3461 /* Need to repeat the message after redrawing when:
3462 * - When reading from stdin (the screen will be cleared next).
3463 * - When restart_edit is set (otherwise there will be a delay
3464 * before redrawing).
3465 * - When the screen was scrolled but there is no wait-return
3466 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003467 set_keep_msg(p, 0);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003468 }
3469 msg_scrolled_ign = FALSE;
3470 /* add_to_input_buf((char_u *)"\f", 1); */
3471 }
3472 else
3473 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003474 char msgbuf[IOSIZE];
Bram Moolenaar009b2592004-10-24 19:18:58 +00003475
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003476 vim_snprintf(msgbuf, IOSIZE,
3477 _("E505: %s is read-only (add ! to override)"), IObuff);
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003478 nbdebug((" %s\n", msgbuf));
3479 emsg(msgbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003480 }
3481}
3482
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483#endif /* defined(FEAT_NETBEANS_INTG) */