blob: 4f53785123312a3bcf67aa5a52c2ece7ead1d943 [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 Moolenaar6e0ce172019-12-05 20:12:41 +010039#define GUARDED 10000 // typenr for "guarded" annotation
40#define GUARDEDOFFSET 1000000 // base for "guarded" sign id's
41#define MAX_COLOR_LENGTH 32 // max length of color name in defineAnnoType
Bram Moolenaar071d4272004-06-13 20:20:40 +000042
Bram Moolenaar6e0ce172019-12-05 20:12:41 +010043// 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);
Bram Moolenaar952d9d82021-08-02 18:07:18 +020057static void coloncmd(char *cmd, ...) ATTRIBUTE_FORMAT_PRINTF(1, 2);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010058static 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 Moolenaar6e0ce172019-12-05 20:12:41 +010067static 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 Moolenaar6e0ce172019-12-05 20:12:41 +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
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100116 // remove all signs and update the screen after gutter removal
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200117 coloncmd(":sign unplace *");
118 changed_window_setting();
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100119 update_screen(UPD_CLEAR);
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200120 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 Moolenaar6e0ce172019-12-05 20:12:41 +0100142 // "=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 == ':')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100149 // ":<host>:<addr>:<password>": get info from argument
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200150 arg = params + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151 if (arg == NULL && (fname = getenv("__NETBEANS_CONINFO")) != NULL)
152 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100153 // "": 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 Moolenaar6e0ce172019-12-05 20:12:41 +0100161 // ":<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
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100173 // Get the missing values from the environment.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174 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
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100181 // Move values to allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182 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
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100191 // Use the default when a value is missing.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192 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 Moolenaar6e0ce172019-12-05 20:12:41 +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 Moolenaar6e0ce172019-12-05 20:12:41 +0100218 // success, login
Bram Moolenaard04a0202016-01-26 23:30:18 +0100219 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 Moolenaard88be5b2022-01-04 19:57:55 +0000260 semsg(_(e_wrong_access_mode_for_netbeans_connection_info_file_str),
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 Moolenaard88be5b2022-01-04 19:57:55 +0000270 PERROR(e_cannot_open_netbeans_connection_info_file);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 return FAIL;
272 }
273
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100274 // Read the file. There should be one of each parameter
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275 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)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100278 *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
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100311static keyQ_T keyHead; // dummy node, header for circular queue
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312
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
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200324 node = ALLOC_ONE(keyQ_T);
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100325 if (node == NULL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100326 return; // out of memory, drop the key
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100328 if (keyHead.next == NULL) // initialize circular queue
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 {
330 keyHead.next = &keyHead;
331 keyHead.prev = &keyHead;
332 }
333
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100334 // insert node at tail of queue
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 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 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100353 // first, unlink the node
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354 keyQ_T *node = keyHead.next;
355 keyHead.next = node->next;
356 node->next->prev = node->prev;
357
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100358 // Now, send the keycommand. This may cause it to be postponed again
359 // and change keyHead.
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100360 if (node->keystr != NULL)
361 postponed = !netbeans_keystring(node->keystr);
362 vim_free(node->keystr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100364 // Finally, dispose of the node
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365 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 Moolenaar6e0ce172019-12-05 20:12:41 +0100385 break; // nothing to read
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100387 // 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 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100391 // 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
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100399 // 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.
Bram Moolenaar5ce4a0b2016-06-08 20:17:23 +0200403 *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 Moolenaar6e0ce172019-12-05 20:12:41 +0100408 // "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 Moolenaar6e0ce172019-12-05 20:12:41 +0100416 // 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)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100421 // buffer finished, dispose of it
Bram Moolenaar5ce4a0b2016-06-08 20:17:23 +0200422 vim_free(buffer);
Bram Moolenaar24cf2332016-07-01 12:50:54 +0200423 else if (nb_channel != NULL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100424 // more follows, move it to the start
Bram Moolenaar5ce4a0b2016-06-08 20:17:23 +0200425 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 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100455 // We assume the server knows that we can safely exit!
456 // 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);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100460 // NOTREACHED
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 }
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 Moolenaar6e0ce172019-12-05 20:12:41 +0100470 // 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 Moolenaar50809a42023-05-20 16:39:07 +0100480 semsg(_(e_missing_colon_str), cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481 return;
482 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100483 ++verb; // skip colon
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484
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 Moolenaar50809a42023-05-20 16:39:07 +0100504 semsg(_(e_missing_bang_or_slash_in_str), 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));
RestorerZ68ebcee2023-05-31 17:12:14 +0100521 emsg(e_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 Moolenaar6e0ce172019-12-05 20:12:41 +0100543static 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
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100569 // free the netbeans buffer list
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200570 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 Moolenaar32e5ec02020-11-06 13:44:21 +0100575 if (buf.bufp != NULL && buf_valid(buf.bufp))
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
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100585 // 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
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100600 // 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{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100661 // find or create a buffer with the given number
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 int incr;
663
664 if (bufno <= 0)
665 return NULL;
666
667 if (!buf_list)
668 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100669 // initialize
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200670 buf_list = alloc_clear(100 * sizeof(nbbuf_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671 buf_list_size = 100;
672 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100673 if (bufno >= buf_list_used) // new
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100675 if (bufno >= buf_list_size) // grow list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676 {
Bram Moolenaarb9616af2020-10-13 21:11:13 +0200677 nbbuf_T *t_buf_list = buf_list;
678 size_t bufsize;
Bram Moolenaar9abd5c62015-02-10 18:34:01 +0100679
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680 incr = bufno - buf_list_size + 90;
681 buf_list_size += incr;
Bram Moolenaarb9616af2020-10-13 21:11:13 +0200682 bufsize = buf_list_size * sizeof(nbbuf_T);
683 if (bufsize == 0 || bufsize / sizeof(nbbuf_T)
684 != (size_t)buf_list_size)
685 {
686 // list size overflow, bail out
687 return NULL;
688 }
689 buf_list = vim_realloc(buf_list, bufsize);
Bram Moolenaar9abd5c62015-02-10 18:34:01 +0100690 if (buf_list == NULL)
691 {
692 vim_free(t_buf_list);
693 buf_list_size = 0;
694 return NULL;
695 }
Bram Moolenaar7db5fc82010-05-24 11:59:29 +0200696 vim_memset(buf_list + buf_list_size - incr, 0,
697 incr * sizeof(nbbuf_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 }
699
700 while (buf_list_used <= bufno)
701 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100702 // Default is to fire text changes.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000703 buf_list[buf_list_used].fireChanges = 1;
704 ++buf_list_used;
705 }
706 }
707
708 return buf_list + bufno;
709}
710
711/*
712 * Return the number of buffers that are modified.
713 */
714 static int
715count_changed_buffers(void)
716{
717 buf_T *bufp;
718 int n;
719
720 n = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +0200721 FOR_ALL_BUFFERS(bufp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722 if (bufp->b_changed)
723 ++n;
724 return n;
725}
726
727/*
728 * End the netbeans session.
729 */
730 void
731netbeans_end(void)
732{
733 int i;
734 static char buf[128];
735
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200736 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737 return;
738
739 for (i = 0; i < buf_list_used; i++)
740 {
741 if (!buf_list[i].bufp)
742 continue;
743 if (netbeansForcedQuit)
744 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100745 // mark as unmodified so NetBeans won't put up dialog on "killed"
Bram Moolenaar89d40322006-08-29 15:30:07 +0000746 sprintf(buf, "%d:unmodified=%d\n", i, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 nbdebug(("EVT: %s", buf));
748 nb_send(buf, "netbeans_end");
749 }
Bram Moolenaar89d40322006-08-29 15:30:07 +0000750 sprintf(buf, "%d:killed=%d\n", i, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751 nbdebug(("EVT: %s", buf));
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100752 // nb_send(buf, "netbeans_end"); avoid "write failed" messages
Bram Moolenaard04a0202016-01-26 23:30:18 +0100753 nb_send(buf, NULL);
Bram Moolenaar173d8412020-04-19 14:02:26 +0200754 buf_list[i].bufp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756}
757
758/*
759 * Send a message to netbeans.
Bram Moolenaard04a0202016-01-26 23:30:18 +0100760 * When "fun" is NULL no error is given.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 */
762 static void
763nb_send(char *buf, char *fun)
764{
Bram Moolenaar77073442016-02-13 23:23:53 +0100765 if (nb_channel != NULL)
Bram Moolenaarbf2cc5f2016-07-07 20:45:06 +0200766 channel_send(nb_channel, PART_SOCK, (char_u *)buf,
767 (int)STRLEN(buf), fun);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768}
769
770/*
771 * Some input received from netbeans requires a response. This function
772 * handles a response with no information (except the command number).
773 */
774 static void
775nb_reply_nil(int cmdno)
776{
777 char reply[32];
778
Bram Moolenaar009b2592004-10-24 19:18:58 +0000779 nbdebug(("REP %d: <none>\n", cmdno));
780
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100781 // Avoid printing an annoying error message.
Bram Moolenaar7ad7d012010-11-16 15:49:02 +0100782 if (!NETBEANS_OPEN)
783 return;
784
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 sprintf(reply, "%d\n", cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 nb_send(reply, "nb_reply_nil");
787}
788
789
790/*
791 * Send a response with text.
792 * "result" must have been quoted already (using nb_quote()).
793 */
794 static void
795nb_reply_text(int cmdno, char_u *result)
796{
797 char_u *reply;
798
Bram Moolenaar009b2592004-10-24 19:18:58 +0000799 nbdebug(("REP %d: %s\n", cmdno, (char *)result));
800
Bram Moolenaar964b3742019-05-24 18:54:09 +0200801 reply = alloc(STRLEN(result) + 32);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 sprintf((char *)reply, "%d %s\n", cmdno, (char *)result);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 nb_send((char *)reply, "nb_reply_text");
804
805 vim_free(reply);
806}
807
808
809/*
810 * Send a response with a number result code.
811 */
812 static void
813nb_reply_nr(int cmdno, long result)
814{
815 char reply[32];
816
Bram Moolenaar009b2592004-10-24 19:18:58 +0000817 nbdebug(("REP %d: %ld\n", cmdno, result));
818
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 sprintf(reply, "%d %ld\n", cmdno, result);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 nb_send(reply, "nb_reply_nr");
821}
822
823
824/*
825 * Encode newline, ret, backslash, double quote for transmission to NetBeans.
826 */
827 static char_u *
828nb_quote(char_u *txt)
829{
Bram Moolenaar964b3742019-05-24 18:54:09 +0200830 char_u *buf = alloc(2 * STRLEN(txt) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 char_u *p = txt;
832 char_u *q = buf;
833
834 if (buf == NULL)
835 return NULL;
836 for (; *p; p++)
837 {
838 switch (*p)
839 {
840 case '\"':
841 case '\\':
842 *q++ = '\\'; *q++ = *p; break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100843 // case '\t':
844 // *q++ = '\\'; *q++ = 't'; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 case '\n':
846 *q++ = '\\'; *q++ = 'n'; break;
847 case '\r':
848 *q++ = '\\'; *q++ = 'r'; break;
849 default:
850 *q++ = *p;
851 break;
852 }
853 }
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100854 *q = '\0';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855
856 return buf;
857}
858
859
860/*
861 * Remove top level double quotes; convert backslashed chars.
862 * Returns an allocated string (NULL for failure).
863 * If "endp" is not NULL it is set to the character after the terminating
864 * quote.
865 */
866 static char *
867nb_unquote(char_u *p, char_u **endp)
868{
869 char *result = 0;
870 char *q;
871 int done = 0;
872
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100873 // result is never longer than input
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200874 result = alloc_clear(STRLEN(p) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 if (result == NULL)
876 return NULL;
877
878 if (*p++ != '"')
879 {
880 nbdebug(("nb_unquote called with string that doesn't start with a quote!: %s\n",
881 p));
882 result[0] = NUL;
883 return result;
884 }
885
886 for (q = result; !done && *p != NUL;)
887 {
888 switch (*p)
889 {
890 case '"':
891 /*
892 * Unbackslashed dquote marks the end, if first char was dquote.
893 */
894 done = 1;
895 break;
896
897 case '\\':
898 ++p;
899 switch (*p)
900 {
901 case '\\': *q++ = '\\'; break;
902 case 'n': *q++ = '\n'; break;
903 case 't': *q++ = '\t'; break;
904 case 'r': *q++ = '\r'; break;
905 case '"': *q++ = '"'; break;
906 case NUL: --p; break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100907 // default: skip over illegal chars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 }
909 ++p;
910 break;
911
912 default:
913 *q++ = *p++;
914 }
915 }
916
917 if (endp != NULL)
918 *endp = p;
919
920 return result;
921}
922
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000923/*
924 * Remove from "first" byte to "last" byte (inclusive), at line "lnum" of the
925 * current buffer. Remove to end of line when "last" is MAXCOL.
926 */
927 static void
928nb_partialremove(linenr_T lnum, colnr_T first, colnr_T last)
929{
930 char_u *oldtext, *newtext;
931 int oldlen;
932 int lastbyte = last;
933
934 oldtext = ml_get(lnum);
zeertzjq94b7c322024-03-12 21:50:32 +0100935 oldlen = ml_get_len(lnum);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100936 if (first >= (colnr_T)oldlen || oldlen == 0) // just in case
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000937 return;
938 if (lastbyte >= oldlen)
939 lastbyte = oldlen - 1;
940 newtext = alloc(oldlen - (int)(lastbyte - first));
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +0000941 if (newtext == NULL)
942 return;
943
944 mch_memmove(newtext, oldtext, first);
945 STRMOVE(newtext + first, oldtext + lastbyte + 1);
946 nbdebug((" NEW LINE %ld: %s\n", lnum, newtext));
947 ml_replace(lnum, newtext, FALSE);
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000948}
949
950/*
951 * Replace the "first" line with the concatenation of the "first" and
952 * the "other" line. The "other" line is not removed.
953 */
954 static void
955nb_joinlines(linenr_T first, linenr_T other)
956{
957 int len_first, len_other;
958 char_u *p;
959
zeertzjq94b7c322024-03-12 21:50:32 +0100960 len_first = ml_get_len(first);
961 len_other = ml_get_len(other);
Bram Moolenaar964b3742019-05-24 18:54:09 +0200962 p = alloc(len_first + len_other + 1);
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +0000963 if (p == NULL)
964 return;
965
966 mch_memmove(p, ml_get(first), len_first);
967 mch_memmove(p + len_first, ml_get(other), len_other + 1);
968 ml_replace(first, p, FALSE);
Bram Moolenaar5eaf8722008-01-05 17:07:13 +0000969}
970
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971#define SKIP_STOP 2
972#define streq(a,b) (strcmp(a,b) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973
974/*
975 * Do the actual processing of a single netbeans command or function.
Bram Moolenaar143c38c2007-05-10 16:41:10 +0000976 * The difference between a command and function is that a function
977 * gets a response (it's required) but a command does not.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978 * For arguments see comment for nb_parse_cmd().
979 */
980 static int
981nb_do_cmd(
982 int bufno,
983 char_u *cmd,
984 int func,
985 int cmdno,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100986 char_u *args) // points to space before arguments or NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987{
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100988 int do_update = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 long off = 0;
990 nbbuf_T *buf = nb_get_buf(bufno);
991 static int skip = 0;
992 int retval = OK;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100993 char *cp; // for when a char pointer is needed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994
995 nbdebug(("%s %d: (%d) %s %s\n", (func) ? "FUN" : "CMD", cmdno, bufno, cmd,
996 STRCMP(cmd, "insert") == 0 ? "<text>" : (char *)args));
997
998 if (func)
999 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001000// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 if (streq((char *)cmd, "getModified"))
1002 {
1003 if (buf == NULL || buf->bufp == NULL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001004 // Return the number of buffers that are modified.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 nb_reply_nr(cmdno, (long)count_changed_buffers());
1006 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001007 // Return whether the buffer is modified.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008 nb_reply_nr(cmdno, (long)(buf->bufp->b_changed
1009 || isNetbeansModified(buf->bufp)));
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001010// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011 }
1012 else if (streq((char *)cmd, "saveAndExit"))
1013 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001014 // Note: this will exit Vim if successful.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 coloncmd(":confirm qall");
1016
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001017 // We didn't exit: return the number of changed buffers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 nb_reply_nr(cmdno, (long)count_changed_buffers());
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001019// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020 }
1021 else if (streq((char *)cmd, "getCursor"))
1022 {
1023 char_u text[200];
1024
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001025 // Note: nb_getbufno() may return -1. This indicates the IDE
1026 // didn't assign a number to the current buffer in response to a
1027 // fileOpened event.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 sprintf((char *)text, "%d %ld %d %ld",
1029 nb_getbufno(curbuf),
1030 (long)curwin->w_cursor.lnum,
1031 (int)curwin->w_cursor.col,
1032 pos2off(curbuf, &curwin->w_cursor));
1033 nb_reply_text(cmdno, text);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001034// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 }
Bram Moolenaarc65c4912006-11-14 17:29:46 +00001036 else if (streq((char *)cmd, "getAnno"))
1037 {
1038 long linenum = 0;
1039#ifdef FEAT_SIGNS
1040 if (buf == NULL || buf->bufp == NULL)
1041 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001042 nbdebug((" Invalid buffer identifier in getAnno\n"));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001043 emsg(_(e_invalid_buffer_identifier_in_getanno));
Bram Moolenaarc65c4912006-11-14 17:29:46 +00001044 retval = FAIL;
1045 }
1046 else
1047 {
1048 int serNum;
1049
1050 cp = (char *)args;
1051 serNum = strtol(cp, &cp, 10);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001052 // If the sign isn't found linenum will be zero.
Bram Moolenaar162b7142018-12-21 15:17:36 +01001053 linenum = (long)buf_findsign(buf->bufp, serNum, NULL);
Bram Moolenaarc65c4912006-11-14 17:29:46 +00001054 }
1055#endif
1056 nb_reply_nr(cmdno, linenum);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001057// =====================================================================
Bram Moolenaarc65c4912006-11-14 17:29:46 +00001058 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059 else if (streq((char *)cmd, "getLength"))
1060 {
1061 long len = 0;
1062
1063 if (buf == NULL || buf->bufp == NULL)
1064 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001065 nbdebug((" invalid buffer identifier in getLength\n"));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001066 emsg(_(e_invalid_buffer_identifier_in_getlength));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 retval = FAIL;
1068 }
1069 else
1070 {
1071 len = get_buf_size(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 }
1073 nb_reply_nr(cmdno, len);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001074// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 }
1076 else if (streq((char *)cmd, "getText"))
1077 {
1078 long len;
1079 linenr_T nlines;
1080 char_u *text = NULL;
1081 linenr_T lno = 1;
1082 char_u *p;
1083 char_u *line;
1084
1085 if (buf == NULL || buf->bufp == NULL)
1086 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001087 nbdebug((" invalid buffer identifier in getText\n"));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001088 emsg(_(e_invalid_buffer_identifier_in_gettext));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 retval = FAIL;
1090 }
1091 else
1092 {
1093 len = get_buf_size(buf->bufp);
1094 nlines = buf->bufp->b_ml.ml_line_count;
Bram Moolenaar964b3742019-05-24 18:54:09 +02001095 text = alloc((len > 0) ? ((len + nlines) * 2) : 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096 if (text == NULL)
1097 {
1098 nbdebug((" nb_do_cmd: getText has null text field\n"));
1099 retval = FAIL;
1100 }
1101 else
1102 {
1103 p = text;
1104 *p++ = '\"';
1105 for (; lno <= nlines ; lno++)
1106 {
1107 line = nb_quote(ml_get_buf(buf->bufp, lno, FALSE));
1108 if (line != NULL)
1109 {
1110 STRCPY(p, line);
1111 p += STRLEN(line);
1112 *p++ = '\\';
1113 *p++ = 'n';
Bram Moolenaar009b2592004-10-24 19:18:58 +00001114 vim_free(line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 }
1117 *p++ = '\"';
1118 *p = '\0';
1119 }
1120 }
1121 if (text == NULL)
1122 nb_reply_text(cmdno, (char_u *)"");
1123 else
1124 {
1125 nb_reply_text(cmdno, text);
1126 vim_free(text);
1127 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001128// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 }
1130 else if (streq((char *)cmd, "remove"))
1131 {
1132 long count;
1133 pos_T first, last;
1134 pos_T *pos;
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001135 pos_T *next;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001136 linenr_T del_from_lnum, del_to_lnum; // lines to be deleted as a whole
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137 int oldFire = netbeansFireChanges;
1138 int oldSuppress = netbeansSuppressNoLines;
1139 int wasChanged;
1140
1141 if (skip >= SKIP_STOP)
1142 {
1143 nbdebug((" Skipping %s command\n", (char *) cmd));
1144 nb_reply_nil(cmdno);
1145 return OK;
1146 }
1147
1148 if (buf == NULL || buf->bufp == NULL)
1149 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001150 nbdebug((" invalid buffer identifier in remove\n"));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001151 emsg(_(e_invalid_buffer_identifier_in_remove));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 retval = FAIL;
1153 }
1154 else
1155 {
1156 netbeansFireChanges = FALSE;
1157 netbeansSuppressNoLines = TRUE;
1158
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001159 nb_set_curbuf(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 wasChanged = buf->bufp->b_changed;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001161 cp = (char *)args;
1162 off = strtol(cp, &cp, 10);
1163 count = strtol(cp, &cp, 10);
1164 args = (char_u *)cp;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001165 // delete "count" chars, starting at "off"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 pos = off2pos(buf->bufp, off);
1167 if (!pos)
1168 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001169 nbdebug((" !bad position\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 nb_reply_text(cmdno, (char_u *)"!bad position");
1171 netbeansFireChanges = oldFire;
1172 netbeansSuppressNoLines = oldSuppress;
1173 return FAIL;
1174 }
1175 first = *pos;
Bram Moolenaarc85c8fc2019-02-17 19:12:21 +01001176 nbdebug((" FIRST POS: line %ld, col %d\n",
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001177 first.lnum, first.col));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 pos = off2pos(buf->bufp, off+count-1);
1179 if (!pos)
1180 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001181 nbdebug((" !bad count\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 nb_reply_text(cmdno, (char_u *)"!bad count");
1183 netbeansFireChanges = oldFire;
1184 netbeansSuppressNoLines = oldSuppress;
1185 return FAIL;
1186 }
1187 last = *pos;
Bram Moolenaarc85c8fc2019-02-17 19:12:21 +01001188 nbdebug((" LAST POS: line %ld, col %d\n",
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001189 last.lnum, last.col));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001190 del_from_lnum = first.lnum;
1191 del_to_lnum = last.lnum;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001192 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001194 // Get the position of the first byte after the deleted
1195 // section. "next" is NULL when deleting to the end of the
1196 // file.
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001197 next = off2pos(buf->bufp, off + count);
1198
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001199 // Remove part of the first line.
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001200 if (first.col != 0
1201 || (next != NULL && first.lnum == next->lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 {
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001203 if (first.lnum != last.lnum
1204 || (next != NULL && first.lnum != next->lnum))
1205 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001206 // remove to the end of the first line
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001207 nb_partialremove(first.lnum, first.col,
1208 (colnr_T)MAXCOL);
1209 if (first.lnum == last.lnum)
1210 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001211 // Partial line to remove includes the end of
1212 // line. Join the line with the next one, have
1213 // the next line deleted below.
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001214 nb_joinlines(first.lnum, next->lnum);
1215 del_to_lnum = next->lnum;
1216 }
1217 }
1218 else
1219 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001220 // remove within one line
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001221 nb_partialremove(first.lnum, first.col, last.col);
1222 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001223 ++del_from_lnum; // don't delete the first line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 }
1225
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001226 // Remove part of the last line.
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001227 if (first.lnum != last.lnum && next != NULL
1228 && next->col != 0 && last.lnum == next->lnum)
1229 {
1230 nb_partialremove(last.lnum, 0, last.col);
1231 if (del_from_lnum > first.lnum)
1232 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001233 // Join end of last line to start of first line; last
1234 // line is deleted below.
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001235 nb_joinlines(first.lnum, last.lnum);
1236 }
1237 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001238 // First line is deleted as a whole, keep the last
1239 // line.
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001240 --del_to_lnum;
1241 }
1242
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001243 // First is partial line; last line to remove includes
1244 // the end of line; join first line to line following last
1245 // line; line following last line is deleted below.
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001246 if (first.lnum != last.lnum && del_from_lnum > first.lnum
1247 && next != NULL && last.lnum != next->lnum)
1248 {
1249 nb_joinlines(first.lnum, next->lnum);
1250 del_to_lnum = next->lnum;
1251 }
1252
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001253 // Delete whole lines if there are any.
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001254 if (del_to_lnum >= del_from_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 {
1256 int i;
1257
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001258 // delete signs from the lines being deleted
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001259 for (i = del_from_lnum; i <= del_to_lnum; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 {
Bram Moolenaar7d83bf42018-12-29 18:53:55 +01001261 int id = buf_findsign_id(buf->bufp, (linenr_T)i, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 if (id > 0)
1263 {
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001264 nbdebug((" Deleting sign %d on line %d\n",
1265 id, i));
Bram Moolenaar7d83bf42018-12-29 18:53:55 +01001266 buf_delsign(buf->bufp, 0, id, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 }
1268 else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001269 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 nbdebug((" No sign on line %d\n", i));
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001271 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 }
1273
Bram Moolenaarc85c8fc2019-02-17 19:12:21 +01001274 nbdebug((" Deleting lines %ld through %ld\n",
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001275 del_from_lnum, del_to_lnum));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001276 curwin->w_cursor.lnum = del_from_lnum;
1277 curwin->w_cursor.col = 0;
1278 del_lines(del_to_lnum - del_from_lnum + 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279 }
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001280
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001281 // Leave cursor at first deleted byte.
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001282 curwin->w_cursor = first;
1283 check_cursor_lnum();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001284 buf->bufp->b_changed = wasChanged; // logically unchanged
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 netbeansFireChanges = oldFire;
1286 netbeansSuppressNoLines = oldSuppress;
1287
Christian Brabandt9071ed82024-02-15 20:17:37 +01001288 u_clearallandblockfree(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 }
1290 nb_reply_nil(cmdno);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001291// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292 }
1293 else if (streq((char *)cmd, "insert"))
1294 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 char_u *to_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296
1297 if (skip >= SKIP_STOP)
1298 {
1299 nbdebug((" Skipping %s command\n", (char *) cmd));
1300 nb_reply_nil(cmdno);
1301 return OK;
1302 }
1303
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001304 // get offset
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001305 cp = (char *)args;
1306 off = strtol(cp, &cp, 10);
1307 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001309 // get text to be inserted
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 args = skipwhite(args);
1311 args = to_free = (char_u *)nb_unquote(args, NULL);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001312 /*
1313 nbdebug((" CHUNK[%d]: %d bytes at offset %d\n",
1314 buf->bufp->b_ml.ml_line_count, STRLEN(args), off));
1315 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316
1317 if (buf == NULL || buf->bufp == NULL)
1318 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001319 nbdebug((" invalid buffer identifier in insert\n"));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001320 emsg(_(e_invalid_buffer_identifier_in_insert));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 retval = FAIL;
1322 }
1323 else if (args != NULL)
1324 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001325 int ff_detected = EOL_UNKNOWN;
1326 int buf_was_empty = (buf->bufp->b_ml.ml_flags & ML_EMPTY);
1327 size_t len = 0;
1328 int added = 0;
1329 int oldFire = netbeansFireChanges;
1330 int old_b_changed;
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001331 char_u *nlp;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001332 linenr_T lnum;
1333 linenr_T lnum_start;
1334 pos_T *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 netbeansFireChanges = 0;
1337
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001338 // Jump to the buffer where we insert. After this "curbuf"
1339 // can be used.
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001340 nb_set_curbuf(buf->bufp);
Bram Moolenaara3227e22006-03-08 21:32:40 +00001341 old_b_changed = curbuf->b_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001343 // Convert the specified character offset into a lnum/col
1344 // position.
Bram Moolenaara3227e22006-03-08 21:32:40 +00001345 pos = off2pos(curbuf, off);
1346 if (pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001348 if (pos->lnum <= 0)
1349 lnum_start = 1;
1350 else
1351 lnum_start = pos->lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 }
1353 else
1354 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001355 // If the given position is not found, assume we want
1356 // the end of the file. See setLocAndSize HACK.
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001357 if (buf_was_empty)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001358 lnum_start = 1; // above empty line
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001359 else
1360 lnum_start = curbuf->b_ml.ml_line_count + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001361 }
1362
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001363 // "lnum" is the line where we insert: either append to it or
1364 // insert a new line above it.
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001365 lnum = lnum_start;
1366
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001367 // Loop over the "\n" separated lines of the argument.
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001368 do_update = 1;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001369 while (*args != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 {
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001371 nlp = vim_strchr(args, '\n');
1372 if (nlp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001374 // Incomplete line, probably truncated. Next "insert"
1375 // command should append to this one.
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001376 len = STRLEN(args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001378 else
1379 {
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001380 len = nlp - args;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001381
1382 /*
1383 * We need to detect EOL style, because the commands
1384 * use a character offset.
1385 */
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001386 if (nlp > args && nlp[-1] == '\r')
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001387 {
1388 ff_detected = EOL_DOS;
1389 --len;
1390 }
1391 else
1392 ff_detected = EOL_UNIX;
1393 }
1394 args[len] = NUL;
1395
1396 if (lnum == lnum_start
1397 && ((pos != NULL && pos->col > 0)
1398 || (lnum == 1 && buf_was_empty)))
1399 {
Bram Moolenaarea7ecfe2019-08-19 20:08:15 +02001400 char_u *oldline = ml_get(lnum);
1401 char_u *newline;
1402 int col = pos == NULL ? 0 : pos->col;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001403
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001404 // Insert halfway a line.
zeertzjq94b7c322024-03-12 21:50:32 +01001405 newline = alloc(ml_get_len(lnum) + len + 1);
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001406 if (newline != NULL)
1407 {
Bram Moolenaarea7ecfe2019-08-19 20:08:15 +02001408 mch_memmove(newline, oldline, (size_t)col);
1409 newline[col] = NUL;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001410 STRCAT(newline, args);
Bram Moolenaarea7ecfe2019-08-19 20:08:15 +02001411 STRCAT(newline, oldline + col);
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001412 ml_replace(lnum, newline, FALSE);
1413 }
1414 }
1415 else
1416 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001417 // Append a new line. Not that we always do this,
1418 // also when the text doesn't end in a "\n".
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001419 ml_append((linenr_T)(lnum - 1), args,
1420 (colnr_T)(len + 1), FALSE);
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001421 ++added;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001422 }
1423
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001424 if (nlp == NULL)
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001425 break;
1426 ++lnum;
Bram Moolenaar309cbc32012-01-10 22:31:31 +01001427 args = nlp + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001428 }
1429
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001430 // Adjust the marks below the inserted lines.
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001431 appended_lines_mark(lnum_start - 1, (long)added);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001433 /*
1434 * When starting with an empty buffer set the fileformat.
1435 * This is just guessing...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436 */
1437 if (buf_was_empty)
1438 {
1439 if (ff_detected == EOL_UNKNOWN)
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001440#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 ff_detected = EOL_DOS;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001442#else
1443 ff_detected = EOL_UNIX;
1444#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445 set_fileformat(ff_detected, OPT_LOCAL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00001446 curbuf->b_start_ffc = *curbuf->b_p_ff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 }
1448
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 /*
1450 * XXX - GRP - Is the next line right? If I've inserted
1451 * text the buffer has been updated but not written. Will
1452 * netbeans guarantee to write it? Even if I do a :q! ?
1453 */
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001454 curbuf->b_changed = old_b_changed; // logically unchanged
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 netbeansFireChanges = oldFire;
1456
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001457 // Undo info is invalid now...
Christian Brabandt9071ed82024-02-15 20:17:37 +01001458 u_clearallandblockfree(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 }
1460 vim_free(to_free);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001461 nb_reply_nil(cmdno); // or !error
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 }
1463 else
1464 {
1465 nbdebug(("UNIMPLEMENTED FUNCTION: %s\n", cmd));
1466 nb_reply_nil(cmdno);
1467 retval = FAIL;
1468 }
1469 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001470 else // Not a function; no reply required.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001472// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 if (streq((char *)cmd, "create"))
1474 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001475 // Create a buffer without a name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 if (buf == NULL)
1477 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001478 nbdebug((" invalid buffer identifier in create\n"));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001479 emsg(_(e_invalid_buffer_identifier_in_create));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480 return FAIL;
1481 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01001482 VIM_CLEAR(buf->displayname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001484 netbeansReadFile = 0; // don't try to open disk file
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001485 do_ecmd(0, NULL, 0, 0, ECMD_ONE, ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 netbeansReadFile = 1;
1487 buf->bufp = curbuf;
1488 maketitle();
Bram Moolenaar009b2592004-10-24 19:18:58 +00001489 buf->insertDone = FALSE;
Bram Moolenaar67c53842010-05-22 18:28:27 +02001490#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02001491 if (gui.in_use)
1492 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001493#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001494// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001496 else if (streq((char *)cmd, "insertDone"))
1497 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001498 if (buf == NULL || buf->bufp == NULL)
1499 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001500 nbdebug((" invalid buffer identifier in insertDone\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001501 }
1502 else
1503 {
1504 buf->bufp->b_start_eol = *args == 'T';
1505 buf->insertDone = TRUE;
1506 args += 2;
1507 buf->bufp->b_p_ro = *args == 'T';
1508 print_read_msg(buf);
1509 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001510// =====================================================================
Bram Moolenaar009b2592004-10-24 19:18:58 +00001511 }
1512 else if (streq((char *)cmd, "saveDone"))
1513 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001514 long savedChars = atol((char *)args);
1515
1516 if (buf == NULL || buf->bufp == NULL)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001517 nbdebug((" invalid buffer identifier in saveDone\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001518 else
1519 print_save_msg(buf, savedChars);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001520// =====================================================================
Bram Moolenaar009b2592004-10-24 19:18:58 +00001521 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 else if (streq((char *)cmd, "startDocumentListen"))
1523 {
1524 if (buf == NULL)
1525 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001526 nbdebug((" invalid buffer identifier in startDocumentListen\n"));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001527 emsg(_(e_invalid_buffer_identifier_in_startdocumentlisten));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528 return FAIL;
1529 }
1530 buf->fireChanges = 1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001531// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 }
1533 else if (streq((char *)cmd, "stopDocumentListen"))
1534 {
1535 if (buf == NULL)
1536 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001537 nbdebug((" invalid buffer identifier in stopDocumentListen\n"));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001538 emsg(_(e_invalid_buffer_identifier_in_stopdocumentlisten));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 return FAIL;
1540 }
1541 buf->fireChanges = 0;
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001542 if (buf->bufp != NULL && buf->bufp->b_was_netbeans_file)
Bram Moolenaar009b2592004-10-24 19:18:58 +00001543 {
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001544 if (!buf->bufp->b_netbeans_file)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001545 {
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001546 nbdebug((e_netbeans_connection_lost_for_buffer_nr,
1547 buf->bufp->b_fnum));
1548 semsg(_(e_netbeans_connection_lost_for_buffer_nr),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549 buf->bufp->b_fnum);
Bram Moolenaarf2330482008-06-24 20:19:36 +00001550 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001551 else
1552 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001553 // NetBeans uses stopDocumentListen when it stops editing
1554 // a file. It then expects the buffer in Vim to
1555 // disappear.
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001556 do_bufdel(DOBUF_DEL, (char_u *)"", 1,
1557 buf->bufp->b_fnum, buf->bufp->b_fnum, TRUE);
Bram Moolenaara80faa82020-04-12 19:37:17 +02001558 CLEAR_POINTER(buf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001559 }
1560 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001561// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 }
1563 else if (streq((char *)cmd, "setTitle"))
1564 {
1565 if (buf == NULL)
1566 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001567 nbdebug((" invalid buffer identifier in setTitle\n"));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001568 emsg(_(e_invalid_buffer_identifier_in_settitle));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 return FAIL;
1570 }
1571 vim_free(buf->displayname);
1572 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001573// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 }
1575 else if (streq((char *)cmd, "initDone"))
1576 {
1577 if (buf == NULL || buf->bufp == NULL)
1578 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001579 nbdebug((" invalid buffer identifier in initDone\n"));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001580 emsg(_(e_invalid_buffer_identifier_in_initdone));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 return FAIL;
1582 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001583 do_update = 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001584 buf->initDone = TRUE;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001585 nb_set_curbuf(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586 apply_autocmds(EVENT_BUFREADPOST, 0, 0, FALSE, buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001588 // handle any postponed key commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 handle_key_queue();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001590// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 }
1592 else if (streq((char *)cmd, "setBufferNumber")
1593 || streq((char *)cmd, "putBufferNumber"))
1594 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001595 char_u *path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 buf_T *bufp;
1597
1598 if (buf == NULL)
1599 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001600 nbdebug((" invalid buffer identifier in setBufferNumber\n"));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001601 emsg(_(e_invalid_buffer_identifier_in_setbuffernumber));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 return FAIL;
1603 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001604 path = (char_u *)nb_unquote(args, NULL);
1605 if (path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 return FAIL;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001607 bufp = buflist_findname(path);
1608 vim_free(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609 if (bufp == NULL)
1610 {
Bram Moolenaarec906222009-02-21 21:14:00 +00001611 nbdebug((" File %s not found in setBufferNumber\n", args));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001612 semsg(_(e_file_str_not_found_in_setbuffernumber), args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 return FAIL;
1614 }
1615 buf->bufp = bufp;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001616 buf->nbbuf_number = bufp->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001618 // "setBufferNumber" has the side effect of jumping to the buffer
1619 // (don't know why!). Don't do that for "putBufferNumber".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 if (*cmd != 'p')
1621 coloncmd(":buffer %d", bufp->b_fnum);
1622 else
1623 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001624 buf->initDone = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001626 // handle any postponed key commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 handle_key_queue();
1628 }
1629
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001630// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631 }
1632 else if (streq((char *)cmd, "setFullName"))
1633 {
1634 if (buf == NULL)
1635 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001636 nbdebug((" invalid buffer identifier in setFullName\n"));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001637 emsg(_(e_invalid_buffer_identifier_in_setfullname));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 return FAIL;
1639 }
1640 vim_free(buf->displayname);
1641 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001643 netbeansReadFile = 0; // don't try to open disk file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 do_ecmd(0, (char_u *)buf->displayname, 0, 0, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001645 ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 netbeansReadFile = 1;
1647 buf->bufp = curbuf;
1648 maketitle();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001649#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02001650 if (gui.in_use)
1651 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001652#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001653// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 }
1655 else if (streq((char *)cmd, "editFile"))
1656 {
1657 if (buf == NULL)
1658 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001659 nbdebug((" invalid buffer identifier in editFile\n"));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001660 emsg(_(e_invalid_buffer_identifier_in_editfile));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 return FAIL;
1662 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001663 // Edit a file: like create + setFullName + read the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 vim_free(buf->displayname);
1665 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 do_ecmd(0, (char_u *)buf->displayname, NULL, NULL, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001667 ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 buf->bufp = curbuf;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001669 buf->initDone = TRUE;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001670 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 maketitle();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001672#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02001673 if (gui.in_use)
1674 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001675#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001676// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 }
1678 else if (streq((char *)cmd, "setVisible"))
1679 {
1680 if (buf == NULL || buf->bufp == NULL)
1681 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001682 nbdebug((" invalid buffer identifier in setVisible\n"));
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001683 // This message was commented out, probably because it can
1684 // happen when shutting down.
Bram Moolenaarf2330482008-06-24 20:19:36 +00001685 if (p_verbose > 0)
Bram Moolenaar50809a42023-05-20 16:39:07 +01001686 emsg(_(e_invalid_buffer_identifier_in_setvisible));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 return FAIL;
1688 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001689 if (streq((char *)args, "T") && buf->bufp != curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690 {
1691 exarg_T exarg;
Christian Brabandtb7e09b02024-07-11 21:41:23 +02001692 CLEAR_FIELD(exarg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 exarg.cmd = (char_u *)"goto";
1694 exarg.forceit = FALSE;
Christian Brabandtb7e09b02024-07-11 21:41:23 +02001695 exarg.cmdidx = CMD_USER;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001696 dosetvisible = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 goto_buffer(&exarg, DOBUF_FIRST, FORWARD, buf->bufp->b_fnum);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001698 do_update = 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001699 dosetvisible = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700
Bram Moolenaar67c53842010-05-22 18:28:27 +02001701#ifdef FEAT_GUI
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001702 // Side effect!!!.
Bram Moolenaard54a6882010-08-09 22:49:00 +02001703 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 gui_mch_set_foreground();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001705#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001707// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708 }
1709 else if (streq((char *)cmd, "raise"))
1710 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02001711#ifdef FEAT_GUI
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001712 // Bring gvim to the foreground.
Bram Moolenaard54a6882010-08-09 22:49:00 +02001713 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 gui_mch_set_foreground();
Bram Moolenaar67c53842010-05-22 18:28:27 +02001715#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001716// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 }
1718 else if (streq((char *)cmd, "setModified"))
1719 {
Bram Moolenaarff064e12008-06-09 13:10:45 +00001720 int prev_b_changed;
1721
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 if (buf == NULL || buf->bufp == NULL)
1723 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001724 nbdebug((" invalid buffer identifier in setModified\n"));
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001725 // This message was commented out, probably because it can
1726 // happen when shutting down.
Bram Moolenaarf2330482008-06-24 20:19:36 +00001727 if (p_verbose > 0)
Bram Moolenaar50809a42023-05-20 16:39:07 +01001728 emsg(_(e_invalid_buffer_identifier_in_setmodified));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 return FAIL;
1730 }
Bram Moolenaarff064e12008-06-09 13:10:45 +00001731 prev_b_changed = buf->bufp->b_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 if (streq((char *)args, "T"))
Bram Moolenaarff064e12008-06-09 13:10:45 +00001733 buf->bufp->b_changed = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 else
1735 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02001736 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001738 // Assume NetBeans stored the file. Reset the timestamp to
1739 // avoid "file changed" warnings.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 if (buf->bufp->b_ffname != NULL
1741 && mch_stat((char *)buf->bufp->b_ffname, &st) >= 0)
1742 buf_store_time(buf->bufp, &st, buf->bufp->b_ffname);
Bram Moolenaarff064e12008-06-09 13:10:45 +00001743 buf->bufp->b_changed = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 }
1745 buf->modified = buf->bufp->b_changed;
Bram Moolenaarff064e12008-06-09 13:10:45 +00001746 if (prev_b_changed != buf->bufp->b_changed)
1747 {
Bram Moolenaarff064e12008-06-09 13:10:45 +00001748 check_status(buf->bufp);
1749 redraw_tabline = TRUE;
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +02001750#if defined(FEAT_TABPANEL)
1751 redraw_tabpanel = TRUE;
1752#endif
Bram Moolenaarff064e12008-06-09 13:10:45 +00001753 maketitle();
Bram Moolenaarff064e12008-06-09 13:10:45 +00001754 update_screen(0);
1755 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001756// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001758 else if (streq((char *)cmd, "setModtime"))
1759 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001760 if (buf == NULL || buf->bufp == NULL)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001761 nbdebug((" invalid buffer identifier in setModtime\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001762 else
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01001763 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001764 buf->bufp->b_mtime = atoi((char *)args);
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01001765 buf->bufp->b_mtime_ns = 0;
1766 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001767// =====================================================================
Bram Moolenaar009b2592004-10-24 19:18:58 +00001768 }
1769 else if (streq((char *)cmd, "setReadOnly"))
1770 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001771 if (buf == NULL || buf->bufp == NULL)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001772 nbdebug((" invalid buffer identifier in setReadOnly\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001773 else if (streq((char *)args, "T"))
Bram Moolenaar009b2592004-10-24 19:18:58 +00001774 buf->bufp->b_p_ro = TRUE;
1775 else
1776 buf->bufp->b_p_ro = FALSE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001777// =====================================================================
Bram Moolenaar009b2592004-10-24 19:18:58 +00001778 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 else if (streq((char *)cmd, "setMark"))
1780 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001781 // not yet
1782// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 }
1784 else if (streq((char *)cmd, "showBalloon"))
1785 {
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01001786#if defined(FEAT_BEVAL_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787 static char *text = NULL;
1788
1789 /*
1790 * Set up the Balloon Expression Evaluation area.
1791 * Ignore 'ballooneval' here.
1792 * The text pointer must remain valid for a while.
1793 */
1794 if (balloonEval != NULL)
1795 {
1796 vim_free(text);
1797 text = nb_unquote(args, NULL);
1798 if (text != NULL)
1799 gui_mch_post_balloon(balloonEval, (char_u *)text);
1800 }
1801#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001802// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 }
1804 else if (streq((char *)cmd, "setDot"))
1805 {
1806 pos_T *pos;
1807#ifdef NBDEBUG
1808 char_u *s;
1809#endif
1810
1811 if (buf == NULL || buf->bufp == NULL)
1812 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001813 nbdebug((" invalid buffer identifier in setDot\n"));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001814 emsg(_(e_invalid_buffer_identifier_in_setdot));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 return FAIL;
1816 }
1817
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001818 nb_set_curbuf(buf->bufp);
1819
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001820 // Don't want Visual mode now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 if (VIsual_active)
1822 end_visual_mode();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823#ifdef NBDEBUG
1824 s = args;
1825#endif
1826 pos = get_off_or_lnum(buf->bufp, &args);
1827 if (pos)
1828 {
1829 curwin->w_cursor = *pos;
1830 check_cursor();
1831#ifdef FEAT_FOLDING
1832 foldOpenCursor();
1833#endif
1834 }
1835 else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001836 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837 nbdebug((" BAD POSITION in setDot: %s\n", s));
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001838 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001840 // gui_update_cursor(TRUE, FALSE);
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001841 // update_curbuf(UPD_NOT_VALID);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001842 update_topline(); // scroll to show the line
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001843 update_screen(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02001845 cursor_on();
Bram Moolenaara338adc2018-01-31 20:51:47 +01001846 out_flush_cursor(TRUE, FALSE);
1847
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001848 // Quit a hit-return or more prompt.
Bram Moolenaar24959102022-05-07 20:01:16 +01001849 if (State == MODE_HITRETURN || State == MODE_ASKMORE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851#ifdef FEAT_GUI_GTK
Bram Moolenaard54a6882010-08-09 22:49:00 +02001852 if (gui.in_use && gtk_main_level() > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 gtk_main_quit();
1854#endif
1855 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001856// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 }
1858 else if (streq((char *)cmd, "close"))
1859 {
1860#ifdef NBDEBUG
1861 char *name = "<NONE>";
1862#endif
1863
1864 if (buf == NULL)
1865 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001866 nbdebug((" invalid buffer identifier in close\n"));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001867 emsg(_(e_invalid_buffer_identifier_in_close));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 return FAIL;
1869 }
1870
1871#ifdef NBDEBUG
1872 if (buf->displayname != NULL)
1873 name = buf->displayname;
1874#endif
Bram Moolenaarf2330482008-06-24 20:19:36 +00001875 if (buf->bufp == NULL)
1876 {
1877 nbdebug((" invalid buffer identifier in close\n"));
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001878 // This message was commented out, probably because it can
1879 // happen when shutting down.
Bram Moolenaarf2330482008-06-24 20:19:36 +00001880 if (p_verbose > 0)
Christian Brabandt5c233432023-11-27 20:04:24 +01001881 emsg(_(e_invalid_buffer_identifier_in_close));
Bram Moolenaarf2330482008-06-24 20:19:36 +00001882 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 nbdebug((" CLOSE %d: %s\n", bufno, name));
Bram Moolenaar67c53842010-05-22 18:28:27 +02001884#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 need_mouse_correct = TRUE;
Bram Moolenaar67c53842010-05-22 18:28:27 +02001886#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887 if (buf->bufp != NULL)
1888 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD,
1889 buf->bufp->b_fnum, TRUE);
Bram Moolenaar8d602722006-08-08 19:34:19 +00001890 buf->bufp = NULL;
1891 buf->initDone = FALSE;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001892 do_update = 1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001893// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001895 else if (streq((char *)cmd, "setStyle")) // obsolete...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001897 nbdebug((" setStyle is obsolete!\n"));
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001898// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 }
1900 else if (streq((char *)cmd, "setExitDelay"))
1901 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001902 // Only used in version 2.1.
1903// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904 }
1905 else if (streq((char *)cmd, "defineAnnoType"))
1906 {
1907#ifdef FEAT_SIGNS
1908 int typeNum;
1909 char_u *typeName;
1910 char_u *tooltip;
1911 char_u *p;
1912 char_u *glyphFile;
Bram Moolenaar67c53842010-05-22 18:28:27 +02001913 int parse_error = FALSE;
1914 char_u *fg;
1915 char_u *bg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916
1917 if (buf == NULL)
1918 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001919 nbdebug((" invalid buffer identifier in defineAnnoType\n"));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001920 emsg(_(e_invalid_buffer_identifier_in_defineannotype));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 return FAIL;
1922 }
1923
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001924 cp = (char *)args;
1925 typeNum = strtol(cp, &cp, 10);
1926 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 args = skipwhite(args);
1928 typeName = (char_u *)nb_unquote(args, &args);
1929 args = skipwhite(args + 1);
1930 tooltip = (char_u *)nb_unquote(args, &args);
1931 args = skipwhite(args + 1);
1932
1933 p = (char_u *)nb_unquote(args, &args);
1934 glyphFile = vim_strsave_escaped(p, escape_chars);
1935 vim_free(p);
1936
1937 args = skipwhite(args + 1);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001938 p = skiptowhite(args);
1939 if (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02001941 *p = NUL;
1942 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02001944 fg = vim_strsave(args);
1945 bg = vim_strsave(p);
1946 if (STRLEN(fg) > MAX_COLOR_LENGTH || STRLEN(bg) > MAX_COLOR_LENGTH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 {
Bram Moolenaar50809a42023-05-20 16:39:07 +01001948 emsg(_(e_highlighting_color_name_too_long_in_defineAnnoType));
Bram Moolenaar32e5ec02020-11-06 13:44:21 +01001949 VIM_CLEAR(typeName);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001950 parse_error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02001952 else if (typeName != NULL && tooltip != NULL && glyphFile != NULL)
1953 addsigntype(buf, typeNum, typeName, tooltip, glyphFile, fg, bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954
Bram Moolenaar32e5ec02020-11-06 13:44:21 +01001955 vim_free(typeName);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001956 vim_free(fg);
1957 vim_free(bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958 vim_free(tooltip);
1959 vim_free(glyphFile);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001960 if (parse_error)
1961 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962
1963#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001964// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 }
1966 else if (streq((char *)cmd, "addAnno"))
1967 {
1968#ifdef FEAT_SIGNS
1969 int serNum;
1970 int localTypeNum;
1971 int typeNum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 pos_T *pos;
1973
1974 if (buf == NULL || buf->bufp == NULL)
1975 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001976 nbdebug((" invalid buffer identifier in addAnno\n"));
Bram Moolenaar50809a42023-05-20 16:39:07 +01001977 emsg(_(e_invalid_buffer_identifier_in_addanno));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978 return FAIL;
1979 }
1980
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001981 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001983 cp = (char *)args;
1984 serNum = strtol(cp, &cp, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001986 // Get the typenr specific for this buffer and convert it to
1987 // the global typenumber, as used for the sign name.
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001988 localTypeNum = strtol(cp, &cp, 10);
1989 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990 typeNum = mapsigntype(buf, localTypeNum);
1991
1992 pos = get_off_or_lnum(buf->bufp, &args);
1993
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001994 cp = (char *)args;
Bram Moolenaar42335f52018-09-13 15:33:43 +02001995 vim_ignored = (int)strtol(cp, &cp, 10);
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001996 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997# ifdef NBDEBUG
Bram Moolenaar42335f52018-09-13 15:33:43 +02001998 if (vim_ignored != -1)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001999 nbdebug((" partial line annotation -- Not Yet Implemented!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000# endif
2001 if (serNum >= GUARDEDOFFSET)
2002 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002003 nbdebug((" too many annotations! ignoring...\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 return FAIL;
2005 }
2006 if (pos)
2007 {
Bram Moolenaarec906222009-02-21 21:14:00 +00002008 coloncmd(":sign place %d line=%ld name=%d buffer=%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 serNum, pos->lnum, typeNum, buf->bufp->b_fnum);
2010 if (typeNum == curPCtype)
2011 coloncmd(":sign jump %d buffer=%d", serNum,
2012 buf->bufp->b_fnum);
2013 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002015// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 }
2017 else if (streq((char *)cmd, "removeAnno"))
2018 {
2019#ifdef FEAT_SIGNS
2020 int serNum;
2021
2022 if (buf == NULL || buf->bufp == NULL)
2023 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002024 nbdebug((" invalid buffer identifier in removeAnno\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 return FAIL;
2026 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002027 do_update = 1;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002028 cp = (char *)args;
2029 serNum = strtol(cp, &cp, 10);
2030 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031 coloncmd(":sign unplace %d buffer=%d",
2032 serNum, buf->bufp->b_fnum);
Bram Moolenaara4d158b2022-08-14 14:17:45 +01002033 redraw_buf_later(buf->bufp, UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002035// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 }
2037 else if (streq((char *)cmd, "moveAnnoToFront"))
2038 {
2039#ifdef FEAT_SIGNS
Bram Moolenaarf2330482008-06-24 20:19:36 +00002040 nbdebug((" moveAnnoToFront: Not Yet Implemented!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002042// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 }
2044 else if (streq((char *)cmd, "guard") || streq((char *)cmd, "unguard"))
2045 {
2046 int len;
2047 pos_T first;
2048 pos_T last;
2049 pos_T *pos;
2050 int un = (cmd[0] == 'u');
2051 static int guardId = GUARDEDOFFSET;
2052
2053 if (skip >= SKIP_STOP)
2054 {
2055 nbdebug((" Skipping %s command\n", (char *) cmd));
2056 return OK;
2057 }
2058
2059 nb_init_graphics();
2060
2061 if (buf == NULL || buf->bufp == NULL)
2062 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002063 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 return FAIL;
2065 }
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002066 nb_set_curbuf(buf->bufp);
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002067 cp = (char *)args;
2068 off = strtol(cp, &cp, 10);
2069 len = strtol(cp, NULL, 10);
2070 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 pos = off2pos(buf->bufp, off);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002072 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 if (!pos)
2074 nbdebug((" no such start pos in %s, %ld\n", cmd, off));
2075 else
2076 {
2077 first = *pos;
2078 pos = off2pos(buf->bufp, off + len - 1);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002079 if (pos != NULL && pos->col == 0)
2080 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 /*
2082 * In Java Swing the offset is a position between 2
2083 * characters. If col == 0 then we really want the
2084 * previous line as the end.
2085 */
2086 pos = off2pos(buf->bufp, off + len - 2);
2087 }
2088 if (!pos)
2089 nbdebug((" no such end pos in %s, %ld\n",
2090 cmd, off + len - 1));
2091 else
2092 {
2093 long lnum;
2094 last = *pos;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002095 // set highlight for region
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 nbdebug((" %sGUARD %ld,%d to %ld,%d\n", (un) ? "UN" : "",
2097 first.lnum, first.col,
2098 last.lnum, last.col));
2099#ifdef FEAT_SIGNS
2100 for (lnum = first.lnum; lnum <= last.lnum; lnum++)
2101 {
2102 if (un)
2103 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002104 // never used
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105 }
2106 else
2107 {
2108 if (buf_findsigntype_id(buf->bufp, lnum,
2109 GUARDED) == 0)
2110 {
2111 coloncmd(
Bram Moolenaarec906222009-02-21 21:14:00 +00002112 ":sign place %d line=%ld name=%d buffer=%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 guardId++, lnum, GUARDED,
2114 buf->bufp->b_fnum);
2115 }
2116 }
2117 }
2118#endif
Bram Moolenaara4d158b2022-08-14 14:17:45 +01002119 redraw_buf_later(buf->bufp, UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 }
2121 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002122// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 }
2124 else if (streq((char *)cmd, "startAtomic"))
2125 {
2126 inAtomic = 1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002127// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 }
2129 else if (streq((char *)cmd, "endAtomic"))
2130 {
2131 inAtomic = 0;
2132 if (needupdate)
2133 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002134 do_update = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 needupdate = 0;
2136 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002137// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 }
2139 else if (streq((char *)cmd, "save"))
2140 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002141 /*
Bram Moolenaar9af41842016-09-25 21:45:05 +02002142 * NOTE - This command is obsolete wrt NetBeans. It's left in
Bram Moolenaar009b2592004-10-24 19:18:58 +00002143 * only for historical reasons.
2144 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 if (buf == NULL || buf->bufp == NULL)
2146 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002147 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 return FAIL;
2149 }
2150
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002151 // the following is taken from ex_cmds.c (do_wqall function)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 if (bufIsChanged(buf->bufp))
2153 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002154 // Only write if the buffer can be written.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155 if (p_write
2156 && !buf->bufp->b_p_ro
2157 && buf->bufp->b_ffname != NULL
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01002158 && !bt_dontwrite(buf->bufp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002160 bufref_T bufref;
2161
2162 set_bufref(&bufref, buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 buf_write_all(buf->bufp, FALSE);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002164 // an autocommand may have deleted the buffer
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002165 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 buf->bufp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167 }
2168 }
Bram Moolenaarf2330482008-06-24 20:19:36 +00002169 else
2170 {
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002171 nbdebug((" Buffer has no changes!\n"));
Bram Moolenaarf2330482008-06-24 20:19:36 +00002172 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002173// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 }
2175 else if (streq((char *)cmd, "netbeansBuffer"))
2176 {
2177 if (buf == NULL || buf->bufp == NULL)
2178 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002179 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180 return FAIL;
2181 }
2182 if (*args == 'T')
2183 {
2184 buf->bufp->b_netbeans_file = TRUE;
2185 buf->bufp->b_was_netbeans_file = TRUE;
2186 }
2187 else
2188 buf->bufp->b_netbeans_file = FALSE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002189// =====================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00002191 else if (streq((char *)cmd, "specialKeys"))
2192 {
2193 special_keys(args);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002194// =====================================================================
Bram Moolenaar009b2592004-10-24 19:18:58 +00002195 }
2196 else if (streq((char *)cmd, "actionMenuItem"))
2197 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002198 // not used yet
2199// =====================================================================
Bram Moolenaar009b2592004-10-24 19:18:58 +00002200 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201 else if (streq((char *)cmd, "version"))
2202 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002203 // not used yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204 }
Bram Moolenaarf2330482008-06-24 20:19:36 +00002205 else
2206 {
2207 nbdebug(("Unrecognised command: %s\n", cmd));
2208 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 /*
2210 * Unrecognized command is ignored.
2211 */
2212 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002213 if (inAtomic && do_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214 {
2215 needupdate = 1;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002216 do_update = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217 }
2218
Bram Moolenaar009b2592004-10-24 19:18:58 +00002219 /*
2220 * Is this needed? I moved the netbeans_Xt_connect() later during startup
Bram Moolenaar9af41842016-09-25 21:45:05 +02002221 * and it may no longer be necessary. If it's not needed then needupdate
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002222 * and do_update can also be removed.
Bram Moolenaar009b2592004-10-24 19:18:58 +00002223 */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002224 if (buf != NULL && buf->initDone && do_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 {
Bram Moolenaara4d158b2022-08-14 14:17:45 +01002226 update_screen(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02002228 cursor_on();
Bram Moolenaara338adc2018-01-31 20:51:47 +01002229 out_flush_cursor(TRUE, FALSE);
2230
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002231 // Quit a hit-return or more prompt.
Bram Moolenaar24959102022-05-07 20:01:16 +01002232 if (State == MODE_HITRETURN || State == MODE_ASKMORE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234#ifdef FEAT_GUI_GTK
Bram Moolenaard54a6882010-08-09 22:49:00 +02002235 if (gui.in_use && gtk_main_level() > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 gtk_main_quit();
2237#endif
2238 }
2239 }
2240
2241 return retval;
2242}
2243
2244
2245/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002246 * If "buf" is not the current buffer try changing to a window that edits this
2247 * buffer. If there is no such window then close the current buffer and set
2248 * the current buffer as "buf".
2249 */
2250 static void
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00002251nb_set_curbuf(buf_T *buf)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002252{
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00002253 if (curbuf == buf)
2254 return;
2255
2256 if (buf_jump_open_win(buf) != NULL)
2257 return;
2258 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf) != NULL)
2259 return;
2260 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002261}
2262
2263/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 * Process a vim colon command.
2265 */
2266 static void
2267coloncmd(char *cmd, ...)
2268{
2269 char buf[1024];
2270 va_list ap;
2271
2272 va_start(ap, cmd);
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02002273 vim_vsnprintf(buf, sizeof(buf), cmd, ap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 va_end(ap);
2275
2276 nbdebug((" COLONCMD %s\n", buf));
2277
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 do_cmdline((char_u *)buf, NULL, NULL, DOCMD_NOWAIT | DOCMD_KEYTYPED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002280 setcursor(); // restore the cursor position
Bram Moolenaara338adc2018-01-31 20:51:47 +01002281 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282}
2283
2284
2285/*
Bram Moolenaar009b2592004-10-24 19:18:58 +00002286 * Parse the specialKeys argument and issue the appropriate map commands.
2287 */
2288 static void
2289special_keys(char_u *args)
2290{
2291 char *save_str = nb_unquote(args, NULL);
2292 char *tok = strtok(save_str, " ");
2293 char *sep;
Bram Moolenaarca24e2c2017-01-22 15:19:22 +01002294#define KEYBUFLEN 64
2295 char keybuf[KEYBUFLEN];
Bram Moolenaar009b2592004-10-24 19:18:58 +00002296 char cmdbuf[256];
2297
2298 while (tok != NULL)
2299 {
2300 int i = 0;
2301
2302 if ((sep = strchr(tok, '-')) != NULL)
2303 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002304 *sep = NUL;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002305 while (*tok)
2306 {
2307 switch (*tok)
2308 {
2309 case 'A':
2310 case 'M':
2311 case 'C':
2312 case 'S':
2313 keybuf[i++] = *tok;
2314 keybuf[i++] = '-';
2315 break;
2316 }
2317 tok++;
2318 }
2319 tok++;
2320 }
2321
Bram Moolenaarca24e2c2017-01-22 15:19:22 +01002322 if (strlen(tok) + i < KEYBUFLEN)
2323 {
2324 strcpy(&keybuf[i], tok);
2325 vim_snprintf(cmdbuf, sizeof(cmdbuf),
2326 "<silent><%s> :nbkey %s<CR>", keybuf, keybuf);
zeertzjq44068e92022-06-16 11:14:55 +01002327 do_map(MAPTYPE_MAP, (char_u *)cmdbuf, MODE_NORMAL, FALSE);
Bram Moolenaarca24e2c2017-01-22 15:19:22 +01002328 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00002329 tok = strtok(NULL, " ");
2330 }
2331 vim_free(save_str);
2332}
2333
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002334 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002335ex_nbclose(exarg_T *eap UNUSED)
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002336{
2337 netbeans_close();
2338}
Bram Moolenaar009b2592004-10-24 19:18:58 +00002339
2340 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002341ex_nbkey(exarg_T *eap)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002342{
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002343 (void)netbeans_keystring(eap->arg);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002344}
2345
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002346 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002347ex_nbstart(
2348 exarg_T *eap)
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002349{
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002350#ifdef FEAT_GUI
2351# if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01002352 && !defined(FEAT_GUI_MSWIN)
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002353 if (gui.in_use)
2354 {
Bram Moolenaard88be5b2022-01-04 19:57:55 +00002355 emsg(_(e_netbeans_is_not_supported_with_this_GUI));
Bram Moolenaar7ad7d012010-11-16 15:49:02 +01002356 return;
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002357 }
2358# endif
2359#endif
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002360 netbeans_open((char *)eap->arg, FALSE);
2361}
Bram Moolenaar009b2592004-10-24 19:18:58 +00002362
2363/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 * Initialize highlights and signs for use by netbeans (mostly obsolete)
2365 */
2366 static void
2367nb_init_graphics(void)
2368{
2369 static int did_init = FALSE;
2370
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00002371 if (did_init)
2372 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00002374 coloncmd(":highlight NBGuarded guibg=Cyan guifg=Black"
2375 " ctermbg=LightCyan ctermfg=Black");
2376 coloncmd(":sign define %d linehl=NBGuarded", GUARDED);
2377
2378 did_init = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379}
2380
2381/*
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002382 * Convert key to netbeans name. This uses the global "mod_mask".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383 */
2384 static void
2385netbeans_keyname(int key, char *buf)
2386{
2387 char *name = 0;
2388 char namebuf[2];
2389 int ctrl = 0;
2390 int shift = 0;
2391 int alt = 0;
2392
2393 if (mod_mask & MOD_MASK_CTRL)
2394 ctrl = 1;
2395 if (mod_mask & MOD_MASK_SHIFT)
2396 shift = 1;
2397 if (mod_mask & MOD_MASK_ALT)
2398 alt = 1;
2399
2400
2401 switch (key)
2402 {
2403 case K_F1: name = "F1"; break;
2404 case K_S_F1: name = "F1"; shift = 1; break;
2405 case K_F2: name = "F2"; break;
2406 case K_S_F2: name = "F2"; shift = 1; break;
2407 case K_F3: name = "F3"; break;
2408 case K_S_F3: name = "F3"; shift = 1; break;
2409 case K_F4: name = "F4"; break;
2410 case K_S_F4: name = "F4"; shift = 1; break;
2411 case K_F5: name = "F5"; break;
2412 case K_S_F5: name = "F5"; shift = 1; break;
2413 case K_F6: name = "F6"; break;
2414 case K_S_F6: name = "F6"; shift = 1; break;
2415 case K_F7: name = "F7"; break;
2416 case K_S_F7: name = "F7"; shift = 1; break;
2417 case K_F8: name = "F8"; break;
2418 case K_S_F8: name = "F8"; shift = 1; break;
2419 case K_F9: name = "F9"; break;
2420 case K_S_F9: name = "F9"; shift = 1; break;
2421 case K_F10: name = "F10"; break;
2422 case K_S_F10: name = "F10"; shift = 1; break;
2423 case K_F11: name = "F11"; break;
2424 case K_S_F11: name = "F11"; shift = 1; break;
2425 case K_F12: name = "F12"; break;
2426 case K_S_F12: name = "F12"; shift = 1; break;
2427 default:
2428 if (key >= ' ' && key <= '~')
2429 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002430 // Allow ASCII characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 name = namebuf;
2432 namebuf[0] = key;
2433 namebuf[1] = NUL;
2434 }
2435 else
2436 name = "X";
2437 break;
2438 }
2439
2440 buf[0] = '\0';
2441 if (ctrl)
2442 strcat(buf, "C");
2443 if (shift)
2444 strcat(buf, "S");
2445 if (alt)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002446 strcat(buf, "M"); // META
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 if (ctrl || shift || alt)
2448 strcat(buf, "-");
2449 strcat(buf, name);
2450}
2451
Bram Moolenaar67c53842010-05-22 18:28:27 +02002452#if defined(FEAT_BEVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453/*
2454 * Function to be called for balloon evaluation. Grabs the text under the
2455 * cursor and sends it to the debugger for evaluation. The debugger should
2456 * respond with a showBalloon command when there is a useful result.
2457 */
Bram Moolenaard62bec82005-03-07 22:56:57 +00002458 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459netbeans_beval_cb(
2460 BalloonEval *beval,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002461 int state UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462{
Bram Moolenaard62bec82005-03-07 22:56:57 +00002463 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 char_u *text;
Bram Moolenaard62bec82005-03-07 22:56:57 +00002465 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466 int col;
Bram Moolenaard9462e32011-04-11 21:35:11 +02002467 char *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 char_u *p;
2469
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002470 // Don't do anything when 'ballooneval' is off, messages scrolled the
2471 // windows up or we have no connection.
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01002472 if (!can_use_beval() || !NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473 return;
2474
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00002475 if (get_beval_info(beval, TRUE, &wp, &lnum, &text, &col) != OK)
2476 return;
2477
2478 // Send debugger request. Only when the text is of reasonable
2479 // length.
2480 if (text != NULL && text[0] != NUL && STRLEN(text) < MAXPATHL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 {
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00002482 buf = alloc(MAXPATHL * 2 + 25);
2483 if (buf != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 {
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00002485 p = nb_quote(text);
2486 if (p != NULL)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002487 {
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00002488 vim_snprintf(buf, MAXPATHL * 2 + 25,
2489 "0:balloonText=%d \"%s\"\n", r_cmdno, p);
2490 vim_free(p);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002491 }
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00002492 nbdebug(("EVT: %s", buf));
2493 nb_send(buf, "netbeans_beval_cb");
2494 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496 }
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00002497 vim_free(text);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498}
2499#endif
2500
2501/*
Bram Moolenaare0874f82016-01-24 20:36:41 +01002502 * Return TRUE when the netbeans connection is active.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002503 */
2504 int
2505netbeans_active(void)
2506{
2507 return NETBEANS_OPEN;
2508}
2509
Bram Moolenaar67c53842010-05-22 18:28:27 +02002510/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511 * Tell netbeans that the window was opened, ready for commands.
2512 */
2513 void
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002514netbeans_open(char *params, int doabort)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515{
2516 char *cmd = "0:startupDone=0\n";
2517
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002518 if (NETBEANS_OPEN)
2519 {
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00002520 emsg(_(e_netbeans_already_connected));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521 return;
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002522 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002524 if (netbeans_connect(params, doabort) != OK)
Bram Moolenaar67c53842010-05-22 18:28:27 +02002525 return;
Bram Moolenaard62bec82005-03-07 22:56:57 +00002526
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 nbdebug(("EVT: %s", cmd));
2528 nb_send(cmd, "netbeans_startup_done");
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002529
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002530 // update the screen after having added the gutter
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002531 changed_window_setting();
Bram Moolenaara4d158b2022-08-14 14:17:45 +01002532 update_screen(UPD_CLEAR);
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002533 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02002534 cursor_on();
Bram Moolenaara338adc2018-01-31 20:51:47 +01002535 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536}
2537
Bram Moolenaar009b2592004-10-24 19:18:58 +00002538/*
2539 * Tell netbeans that we're exiting. This should be called right
2540 * before calling exit.
2541 */
2542 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002543netbeans_send_disconnect(void)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002544{
2545 char buf[128];
2546
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002547 if (NETBEANS_OPEN)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002548 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002549 sprintf(buf, "0:disconnect=%d\n", r_cmdno);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002550 nbdebug(("EVT: %s", buf));
2551 nb_send(buf, "netbeans_disconnect");
2552 }
2553}
2554
Bram Moolenaar3266c852016-04-30 18:07:05 +02002555#if defined(FEAT_EVAL) || defined(PROTO)
2556 int
2557set_ref_in_nb_channel(int copyID)
2558{
2559 int abort = FALSE;
2560 typval_T tv;
2561
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00002562 if (nb_channel == NULL)
2563 return FALSE;
2564
2565 tv.v_type = VAR_CHANNEL;
2566 tv.vval.v_channel = nb_channel;
Yegappan Lakshmanan9cb865e2025-03-23 16:42:16 +01002567 abort = set_ref_in_item(&tv, copyID, NULL, NULL, NULL);
Bram Moolenaar3266c852016-04-30 18:07:05 +02002568 return abort;
2569}
2570#endif
2571
Bram Moolenaar4f974752019-02-17 17:44:42 +01002572#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573/*
2574 * Tell netbeans that the window was moved or resized.
2575 */
2576 void
2577netbeans_frame_moved(int new_x, int new_y)
2578{
2579 char buf[128];
2580
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002581 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 return;
2583
2584 sprintf(buf, "0:geometry=%d %d %d %d %d\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00002585 r_cmdno, (int)Columns, (int)Rows, new_x, new_y);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002586 // nbdebug(("EVT: %s", buf)); happens too many times during a move
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 nb_send(buf, "netbeans_frame_moved");
2588}
2589#endif
2590
2591/*
Bram Moolenaar009b2592004-10-24 19:18:58 +00002592 * Tell netbeans the user opened or activated a file.
2593 */
2594 void
2595netbeans_file_activated(buf_T *bufp)
2596{
2597 int bufno = nb_getbufno(bufp);
2598 nbbuf_T *bp = nb_get_buf(bufno);
2599 char buffer[2*MAXPATHL];
2600 char_u *q;
2601
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002602 if (!NETBEANS_OPEN || !bufp->b_netbeans_file || dosetvisible)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002603 return;
2604
2605 q = nb_quote(bufp->b_ffname);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002606 if (q == NULL || bp == NULL)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002607 return;
2608
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002609 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n",
Bram Moolenaar009b2592004-10-24 19:18:58 +00002610 bufno,
2611 bufno,
2612 (char *)q,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002613 "T", // open in NetBeans
2614 "F"); // modified
Bram Moolenaar009b2592004-10-24 19:18:58 +00002615
2616 vim_free(q);
2617 nbdebug(("EVT: %s", buffer));
2618
2619 nb_send(buffer, "netbeans_file_opened");
2620}
2621
2622/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 * Tell netbeans the user opened a file.
2624 */
2625 void
Bram Moolenaar009b2592004-10-24 19:18:58 +00002626netbeans_file_opened(buf_T *bufp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627{
Bram Moolenaar009b2592004-10-24 19:18:58 +00002628 int bufno = nb_getbufno(bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 char buffer[2*MAXPATHL];
2630 char_u *q;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002631 nbbuf_T *bp = nb_get_buf(nb_getbufno(bufp));
2632 int bnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002634 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 return;
2636
Bram Moolenaar009b2592004-10-24 19:18:58 +00002637 q = nb_quote(bufp->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 if (q == NULL)
2639 return;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002640 if (bp != NULL)
2641 bnum = bufno;
2642 else
2643 bnum = 0;
2644
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002645 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n",
Bram Moolenaar009b2592004-10-24 19:18:58 +00002646 bnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 0,
2648 (char *)q,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002649 "T", // open in NetBeans
2650 "F"); // modified
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651
2652 vim_free(q);
2653 nbdebug(("EVT: %s", buffer));
2654
2655 nb_send(buffer, "netbeans_file_opened");
Bram Moolenaarb7407d32018-02-03 17:36:27 +01002656 if (p_acd && vim_chdirfile(bufp->b_ffname, "auto") == OK)
Bram Moolenaar05268152021-11-18 18:53:45 +00002657 {
2658 last_chdir_reason = "netbeans";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 shorten_fnames(TRUE);
Bram Moolenaar05268152021-11-18 18:53:45 +00002660 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661}
2662
2663/*
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002664 * Tell netbeans that a file was deleted or wiped out.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 */
2666 void
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002667netbeans_file_killed(buf_T *bufp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668{
2669 int bufno = nb_getbufno(bufp);
2670 nbbuf_T *nbbuf = nb_get_buf(bufno);
2671 char buffer[2*MAXPATHL];
2672
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002673 if (!NETBEANS_OPEN || bufno == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674 return;
2675
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002676 nbdebug(("netbeans_file_killed:\n"));
2677 nbdebug((" Killing bufno: %d", bufno));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678
Bram Moolenaar89d40322006-08-29 15:30:07 +00002679 sprintf(buffer, "%d:killed=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680
2681 nbdebug(("EVT: %s", buffer));
2682
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00002683 nb_send(buffer, "netbeans_file_killed");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684
2685 if (nbbuf != NULL)
2686 nbbuf->bufp = NULL;
2687}
2688
2689/*
2690 * Get a pointer to the Netbeans buffer for Vim buffer "bufp".
2691 * Return NULL if there is no such buffer or changes are not to be reported.
2692 * Otherwise store the buffer number in "*bufnop".
2693 */
2694 static nbbuf_T *
2695nb_bufp2nbbuf_fire(buf_T *bufp, int *bufnop)
2696{
2697 int bufno;
2698 nbbuf_T *nbbuf;
2699
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002700 if (!NETBEANS_OPEN || !netbeansFireChanges)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002701 return NULL; // changes are not reported at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702
2703 bufno = nb_getbufno(bufp);
2704 if (bufno <= 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002705 return NULL; // file is not known to NetBeans
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706
2707 nbbuf = nb_get_buf(bufno);
2708 if (nbbuf != NULL && !nbbuf->fireChanges)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002709 return NULL; // changes in this buffer are not reported
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710
2711 *bufnop = bufno;
2712 return nbbuf;
2713}
2714
2715/*
2716 * Tell netbeans the user inserted some text.
2717 */
2718 void
2719netbeans_inserted(
2720 buf_T *bufp,
2721 linenr_T linenr,
2722 colnr_T col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 char_u *txt,
2724 int newlen)
2725{
2726 char_u *buf;
2727 int bufno;
2728 nbbuf_T *nbbuf;
2729 pos_T pos;
2730 long off;
2731 char_u *p;
2732 char_u *newtxt;
2733
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002734 if (!NETBEANS_OPEN)
2735 return;
2736
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2738 if (nbbuf == NULL)
2739 return;
2740
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002741 // Don't mark as modified for initial read
Bram Moolenaar009b2592004-10-24 19:18:58 +00002742 if (nbbuf->insertDone)
2743 nbbuf->modified = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01002745 // send the "insert" EVT
2746 newtxt = alloc(newlen + 1);
2747 vim_strncpy(newtxt, txt, newlen);
2748
2749 // Note: this may make "txt" invalid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750 pos.lnum = linenr;
2751 pos.col = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752 off = pos2off(bufp, &pos);
2753
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 p = nb_quote(newtxt);
2755 if (p != NULL)
2756 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002757 buf = alloc(128 + 2*newlen);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002758 sprintf((char *)buf, "%d:insert=%d %ld \"%s\"\n",
2759 bufno, r_cmdno, off, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 nbdebug(("EVT: %s", buf));
2761 nb_send((char *)buf, "netbeans_inserted");
Bram Moolenaar009b2592004-10-24 19:18:58 +00002762 vim_free(p);
2763 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 vim_free(newtxt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766}
2767
2768/*
2769 * Tell netbeans some bytes have been removed.
2770 */
2771 void
2772netbeans_removed(
2773 buf_T *bufp,
2774 linenr_T linenr,
2775 colnr_T col,
2776 long len)
2777{
2778 char_u buf[128];
2779 int bufno;
2780 nbbuf_T *nbbuf;
2781 pos_T pos;
2782 long off;
2783
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002784 if (!NETBEANS_OPEN)
2785 return;
2786
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2788 if (nbbuf == NULL)
2789 return;
2790
2791 if (len < 0)
2792 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002793 nbdebug(("Negative len %ld in netbeans_removed()!\n", len));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 return;
2795 }
2796
2797 nbbuf->modified = 1;
2798
2799 pos.lnum = linenr;
2800 pos.col = col;
2801
2802 off = pos2off(bufp, &pos);
2803
Bram Moolenaar89d40322006-08-29 15:30:07 +00002804 sprintf((char *)buf, "%d:remove=%d %ld %ld\n", bufno, r_cmdno, off, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 nbdebug(("EVT: %s", buf));
2806 nb_send((char *)buf, "netbeans_removed");
2807}
2808
2809/*
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01002810 * Send netbeans an unmodified command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002813netbeans_unmodified(buf_T *bufp UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002815 // This is a no-op, because NetBeans considers a buffer modified
2816 // even when all changes have been undone.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817}
2818
2819/*
Bram Moolenaar9af41842016-09-25 21:45:05 +02002820 * Send a button release event back to netbeans. It's up to netbeans
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821 * to decide what to do (if anything) with this event.
2822 */
2823 void
2824netbeans_button_release(int button)
2825{
2826 char buf[128];
2827 int bufno;
2828
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002829 if (!NETBEANS_OPEN)
2830 return;
2831
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832 bufno = nb_getbufno(curbuf);
2833
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00002834 if (bufno < 0 || curwin == NULL || curwin->w_buffer != curbuf)
2835 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00002837 int col = mouse_col - curwin->w_wincol
2838 - ((curwin->w_p_nu || curwin->w_p_rnu) ? 9 : 1);
2839 long off = pos2off(curbuf, &curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00002841 // sync the cursor position
2842 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off);
2843 nbdebug(("EVT: %s", buf));
2844 nb_send(buf, "netbeans_button_release[newDotAndMark]");
2845
2846 sprintf(buf, "%d:buttonRelease=%d %d %ld %d\n", bufno, r_cmdno,
2847 button, (long)curwin->w_cursor.lnum, col);
2848 nbdebug(("EVT: %s", buf));
2849 nb_send(buf, "netbeans_button_release");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850}
2851
2852
2853/*
Bram Moolenaar143c38c2007-05-10 16:41:10 +00002854 * Send a keypress event back to netbeans. This usually simulates some
Bram Moolenaar009b2592004-10-24 19:18:58 +00002855 * kind of function key press. This function operates on a key code.
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002856 * Return TRUE when the key was sent, FALSE when the command has been
2857 * postponed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 */
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002859 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860netbeans_keycommand(int key)
2861{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 char keyName[60];
Bram Moolenaar009b2592004-10-24 19:18:58 +00002863
2864 netbeans_keyname(key, keyName);
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002865 return netbeans_keystring((char_u *)keyName);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002866}
2867
2868
2869/*
Bram Moolenaar143c38c2007-05-10 16:41:10 +00002870 * Send a keypress event back to netbeans. This usually simulates some
Bram Moolenaar009b2592004-10-24 19:18:58 +00002871 * kind of function key press. This function operates on a key string.
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002872 * Return TRUE when the key was sent, FALSE when the command has been
2873 * postponed.
Bram Moolenaar009b2592004-10-24 19:18:58 +00002874 */
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002875 static int
2876netbeans_keystring(char_u *keyName)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002877{
2878 char buf[2*MAXPATHL];
2879 int bufno = nb_getbufno(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880 long off;
2881 char_u *q;
2882
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002883 if (!NETBEANS_OPEN)
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002884 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 if (bufno == -1)
2887 {
2888 nbdebug(("got keycommand for non-NetBeans buffer, opening...\n"));
2889 q = curbuf->b_ffname == NULL ? (char_u *)""
2890 : nb_quote(curbuf->b_ffname);
2891 if (q == NULL)
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002892 return TRUE;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002893 vim_snprintf(buf, sizeof(buf), "0:fileOpened=%d \"%s\" %s %s\n", 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894 q,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002895 "T", // open in NetBeans
2896 "F"); // modified
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897 if (curbuf->b_ffname != NULL)
2898 vim_free(q);
2899 nbdebug(("EVT: %s", buf));
2900 nb_send(buf, "netbeans_keycommand");
2901
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002902 postpone_keycommand(keyName);
2903 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904 }
2905
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002906 // sync the cursor position
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907 off = pos2off(curbuf, &curwin->w_cursor);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002908 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 nbdebug(("EVT: %s", buf));
2910 nb_send(buf, "netbeans_keycommand");
2911
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002912 // To work on Win32 you must apply patch to ExtEditor module
2913 // from ExtEdCaret.java.diff - make EVT_newDotAndMark handler
2914 // more synchronous
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002916 // now send keyCommand event
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002917 vim_snprintf(buf, sizeof(buf), "%d:keyCommand=%d \"%s\"\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00002918 bufno, r_cmdno, keyName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919 nbdebug(("EVT: %s", buf));
2920 nb_send(buf, "netbeans_keycommand");
2921
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002922 // New: do both at once and include the lnum/col.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002923 vim_snprintf(buf, sizeof(buf), "%d:keyAtPos=%d \"%s\" %ld %ld/%ld\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00002924 bufno, r_cmdno, keyName,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925 off, (long)curwin->w_cursor.lnum, (long)curwin->w_cursor.col);
2926 nbdebug(("EVT: %s", buf));
2927 nb_send(buf, "netbeans_keycommand");
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002928 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929}
2930
2931
2932/*
2933 * Send a save event to netbeans.
2934 */
2935 void
2936netbeans_save_buffer(buf_T *bufp)
2937{
2938 char_u buf[64];
2939 int bufno;
2940 nbbuf_T *nbbuf;
2941
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002942 if (!NETBEANS_OPEN)
2943 return;
2944
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2946 if (nbbuf == NULL)
2947 return;
2948
2949 nbbuf->modified = 0;
2950
Bram Moolenaar89d40322006-08-29 15:30:07 +00002951 sprintf((char *)buf, "%d:save=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952 nbdebug(("EVT: %s", buf));
2953 nb_send((char *)buf, "netbeans_save_buffer");
2954}
2955
2956
2957/*
2958 * Send remove command to netbeans (this command has been turned off).
2959 */
2960 void
2961netbeans_deleted_all_lines(buf_T *bufp)
2962{
2963 char_u buf[64];
2964 int bufno;
2965 nbbuf_T *nbbuf;
2966
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002967 if (!NETBEANS_OPEN)
2968 return;
2969
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2971 if (nbbuf == NULL)
2972 return;
2973
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002974 // Don't mark as modified for initial read
Bram Moolenaar009b2592004-10-24 19:18:58 +00002975 if (nbbuf->insertDone)
2976 nbbuf->modified = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977
Bram Moolenaar89d40322006-08-29 15:30:07 +00002978 sprintf((char *)buf, "%d:remove=%d 0 -1\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979 nbdebug(("EVT(suppressed): %s", buf));
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002980// nb_send(buf, "netbeans_deleted_all_lines");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981}
2982
2983
2984/*
2985 * See if the lines are guarded. The top and bot parameters are from
2986 * u_savecommon(), these are the line above the change and the line below the
2987 * change.
2988 */
2989 int
2990netbeans_is_guarded(linenr_T top, linenr_T bot)
2991{
Bram Moolenaar6656c2e2019-10-24 15:00:04 +02002992 sign_entry_T *p;
2993 int lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002995 if (!NETBEANS_OPEN)
2996 return FALSE;
2997
Bram Moolenaaraeea7212020-04-02 18:50:46 +02002998 FOR_ALL_SIGNS_IN_BUF(curbuf, p)
Bram Moolenaar6656c2e2019-10-24 15:00:04 +02002999 if (p->se_id >= GUARDEDOFFSET)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000 for (lnum = top + 1; lnum < bot; lnum++)
Bram Moolenaar6656c2e2019-10-24 15:00:04 +02003001 if (lnum == p->se_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002 return TRUE;
3003
3004 return FALSE;
3005}
3006
Bram Moolenaar173c9852010-09-29 17:27:01 +02003007#if defined(FEAT_GUI_X11) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008/*
3009 * We have multiple signs to draw at the same location. Draw the
3010 * multi-sign indicator instead. This is the Motif version.
3011 */
3012 void
3013netbeans_draw_multisign_indicator(int row)
3014{
3015 int i;
3016 int y;
3017 int x;
3018
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003019 if (!NETBEANS_OPEN)
3020 return;
3021
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 x = 0;
3023 y = row * gui.char_height + 2;
3024
3025 for (i = 0; i < gui.char_height - 3; i++)
3026 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y++);
3027
3028 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+0, y);
3029 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3030 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+4, y++);
3031 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+1, y);
3032 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3033 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+3, y++);
3034 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3035}
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003036#endif // FEAT_GUI_X11
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037
Bram Moolenaar64404472010-06-26 06:24:45 +02003038#if defined(FEAT_GUI_GTK) && !defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039/*
3040 * We have multiple signs to draw at the same location. Draw the
3041 * multi-sign indicator instead. This is the GTK/Gnome version.
3042 */
3043 void
3044netbeans_draw_multisign_indicator(int row)
3045{
3046 int i;
3047 int y;
3048 int x;
Bram Moolenaar98921892016-02-23 17:14:37 +01003049#if GTK_CHECK_VERSION(3,0,0)
3050 cairo_t *cr = NULL;
3051#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052 GdkDrawable *drawable = gui.drawarea->window;
Bram Moolenaar98921892016-02-23 17:14:37 +01003053#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003055 if (!NETBEANS_OPEN)
3056 return;
3057
Bram Moolenaar98921892016-02-23 17:14:37 +01003058#if GTK_CHECK_VERSION(3,0,0)
3059 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003060 cairo_set_source_rgba(cr,
3061 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
3062 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01003063#endif
3064
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065 x = 0;
3066 y = row * gui.char_height + 2;
3067
3068 for (i = 0; i < gui.char_height - 3; i++)
Bram Moolenaar98921892016-02-23 17:14:37 +01003069#if GTK_CHECK_VERSION(3,0,0)
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+2, y++);
Bram Moolenaar98921892016-02-23 17:14:37 +01003073#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074
Bram Moolenaar98921892016-02-23 17:14:37 +01003075#if GTK_CHECK_VERSION(3,0,0)
3076 cairo_rectangle(cr, x+0, y, 1, 1);
3077 cairo_rectangle(cr, x+2, y, 1, 1);
3078 cairo_rectangle(cr, x+4, y++, 1, 1);
3079 cairo_rectangle(cr, x+1, y, 1, 1);
3080 cairo_rectangle(cr, x+2, y, 1, 1);
3081 cairo_rectangle(cr, x+3, y++, 1, 1);
3082 cairo_rectangle(cr, x+2, y, 1, 1);
3083#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084 gdk_draw_point(drawable, gui.text_gc, x+0, y);
3085 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3086 gdk_draw_point(drawable, gui.text_gc, x+4, y++);
3087 gdk_draw_point(drawable, gui.text_gc, x+1, y);
3088 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3089 gdk_draw_point(drawable, gui.text_gc, x+3, y++);
3090 gdk_draw_point(drawable, gui.text_gc, x+2, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003091#endif
3092
3093#if GTK_CHECK_VERSION(3,0,0)
3094 cairo_destroy(cr);
3095#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096}
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003097#endif // FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098
3099/*
3100 * If the mouse is clicked in the gutter of a line with multiple
3101 * annotations, cycle through the set of signs.
3102 */
3103 void
3104netbeans_gutter_click(linenr_T lnum)
3105{
Bram Moolenaar6656c2e2019-10-24 15:00:04 +02003106 sign_entry_T *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003108 if (!NETBEANS_OPEN)
3109 return;
3110
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003111 FOR_ALL_SIGNS_IN_BUF(curbuf, p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 {
Bram Moolenaar6656c2e2019-10-24 15:00:04 +02003113 if (p->se_lnum == lnum && p->se_next && p->se_next->se_lnum == lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114 {
Bram Moolenaar6656c2e2019-10-24 15:00:04 +02003115 sign_entry_T *tail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003117 // remove "p" from list, reinsert it at the tail of the sublist
Bram Moolenaar6656c2e2019-10-24 15:00:04 +02003118 if (p->se_prev)
3119 p->se_prev->se_next = p->se_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120 else
Bram Moolenaar6656c2e2019-10-24 15:00:04 +02003121 curbuf->b_signlist = p->se_next;
3122 p->se_next->se_prev = p->se_prev;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003123 // now find end of sublist and insert p
Bram Moolenaar6656c2e2019-10-24 15:00:04 +02003124 for (tail = p->se_next;
3125 tail->se_next && tail->se_next->se_lnum == lnum
3126 && tail->se_next->se_id < GUARDEDOFFSET;
3127 tail = tail->se_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128 ;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003129 // tail now points to last entry with same lnum (except
3130 // that "guarded" annotations are always last)
Bram Moolenaar6656c2e2019-10-24 15:00:04 +02003131 p->se_next = tail->se_next;
3132 if (tail->se_next)
3133 tail->se_next->se_prev = p;
3134 p->se_prev = tail;
3135 tail->se_next = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 update_debug_sign(curbuf, lnum);
3137 break;
3138 }
3139 }
3140}
3141
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142/*
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003143 * Add a sign of the requested type at the requested location.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 *
3145 * Reverse engineering:
3146 * Apparently an annotation is defined the first time it is used in a buffer.
3147 * When the same annotation is used in two buffers, the second time we do not
3148 * need to define a new sign name but reuse the existing one. But since the
3149 * ID number used in the second buffer starts counting at one again, a mapping
3150 * is made from the ID specifically for the buffer to the global sign name
3151 * (which is a number).
3152 *
3153 * globalsignmap[] stores the signs that have been defined globally.
3154 * buf->signmapused[] maps buffer-local annotation IDs to an index in
3155 * globalsignmap[].
3156 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 static void
3158addsigntype(
3159 nbbuf_T *buf,
3160 int typeNum,
3161 char_u *typeName,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003162 char_u *tooltip UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163 char_u *glyphFile,
Bram Moolenaar67c53842010-05-22 18:28:27 +02003164 char_u *fg,
3165 char_u *bg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167 int i, j;
Bram Moolenaar67c53842010-05-22 18:28:27 +02003168 int use_fg = (*fg && STRCMP(fg, "none") != 0);
3169 int use_bg = (*bg && STRCMP(bg, "none") != 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170
3171 for (i = 0; i < globalsignmapused; i++)
3172 if (STRCMP(typeName, globalsignmap[i]) == 0)
3173 break;
3174
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003175 if (i == globalsignmapused) // not found; add it to global map
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003177 nbdebug(("DEFINEANNOTYPE(%d,%s,%s,%s,%s,%s)\n",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178 typeNum, typeName, tooltip, glyphFile, fg, bg));
3179 if (use_fg || use_bg)
3180 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003181 char fgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1];
3182 char bgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1];
3183 char *ptr;
3184 int value;
3185
3186 value = strtol((char *)fg, &ptr, 10);
3187 if (ptr != (char *)fg)
3188 sprintf(fgbuf, "guifg=#%06x", value & 0xFFFFFF);
3189 else
3190 sprintf(fgbuf, "guifg=%s ctermfg=%s", fg, fg);
3191
3192 value = strtol((char *)bg, &ptr, 10);
3193 if (ptr != (char *)bg)
3194 sprintf(bgbuf, "guibg=#%06x", value & 0xFFFFFF);
3195 else
3196 sprintf(bgbuf, "guibg=%s ctermbg=%s", bg, bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197
3198 coloncmd(":highlight NB_%s %s %s", typeName, (use_fg) ? fgbuf : "",
3199 (use_bg) ? bgbuf : "");
3200 if (*glyphFile == NUL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003201 // no glyph, line highlighting only
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202 coloncmd(":sign define %d linehl=NB_%s", i + 1, typeName);
3203 else if (vim_strsize(glyphFile) <= 2)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003204 // one- or two-character glyph name, use as text glyph with
3205 // texthl
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 coloncmd(":sign define %d text=%s texthl=NB_%s", i + 1,
3207 glyphFile, typeName);
3208 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003209 // glyph, line highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210 coloncmd(":sign define %d icon=%s linehl=NB_%s", i + 1,
3211 glyphFile, typeName);
3212 }
3213 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003214 // glyph, no line highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215 coloncmd(":sign define %d icon=%s", i + 1, glyphFile);
3216
3217 if (STRCMP(typeName,"CurrentPC") == 0)
3218 curPCtype = typeNum;
3219
3220 if (globalsignmapused == globalsignmaplen)
3221 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003222 if (globalsignmaplen == 0) // first allocation
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 {
3224 globalsignmaplen = 20;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003225 globalsignmap = ALLOC_CLEAR_MULT(char *, globalsignmaplen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003227 else // grow it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228 {
3229 int incr;
3230 int oldlen = globalsignmaplen;
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003231 char **t_globalsignmap = globalsignmap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232
3233 globalsignmaplen *= 2;
3234 incr = globalsignmaplen - oldlen;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003235 globalsignmap = vim_realloc(globalsignmap,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003236 globalsignmaplen * sizeof(char *));
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003237 if (globalsignmap == NULL)
3238 {
3239 vim_free(t_globalsignmap);
3240 globalsignmaplen = 0;
3241 return;
3242 }
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003243 vim_memset(globalsignmap + oldlen, 0, incr * sizeof(char *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244 }
3245 }
3246
Bram Moolenaar32e5ec02020-11-06 13:44:21 +01003247 globalsignmap[i] = (char *)vim_strsave(typeName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248 globalsignmapused = i + 1;
3249 }
3250
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003251 // check local map; should *not* be found!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 for (j = 0; j < buf->signmapused; j++)
3253 if (buf->signmap[j] == i + 1)
3254 return;
3255
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003256 // add to local map
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257 if (buf->signmapused == buf->signmaplen)
3258 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003259 if (buf->signmaplen == 0) // first allocation
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260 {
3261 buf->signmaplen = 5;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003262 buf->signmap = ALLOC_CLEAR_MULT(int, buf->signmaplen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003264 else // grow it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 {
3266 int incr;
3267 int oldlen = buf->signmaplen;
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003268 int *t_signmap = buf->signmap;
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003269
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270 buf->signmaplen *= 2;
3271 incr = buf->signmaplen - oldlen;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003272 buf->signmap = vim_realloc(buf->signmap,
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003273 buf->signmaplen * sizeof(int));
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003274 if (buf->signmap == NULL)
3275 {
3276 vim_free(t_signmap);
3277 buf->signmaplen = 0;
3278 return;
3279 }
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003280 vim_memset(buf->signmap + oldlen, 0, incr * sizeof(int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281 }
3282 }
3283
3284 buf->signmap[buf->signmapused++] = i + 1;
3285
3286}
3287
3288
3289/*
3290 * See if we have the requested sign type in the buffer.
3291 */
3292 static int
3293mapsigntype(nbbuf_T *buf, int localsigntype)
3294{
3295 if (--localsigntype >= 0 && localsigntype < buf->signmapused)
3296 return buf->signmap[localsigntype];
3297
3298 return 0;
3299}
3300
3301
3302/*
3303 * Compute length of buffer, don't print anything.
3304 */
3305 static long
3306get_buf_size(buf_T *bufp)
3307{
3308 linenr_T lnum;
3309 long char_count = 0;
3310 int eol_size;
3311 long last_check = 100000L;
3312
3313 if (bufp->b_ml.ml_flags & ML_EMPTY)
3314 return 0;
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00003315
3316 if (get_fileformat(bufp) == EOL_DOS)
3317 eol_size = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318 else
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00003319 eol_size = 1;
3320 for (lnum = 1; lnum <= bufp->b_ml.ml_line_count; ++lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 {
zeertzjq94b7c322024-03-12 21:50:32 +01003322 char_count += ml_get_buf_len(bufp, lnum) + eol_size;
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00003323 // Check for a CTRL-C every 100000 characters
3324 if (char_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325 {
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00003326 ui_breakcheck();
3327 if (got_int)
3328 return char_count;
3329 last_check = char_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331 }
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00003332 // Correction for when last line doesn't have an EOL.
3333 if (!bufp->b_p_eol && (bufp->b_p_bin || !bufp->b_p_fixeol))
3334 char_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335
3336 return char_count;
3337}
3338
3339/*
3340 * Convert character offset to lnum,col
3341 */
3342 static pos_T *
3343off2pos(buf_T *buf, long offset)
3344{
3345 linenr_T lnum;
3346 static pos_T pos;
3347
3348 pos.lnum = 0;
3349 pos.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 pos.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351
3352 if (!(buf->b_ml.ml_flags & ML_EMPTY))
3353 {
3354 if ((lnum = ml_find_line_or_offset(buf, (linenr_T)0, &offset)) < 0)
3355 return NULL;
3356 pos.lnum = lnum;
3357 pos.col = offset;
3358 }
3359
3360 return &pos;
3361}
3362
3363/*
3364 * Convert an argument in the form "1234" to an offset and compute the
3365 * lnum/col from it. Convert an argument in the form "123/12" directly to a
3366 * lnum/col.
3367 * "argp" is advanced to after the argument.
3368 * Return a pointer to the position, NULL if something is wrong.
3369 */
3370 static pos_T *
3371get_off_or_lnum(buf_T *buf, char_u **argp)
3372{
3373 static pos_T mypos;
3374 long off;
3375
3376 off = strtol((char *)*argp, (char **)argp, 10);
3377 if (**argp == '/')
3378 {
3379 mypos.lnum = (linenr_T)off;
3380 ++*argp;
3381 mypos.col = strtol((char *)*argp, (char **)argp, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 mypos.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383 return &mypos;
3384 }
3385 return off2pos(buf, off);
3386}
3387
3388
3389/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003390 * Convert (lnum,col) to byte offset in the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 */
3392 static long
3393pos2off(buf_T *buf, pos_T *pos)
3394{
3395 long offset = 0;
3396
Yegappan Lakshmanana41e2212023-01-16 18:19:05 +00003397 if (buf->b_ml.ml_flags & ML_EMPTY)
3398 return 0;
3399
3400 if ((offset = ml_find_line_or_offset(buf, pos->lnum, 0)) < 0)
3401 return 0;
3402 offset += pos->col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403
3404 return offset;
3405}
3406
3407
Bram Moolenaar009b2592004-10-24 19:18:58 +00003408/*
Bram Moolenaar9af41842016-09-25 21:45:05 +02003409 * This message is printed after NetBeans opens a new file. It's
Bram Moolenaar009b2592004-10-24 19:18:58 +00003410 * similar to the message readfile() uses, but since NetBeans
3411 * doesn't normally call readfile, we do our own.
3412 */
3413 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003414print_read_msg(nbbuf_T *buf)
Bram Moolenaar009b2592004-10-24 19:18:58 +00003415{
3416 int lnum = buf->bufp->b_ml.ml_line_count;
Bram Moolenaar8767f522016-07-01 17:17:39 +02003417 off_T nchars = buf->bufp->b_orig_size;
Bram Moolenaar009b2592004-10-24 19:18:58 +00003418 char_u c;
3419
3420 msg_add_fname(buf->bufp, buf->bufp->b_ffname);
3421 c = FALSE;
3422
3423 if (buf->bufp->b_p_ro)
3424 {
3425 STRCAT(IObuff, shortmess(SHM_RO) ? _("[RO]") : _("[readonly]"));
3426 c = TRUE;
3427 }
3428 if (!buf->bufp->b_start_eol)
3429 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003430 STRCAT(IObuff, shortmess(SHM_LAST) ? _("[noeol]")
3431 : _("[Incomplete last line]"));
Bram Moolenaar009b2592004-10-24 19:18:58 +00003432 c = TRUE;
3433 }
3434 msg_add_lines(c, (long)lnum, nchars);
3435
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003436 // Now display it
Bram Moolenaard23a8232018-02-10 18:45:26 +01003437 VIM_CLEAR(keep_msg);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003438 msg_scrolled_ign = TRUE;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003439 msg_trunc_attr((char *)IObuff, FALSE, 0);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003440 msg_scrolled_ign = FALSE;
3441}
3442
3443
3444/*
Bram Moolenaar67c53842010-05-22 18:28:27 +02003445 * Print a message after NetBeans writes the file. This message should be
3446 * identical to the standard message a non-netbeans user would see when
3447 * writing a file.
Bram Moolenaar009b2592004-10-24 19:18:58 +00003448 */
3449 static void
Bram Moolenaar8767f522016-07-01 17:17:39 +02003450print_save_msg(nbbuf_T *buf, off_T nchars)
Bram Moolenaar009b2592004-10-24 19:18:58 +00003451{
3452 char_u c;
3453 char_u *p;
3454
3455 if (nchars >= 0)
3456 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003457 // put fname in IObuff with quotes
Bram Moolenaar67c53842010-05-22 18:28:27 +02003458 msg_add_fname(buf->bufp, buf->bufp->b_ffname);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003459 c = FALSE;
3460
3461 msg_add_lines(c, buf->bufp->b_ml.ml_line_count,
Bram Moolenaar914703b2010-05-31 21:59:46 +02003462 buf->bufp->b_orig_size);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003463
Bram Moolenaard23a8232018-02-10 18:45:26 +01003464 VIM_CLEAR(keep_msg);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003465 msg_scrolled_ign = TRUE;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003466 p = (char_u *)msg_trunc_attr((char *)IObuff, FALSE, 0);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003467 if ((msg_scrolled && !need_wait_return) || !buf->initDone)
3468 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003469 // Need to repeat the message after redrawing when:
3470 // - When reading from stdin (the screen will be cleared next).
3471 // - When restart_edit is set (otherwise there will be a delay
3472 // before redrawing).
3473 // - When the screen was scrolled but there is no wait-return
3474 // prompt.
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003475 set_keep_msg(p, 0);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003476 }
3477 msg_scrolled_ign = FALSE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003478 // add_to_input_buf((char_u *)"\f", 1);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003479 }
3480 else
3481 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003482 char msgbuf[IOSIZE];
Bram Moolenaar009b2592004-10-24 19:18:58 +00003483
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003484 vim_snprintf(msgbuf, IOSIZE,
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00003485 _(e_is_read_only_add_bang_to_override), IObuff);
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003486 nbdebug((" %s\n", msgbuf));
3487 emsg(msgbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003488 }
3489}
3490
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003491#endif // defined(FEAT_NETBEANS_INTG)