Mercurial > vim
annotate src/netbeans.c @ 32035:d21e867c517e v9.0.1349
patch 9.0.1349: "gr" with a count fails
Commit: https://github.com/vim/vim/commit/3ddb1182b7b8d376e59b444f6b3e213f0dcd3417
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Feb 23 22:14:37 2023 +0000
patch 9.0.1349: "gr" with a count fails
Problem: "gr" with a count fails.
Solution: Break out of the loop only after using the count.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 23 Feb 2023 23:15:03 +0100 |
parents | 3365a601e73b |
children | a1e1527d1cb8 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * Netbeans integration by David Weatherford | |
5 * Adopted for Win32 by Sergey Khorev | |
6 * | |
7 * Do ":help uganda" in Vim to read copying and usage conditions. | |
8 * Do ":help credits" in Vim to see a list of people who contributed. | |
9 */ | |
10 | |
11 /* | |
12 * Implements client side of org.netbeans.modules.emacs editor | |
13 * integration protocol. Be careful! The protocol uses offsets | |
14 * which are *between* characters, whereas vim uses line number | |
15 * and column number which are *on* characters. | |
16 * See ":help netbeans-protocol" for explanation. | |
3151 | 17 * |
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. | |
7 | 24 */ |
25 | |
26 #include "vim.h" | |
27 | |
28 #if defined(FEAT_NETBEANS_INTG) || defined(PROTO) | |
29 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
30 #ifndef MSWIN |
7753
15e67f90b9b2
commit https://github.com/vim/vim/commit/3e53c700a2bcbe7fafb51cd01f3e6428fd803099
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
31 # include <netdb.h> |
7 | 32 # ifdef HAVE_LIBGEN_H |
33 # include <libgen.h> | |
34 # endif | |
35 #endif | |
36 | |
37 #include "version.h" | |
38 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
39 #define GUARDED 10000 // typenr for "guarded" annotation |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
40 #define GUARDEDOFFSET 1000000 // base for "guarded" sign id's |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
41 #define MAX_COLOR_LENGTH 32 // max length of color name in defineAnnoType |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
42 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
43 // The first implementation (working only with Netbeans) returned "1.1". The |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
44 // protocol implemented here also supports A-A-P. |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
45 static char *ExtEdProtocolVersion = "2.5"; |
7 | 46 |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
47 static long pos2off(buf_T *, pos_T *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
48 static pos_T *off2pos(buf_T *, long); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
49 static pos_T *get_off_or_lnum(buf_T *buf, char_u **argp); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
50 static long get_buf_size(buf_T *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
51 static int netbeans_keystring(char_u *keystr); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
52 static void special_keys(char_u *args); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
53 |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
54 static int getConnInfo(char *file, char **host, char **port, char **password); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
55 |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
56 static void nb_init_graphics(void); |
25475
038eb6d9003a
patch 8.2.3274: macro for printf format check can be simplified
Bram Moolenaar <Bram@vim.org>
parents:
22830
diff
changeset
|
57 static void coloncmd(char *cmd, ...) ATTRIBUTE_FORMAT_PRINTF(1, 2); |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
58 static void nb_set_curbuf(buf_T *buf); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
59 static void nb_parse_cmd(char_u *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
60 static int nb_do_cmd(int, char_u *, int, int, char_u *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
61 static void nb_send(char *buf, char *fun); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
62 static void nb_free(void); |
7 | 63 |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
64 #define NETBEANS_OPEN (channel_can_write_to(nb_channel)) |
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
65 static channel_T *nb_channel = NULL; |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
66 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
67 static int r_cmdno; // current command number for reply |
33 | 68 static int dosetvisible = FALSE; |
69 | |
7 | 70 /* |
71 * Include the debugging code if wanted. | |
72 */ | |
73 #ifdef NBDEBUG | |
74 # include "nbdebug.c" | |
75 #endif | |
76 | |
2210 | 77 static int needupdate = 0; |
78 static int inAtomic = 0; | |
7 | 79 |
2639 | 80 /* |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
81 * Callback invoked when the channel is closed. |
2639 | 82 */ |
7 | 83 static void |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
84 nb_channel_closed(void) |
7 | 85 { |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
86 nb_channel = NULL; |
2639 | 87 } |
88 | |
89 /* | |
90 * Close the connection and cleanup. | |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
91 * May be called when the socket was closed earlier. |
2639 | 92 */ |
93 static void | |
94 netbeans_close(void) | |
95 { | |
96 if (NETBEANS_OPEN) | |
97 { | |
98 netbeans_send_disconnect(); | |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
99 if (nb_channel != NULL) |
8267
108d30ed34ba
commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents:
8240
diff
changeset
|
100 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
101 // Close the socket and remove the input handlers. |
8240
60586ce747c4
commit https://github.com/vim/vim/commit/8b374215ccd35003b95ba1df8f12e03bf8a8adc3
Christian Brabandt <cb@256bit.org>
parents:
8218
diff
changeset
|
102 channel_close(nb_channel, TRUE); |
8267
108d30ed34ba
commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents:
8240
diff
changeset
|
103 channel_clear(nb_channel); |
108d30ed34ba
commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents:
8240
diff
changeset
|
104 } |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
105 nb_channel = NULL; |
2639 | 106 } |
107 | |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
108 #ifdef FEAT_BEVAL_GUI |
183 | 109 bevalServers &= ~BEVAL_NETBEANS; |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
110 #endif |
2210 | 111 |
112 needupdate = 0; | |
113 inAtomic = 0; | |
114 nb_free(); | |
115 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
116 // remove all signs and update the screen after gutter removal |
2210 | 117 coloncmd(":sign unplace *"); |
118 changed_window_setting(); | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29340
diff
changeset
|
119 update_screen(UPD_CLEAR); |
2210 | 120 setcursor(); |
2745 | 121 cursor_on(); |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
122 out_flush_cursor(TRUE, FALSE); |
7 | 123 } |
124 | |
125 #define NB_DEF_HOST "localhost" | |
126 #define NB_DEF_ADDR "3219" | |
127 #define NB_DEF_PASS "changeme" | |
128 | |
2210 | 129 static int |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
130 netbeans_connect(char *params, int doabort) |
7 | 131 { |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
132 int port; |
7 | 133 char buf[32]; |
134 char *hostname = NULL; | |
135 char *address = NULL; | |
136 char *password = NULL; | |
137 char *fname; | |
138 char *arg = NULL; | |
139 | |
2210 | 140 if (*params == '=') |
7 | 141 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
142 // "=fname": Read info from specified file. |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
143 if (getConnInfo(params + 1, &hostname, &address, &password) == FAIL) |
2210 | 144 return FAIL; |
7 | 145 } |
146 else | |
147 { | |
2210 | 148 if (*params == ':') |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
149 // ":<host>:<addr>:<password>": get info from argument |
2210 | 150 arg = params + 1; |
7 | 151 if (arg == NULL && (fname = getenv("__NETBEANS_CONINFO")) != NULL) |
152 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
153 // "": get info from file specified in environment |
7 | 154 if (getConnInfo(fname, &hostname, &address, &password) == FAIL) |
2210 | 155 return FAIL; |
7 | 156 } |
157 else | |
158 { | |
159 if (arg != NULL) | |
160 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
161 // ":<host>:<addr>:<password>": get info from argument |
7 | 162 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 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
173 // Get the missing values from the environment. |
7 | 174 if (hostname == NULL || *hostname == '\0') |
175 hostname = getenv("__NETBEANS_HOST"); | |
176 if (address == NULL) | |
177 address = getenv("__NETBEANS_SOCKET"); | |
178 if (password == NULL) | |
179 password = getenv("__NETBEANS_VIM_PASSWORD"); | |
180 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
181 // Move values to allocated memory. |
7 | 182 if (hostname != NULL) |
183 hostname = (char *)vim_strsave((char_u *)hostname); | |
184 if (address != NULL) | |
185 address = (char *)vim_strsave((char_u *)address); | |
186 if (password != NULL) | |
187 password = (char *)vim_strsave((char_u *)password); | |
188 } | |
189 } | |
190 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
191 // Use the default when a value is missing. |
7 | 192 if (hostname == NULL || *hostname == '\0') |
193 { | |
194 vim_free(hostname); | |
195 hostname = (char *)vim_strsave((char_u *)NB_DEF_HOST); | |
196 } | |
197 if (address == NULL || *address == '\0') | |
198 { | |
199 vim_free(address); | |
200 address = (char *)vim_strsave((char_u *)NB_DEF_ADDR); | |
201 } | |
202 if (password == NULL || *password == '\0') | |
203 { | |
204 vim_free(password); | |
205 password = (char *)vim_strsave((char_u *)NB_DEF_PASS); | |
206 } | |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
207 if (hostname != NULL && address != NULL && password != NULL) |
7 | 208 { |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
209 port = atoi(address); |
8114
4aea0b0aa714
commit https://github.com/vim/vim/commit/81661fb86801e6d6e5194b43dfd27d73fcc016ec
Christian Brabandt <cb@256bit.org>
parents:
8041
diff
changeset
|
210 nb_channel = channel_open(hostname, port, 3000, nb_channel_closed); |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
211 if (nb_channel != NULL) |
7 | 212 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
213 // success |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
214 # ifdef FEAT_BEVAL_GUI |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
215 bevalServers |= BEVAL_NETBEANS; |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
216 # endif |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
217 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
218 // success, login |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
219 vim_snprintf(buf, sizeof(buf), "AUTH %s\n", password); |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
220 nb_send(buf, "netbeans_connect"); |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
221 |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
222 sprintf(buf, "0:version=0 \"%s\"\n", ExtEdProtocolVersion); |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
223 nb_send(buf, "externaleditor_version"); |
7 | 224 } |
225 } | |
226 | |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
227 if (nb_channel == NULL && doabort) |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
228 getout(1); |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
229 |
7 | 230 vim_free(hostname); |
231 vim_free(address); | |
232 vim_free(password); | |
2210 | 233 return NETBEANS_OPEN ? OK : FAIL; |
7 | 234 } |
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 | |
243 getConnInfo(char *file, char **host, char **port, char **auth) | |
244 { | |
245 FILE *fp; | |
246 char_u buf[BUFSIZ]; | |
247 char_u *lp; | |
3265 | 248 char_u *nlp; |
7 | 249 #ifdef UNIX |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9375
diff
changeset
|
250 stat_T st; |
7 | 251 |
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 { | |
1618 | 258 nbdebug(("Wrong access mode for NetBeans connection info file: \"%s\"\n", |
259 file)); | |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
260 semsg(_(e_wrong_access_mode_for_netbeans_connection_info_file_str), |
7 | 261 file); |
262 return FAIL; | |
263 } | |
264 #endif | |
265 | |
266 fp = mch_fopen(file, "r"); | |
267 if (fp == NULL) | |
268 { | |
1618 | 269 nbdebug(("Cannot open NetBeans connection info file\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
270 PERROR(e_cannot_open_netbeans_connection_info_file); |
7 | 271 return FAIL; |
272 } | |
273 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
274 // Read the file. There should be one of each parameter |
7 | 275 while ((lp = (char_u *)fgets((char *)buf, BUFSIZ, fp)) != NULL) |
276 { | |
3265 | 277 if ((nlp = vim_strchr(lp, '\n')) != NULL) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
278 *nlp = 0; // strip off the trailing newline |
7 | 279 |
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 | |
302 struct keyqueue | |
303 { | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
304 char_u *keystr; |
7 | 305 struct keyqueue *next; |
306 struct keyqueue *prev; | |
307 }; | |
308 | |
309 typedef struct keyqueue keyQ_T; | |
310 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
311 static keyQ_T keyHead; // dummy node, header for circular queue |
7 | 312 |
313 | |
314 /* | |
315 * Queue up key commands sent from netbeans. | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
316 * We store the string, because it may depend on the global mod_mask and |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
317 * :nbkey doesn't have a key number. |
7 | 318 */ |
319 static void | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
320 postpone_keycommand(char_u *keystr) |
7 | 321 { |
322 keyQ_T *node; | |
323 | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
324 node = ALLOC_ONE(keyQ_T); |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
325 if (node == NULL) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
326 return; // out of memory, drop the key |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
327 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
328 if (keyHead.next == NULL) // initialize circular queue |
7 | 329 { |
330 keyHead.next = &keyHead; | |
331 keyHead.prev = &keyHead; | |
332 } | |
333 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
334 // insert node at tail of queue |
7 | 335 node->next = &keyHead; |
336 node->prev = keyHead.prev; | |
337 keyHead.prev->next = node; | |
338 keyHead.prev = node; | |
339 | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
340 node->keystr = vim_strsave(keystr); |
7 | 341 } |
342 | |
343 /* | |
344 * Handle any queued-up NetBeans keycommands to be send. | |
345 */ | |
346 static void | |
347 handle_key_queue(void) | |
348 { | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
349 int postponed = FALSE; |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
350 |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
351 while (!postponed && keyHead.next && keyHead.next != &keyHead) |
7 | 352 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
353 // first, unlink the node |
7 | 354 keyQ_T *node = keyHead.next; |
355 keyHead.next = node->next; | |
356 node->next->prev = node->prev; | |
357 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
358 // Now, send the keycommand. This may cause it to be postponed again |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
359 // and change keyHead. |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
360 if (node->keystr != NULL) |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
361 postponed = !netbeans_keystring(node->keystr); |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
362 vim_free(node->keystr); |
7 | 363 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
364 // Finally, dispose of the node |
7 | 365 vim_free(node); |
366 } | |
367 } | |
368 | |
369 | |
370 /* | |
371 * While there's still a command in the work queue, parse and execute it. | |
372 */ | |
1618 | 373 void |
374 netbeans_parse_messages(void) | |
7 | 375 { |
9246
6ee88fa405b3
commit https://github.com/vim/vim/commit/5f1032d2a55b9417a0a6fa225e35089c98a5a419
Christian Brabandt <cb@256bit.org>
parents:
9215
diff
changeset
|
376 readq_T *node; |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
377 char_u *buffer; |
7 | 378 char_u *p; |
2653 | 379 int own_node; |
7 | 380 |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
381 while (nb_channel != NULL) |
7 | 382 { |
9246
6ee88fa405b3
commit https://github.com/vim/vim/commit/5f1032d2a55b9417a0a6fa225e35089c98a5a419
Christian Brabandt <cb@256bit.org>
parents:
9215
diff
changeset
|
383 node = channel_peek(nb_channel, PART_SOCK); |
6ee88fa405b3
commit https://github.com/vim/vim/commit/5f1032d2a55b9417a0a6fa225e35089c98a5a419
Christian Brabandt <cb@256bit.org>
parents:
9215
diff
changeset
|
384 if (node == NULL) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
385 break; // nothing to read |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
386 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
387 // Locate the end of the first line in the first buffer. |
9246
6ee88fa405b3
commit https://github.com/vim/vim/commit/5f1032d2a55b9417a0a6fa225e35089c98a5a419
Christian Brabandt <cb@256bit.org>
parents:
9215
diff
changeset
|
388 p = channel_first_nl(node); |
7 | 389 if (p == NULL) |
390 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
391 // Command isn't complete. If there is no following buffer, |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
392 // return (wait for more). If there is another buffer following, |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
393 // prepend the text to that buffer and delete this one. |
9215
d2d44592467d
commit https://github.com/vim/vim/commit/9ed96efb3d47d46e9637da04656efff715102407
Christian Brabandt <cb@256bit.org>
parents:
9052
diff
changeset
|
394 if (channel_collapse(nb_channel, PART_SOCK, TRUE) == FAIL) |
7 | 395 return; |
9250
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
396 continue; |
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
397 } |
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
398 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
399 // There is a complete command at the start of the buffer. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
400 // Terminate it with a NUL. When no more text is following unlink |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
401 // the buffer. Do this before executing, because new buffers can |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
402 // be added while busy handling the command. |
9250
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
403 *p++ = NUL; |
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
404 if (*p == NUL) |
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
405 { |
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
406 own_node = TRUE; |
15454
1d2b5c016f17
patch 8.1.0735: cannot handle binary data
Bram Moolenaar <Bram@vim.org>
parents:
15300
diff
changeset
|
407 buffer = channel_get(nb_channel, PART_SOCK, NULL); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
408 // "node" is now invalid! |
7 | 409 } |
410 else | |
411 { | |
9250
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
412 own_node = FALSE; |
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
413 buffer = node->rq_buffer; |
7 | 414 } |
9250
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
415 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
416 // Now, parse and execute the commands. This may set nb_channel to |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
417 // NULL if the channel is closed. |
9250
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
418 nb_parse_cmd(buffer); |
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
419 |
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
420 if (own_node) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
421 // buffer finished, dispose of it |
9250
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
422 vim_free(buffer); |
9375
1f9172cbfef1
commit https://github.com/vim/vim/commit/24cf233ef9e92f947618c55d8bff423898a45c24
Christian Brabandt <cb@256bit.org>
parents:
9250
diff
changeset
|
423 else if (nb_channel != NULL) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
424 // more follows, move it to the start |
9250
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
425 channel_consume(nb_channel, PART_SOCK, (int)(p - buffer)); |
7 | 426 } |
427 } | |
428 | |
429 /* | |
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 | |
446 nb_parse_cmd(char_u *cmd) | |
447 { | |
27 | 448 char *verb; |
449 char *q; | |
7 | 450 int bufno; |
451 int isfunc = -1; | |
452 | |
453 if (STRCMP(cmd, "DISCONNECT") == 0) | |
454 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
455 // We assume the server knows that we can safely exit! |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
456 // Disconnect before exiting, Motif hangs in a Select error |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
457 // message otherwise. |
2210 | 458 netbeans_close(); |
7 | 459 getout(0); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
460 // NOTREACHED |
7 | 461 } |
462 | |
8204
08d251a1c178
commit https://github.com/vim/vim/commit/eed284a16977ab81fa6da8c9562990ba498acd8c
Christian Brabandt <cb@256bit.org>
parents:
8151
diff
changeset
|
463 if (STRCMP(cmd, "DETACH") == 0) |
7 | 464 { |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
465 buf_T *buf; |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
466 |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
467 FOR_ALL_BUFFERS(buf) |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
468 buf->b_has_sign_column = FALSE; |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
469 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
470 // The IDE is breaking the connection. |
2210 | 471 netbeans_close(); |
7 | 472 return; |
473 } | |
474 | |
27 | 475 bufno = strtol((char *)cmd, &verb, 10); |
7 | 476 |
477 if (*verb != ':') | |
478 { | |
1618 | 479 nbdebug((" missing colon: %s\n", cmd)); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
480 semsg(e_missing_colon_str, cmd); |
7 | 481 return; |
482 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
483 ++verb; // skip colon |
7 | 484 |
485 for (q = verb; *q; q++) | |
486 { | |
487 if (*q == '!') | |
488 { | |
489 *q++ = NUL; | |
490 isfunc = 0; | |
491 break; | |
492 } | |
493 else if (*q == '/') | |
494 { | |
495 *q++ = NUL; | |
496 isfunc = 1; | |
497 break; | |
498 } | |
499 } | |
500 | |
501 if (isfunc < 0) | |
502 { | |
1618 | 503 nbdebug((" missing ! or / in: %s\n", cmd)); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
504 semsg(e_missing_bang_or_slash_in_str, cmd); |
7 | 505 return; |
506 } | |
507 | |
944 | 508 r_cmdno = strtol(q, &q, 10); |
27 | 509 |
510 q = (char *)skipwhite((char_u *)q); | |
511 | |
944 | 512 if (nb_do_cmd(bufno, (char_u *)verb, isfunc, r_cmdno, (char_u *)q) == FAIL) |
7 | 513 { |
33 | 514 #ifdef NBDEBUG |
515 /* | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1956
diff
changeset
|
516 * This happens because the ExtEd can send a command or 2 after |
33 | 517 * doing a stopDocumentListen command. It doesn't harm anything |
518 * so I'm disabling it except for debugging. | |
519 */ | |
7 | 520 nbdebug(("nb_parse_cmd: Command error for \"%s\"\n", cmd)); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
521 emsg(e_bad_return_from_nb_do_cmd); |
33 | 522 #endif |
7 | 523 } |
524 } | |
525 | |
526 struct nbbuf_struct | |
527 { | |
528 buf_T *bufp; | |
529 unsigned int fireChanges:1; | |
530 unsigned int initDone:1; | |
33 | 531 unsigned int insertDone:1; |
7 | 532 unsigned int modified:1; |
33 | 533 int nbbuf_number; |
7 | 534 char *displayname; |
535 int *signmap; | |
536 short_u signmaplen; | |
537 short_u signmapused; | |
538 }; | |
539 | |
540 typedef struct nbbuf_struct nbbuf_T; | |
541 | |
2210 | 542 static nbbuf_T *buf_list = NULL; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
543 static int buf_list_size = 0; // size of buf_list |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
544 static int buf_list_used = 0; // nr of entries in buf_list actually in use |
7 | 545 |
2210 | 546 static char **globalsignmap = NULL; |
547 static int globalsignmaplen = 0; | |
548 static int globalsignmapused = 0; | |
7 | 549 |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
550 static int mapsigntype(nbbuf_T *, int localsigntype); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
551 static void addsigntype(nbbuf_T *, int localsigntype, char_u *typeName, |
7 | 552 char_u *tooltip, char_u *glyphfile, |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
553 char_u *fg, char_u *bg); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
554 static void print_read_msg(nbbuf_T *buf); |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9375
diff
changeset
|
555 static void print_save_msg(nbbuf_T *buf, off_T nchars); |
7 | 556 |
557 static int curPCtype = -1; | |
558 | |
559 /* | |
2210 | 560 * Free netbeans resources. |
561 */ | |
562 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
563 nb_free(void) |
2210 | 564 { |
565 keyQ_T *key_node = keyHead.next; | |
566 nbbuf_T buf; | |
567 int i; | |
568 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
569 // free the netbeans buffer list |
2210 | 570 for (i = 0; i < buf_list_used; i++) |
571 { | |
572 buf = buf_list[i]; | |
573 vim_free(buf.displayname); | |
574 vim_free(buf.signmap); | |
22830
70eb58639009
patch 8.2.1962: netbeans may access freed memory
Bram Moolenaar <Bram@vim.org>
parents:
22590
diff
changeset
|
575 if (buf.bufp != NULL && buf_valid(buf.bufp)) |
2210 | 576 { |
577 buf.bufp->b_netbeans_file = FALSE; | |
578 buf.bufp->b_was_netbeans_file = FALSE; | |
579 } | |
580 } | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
581 VIM_CLEAR(buf_list); |
2210 | 582 buf_list_size = 0; |
583 buf_list_used = 0; | |
584 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
585 // free the queued key commands |
3935 | 586 while (key_node != NULL && key_node != &keyHead) |
2210 | 587 { |
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 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
600 // free the queued netbeans commands |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
601 if (nb_channel != NULL) |
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
602 channel_clear(nb_channel); |
2210 | 603 } |
604 | |
605 /* | |
7 | 606 * Get the Netbeans buffer number for the specified buffer. |
607 */ | |
608 static int | |
609 nb_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 | |
623 isNetbeansBuffer(buf_T *bufp) | |
624 { | |
2210 | 625 return NETBEANS_OPEN && bufp->b_netbeans_file; |
7 | 626 } |
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 | |
638 isNetbeansModified(buf_T *bufp) | |
639 { | |
2210 | 640 if (isNetbeansBuffer(bufp)) |
33 | 641 { |
642 int bufno = nb_getbufno(bufp); | |
643 | |
644 if (bufno > 0) | |
645 return buf_list[bufno].modified; | |
646 else | |
647 return FALSE; | |
648 } | |
7 | 649 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 * | |
659 nb_get_buf(int bufno) | |
660 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
661 // find or create a buffer with the given number |
7 | 662 int incr; |
663 | |
664 if (bufno <= 0) | |
665 return NULL; | |
666 | |
667 if (!buf_list) | |
668 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
669 // initialize |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
670 buf_list = alloc_clear(100 * sizeof(nbbuf_T)); |
7 | 671 buf_list_size = 100; |
672 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
673 if (bufno >= buf_list_used) // new |
7 | 674 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
675 if (bufno >= buf_list_size) // grow list |
7 | 676 { |
22590
13f4aee01ce5
patch 8.2.1843: Netbeans: with huge buffer number memory allocation may fail
Bram Moolenaar <Bram@vim.org>
parents:
20087
diff
changeset
|
677 nbbuf_T *t_buf_list = buf_list; |
13f4aee01ce5
patch 8.2.1843: Netbeans: with huge buffer number memory allocation may fail
Bram Moolenaar <Bram@vim.org>
parents:
20087
diff
changeset
|
678 size_t bufsize; |
6596 | 679 |
7 | 680 incr = bufno - buf_list_size + 90; |
681 buf_list_size += incr; | |
22590
13f4aee01ce5
patch 8.2.1843: Netbeans: with huge buffer number memory allocation may fail
Bram Moolenaar <Bram@vim.org>
parents:
20087
diff
changeset
|
682 bufsize = buf_list_size * sizeof(nbbuf_T); |
13f4aee01ce5
patch 8.2.1843: Netbeans: with huge buffer number memory allocation may fail
Bram Moolenaar <Bram@vim.org>
parents:
20087
diff
changeset
|
683 if (bufsize == 0 || bufsize / sizeof(nbbuf_T) |
13f4aee01ce5
patch 8.2.1843: Netbeans: with huge buffer number memory allocation may fail
Bram Moolenaar <Bram@vim.org>
parents:
20087
diff
changeset
|
684 != (size_t)buf_list_size) |
13f4aee01ce5
patch 8.2.1843: Netbeans: with huge buffer number memory allocation may fail
Bram Moolenaar <Bram@vim.org>
parents:
20087
diff
changeset
|
685 { |
13f4aee01ce5
patch 8.2.1843: Netbeans: with huge buffer number memory allocation may fail
Bram Moolenaar <Bram@vim.org>
parents:
20087
diff
changeset
|
686 // list size overflow, bail out |
13f4aee01ce5
patch 8.2.1843: Netbeans: with huge buffer number memory allocation may fail
Bram Moolenaar <Bram@vim.org>
parents:
20087
diff
changeset
|
687 return NULL; |
13f4aee01ce5
patch 8.2.1843: Netbeans: with huge buffer number memory allocation may fail
Bram Moolenaar <Bram@vim.org>
parents:
20087
diff
changeset
|
688 } |
13f4aee01ce5
patch 8.2.1843: Netbeans: with huge buffer number memory allocation may fail
Bram Moolenaar <Bram@vim.org>
parents:
20087
diff
changeset
|
689 buf_list = vim_realloc(buf_list, bufsize); |
6596 | 690 if (buf_list == NULL) |
691 { | |
692 vim_free(t_buf_list); | |
693 buf_list_size = 0; | |
694 return NULL; | |
695 } | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2213
diff
changeset
|
696 vim_memset(buf_list + buf_list_size - incr, 0, |
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2213
diff
changeset
|
697 incr * sizeof(nbbuf_T)); |
7 | 698 } |
699 | |
700 while (buf_list_used <= bufno) | |
701 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
702 // Default is to fire text changes. |
7 | 703 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 | |
715 count_changed_buffers(void) | |
716 { | |
717 buf_T *bufp; | |
718 int n; | |
719 | |
720 n = 0; | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
721 FOR_ALL_BUFFERS(bufp) |
7 | 722 if (bufp->b_changed) |
723 ++n; | |
724 return n; | |
725 } | |
726 | |
727 /* | |
728 * End the netbeans session. | |
729 */ | |
730 void | |
731 netbeans_end(void) | |
732 { | |
733 int i; | |
734 static char buf[128]; | |
735 | |
2210 | 736 if (!NETBEANS_OPEN) |
7 | 737 return; |
738 | |
739 for (i = 0; i < buf_list_used; i++) | |
740 { | |
741 if (!buf_list[i].bufp) | |
742 continue; | |
743 if (netbeansForcedQuit) | |
744 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
745 // mark as unmodified so NetBeans won't put up dialog on "killed" |
944 | 746 sprintf(buf, "%d:unmodified=%d\n", i, r_cmdno); |
7 | 747 nbdebug(("EVT: %s", buf)); |
748 nb_send(buf, "netbeans_end"); | |
749 } | |
944 | 750 sprintf(buf, "%d:killed=%d\n", i, r_cmdno); |
7 | 751 nbdebug(("EVT: %s", buf)); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
752 // nb_send(buf, "netbeans_end"); avoid "write failed" messages |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
753 nb_send(buf, NULL); |
20087
b378f860d4ab
patch 8.2.0599: Netbeans interface insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
754 buf_list[i].bufp = NULL; |
7 | 755 } |
756 } | |
757 | |
758 /* | |
759 * Send a message to netbeans. | |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
760 * When "fun" is NULL no error is given. |
7 | 761 */ |
762 static void | |
763 nb_send(char *buf, char *fun) | |
764 { | |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
765 if (nb_channel != NULL) |
9434
8f904a323b3f
commit https://github.com/vim/vim/commit/bf2cc5f36d5ffd5de445e6970602000c7869b65a
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
766 channel_send(nb_channel, PART_SOCK, (char_u *)buf, |
8f904a323b3f
commit https://github.com/vim/vim/commit/bf2cc5f36d5ffd5de445e6970602000c7869b65a
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
767 (int)STRLEN(buf), fun); |
7 | 768 } |
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 | |
775 nb_reply_nil(int cmdno) | |
776 { | |
777 char reply[32]; | |
778 | |
33 | 779 nbdebug(("REP %d: <none>\n", cmdno)); |
780 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
781 // Avoid printing an annoying error message. |
2639 | 782 if (!NETBEANS_OPEN) |
783 return; | |
784 | |
7 | 785 sprintf(reply, "%d\n", cmdno); |
786 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 | |
795 nb_reply_text(int cmdno, char_u *result) | |
796 { | |
797 char_u *reply; | |
798 | |
33 | 799 nbdebug(("REP %d: %s\n", cmdno, (char *)result)); |
800 | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
801 reply = alloc(STRLEN(result) + 32); |
7 | 802 sprintf((char *)reply, "%d %s\n", cmdno, (char *)result); |
803 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 | |
813 nb_reply_nr(int cmdno, long result) | |
814 { | |
815 char reply[32]; | |
816 | |
33 | 817 nbdebug(("REP %d: %ld\n", cmdno, result)); |
818 | |
7 | 819 sprintf(reply, "%d %ld\n", cmdno, result); |
820 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 * | |
828 nb_quote(char_u *txt) | |
829 { | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
830 char_u *buf = alloc(2 * STRLEN(txt) + 1); |
7 | 831 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; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
843 // case '\t': |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
844 // *q++ = '\\'; *q++ = 't'; break; |
7 | 845 case '\n': |
846 *q++ = '\\'; *q++ = 'n'; break; | |
847 case '\r': | |
848 *q++ = '\\'; *q++ = 'r'; break; | |
849 default: | |
850 *q++ = *p; | |
851 break; | |
852 } | |
853 } | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1956
diff
changeset
|
854 *q = '\0'; |
7 | 855 |
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 * | |
867 nb_unquote(char_u *p, char_u **endp) | |
868 { | |
869 char *result = 0; | |
870 char *q; | |
871 int done = 0; | |
872 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
873 // result is never longer than input |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
874 result = alloc_clear(STRLEN(p) + 1); |
7 | 875 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; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
907 // default: skip over illegal chars |
7 | 908 } |
909 ++p; | |
910 break; | |
911 | |
912 default: | |
913 *q++ = *p++; | |
914 } | |
915 } | |
916 | |
917 if (endp != NULL) | |
918 *endp = p; | |
919 | |
920 return result; | |
921 } | |
922 | |
1492 | 923 /* |
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 | |
928 nb_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); | |
1570 | 935 oldlen = (int)STRLEN(oldtext); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
936 if (first >= (colnr_T)oldlen || oldlen == 0) // just in case |
1492 | 937 return; |
938 if (lastbyte >= oldlen) | |
939 lastbyte = oldlen - 1; | |
940 newtext = alloc(oldlen - (int)(lastbyte - first)); | |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
941 if (newtext == NULL) |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
942 return; |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
943 |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
944 mch_memmove(newtext, oldtext, first); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
945 STRMOVE(newtext + first, oldtext + lastbyte + 1); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
946 nbdebug((" NEW LINE %ld: %s\n", lnum, newtext)); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
947 ml_replace(lnum, newtext, FALSE); |
1492 | 948 } |
949 | |
950 /* | |
951 * Replace the "first" line with the concatenation of the "first" and | |
952 * the "other" line. The "other" line is not removed. | |
953 */ | |
954 static void | |
955 nb_joinlines(linenr_T first, linenr_T other) | |
956 { | |
957 int len_first, len_other; | |
958 char_u *p; | |
959 | |
1570 | 960 len_first = (int)STRLEN(ml_get(first)); |
961 len_other = (int)STRLEN(ml_get(other)); | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
962 p = alloc(len_first + len_other + 1); |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
963 if (p == NULL) |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
964 return; |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
965 |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
966 mch_memmove(p, ml_get(first), len_first); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
967 mch_memmove(p + len_first, ml_get(other), len_other + 1); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
968 ml_replace(first, p, FALSE); |
1492 | 969 } |
970 | |
7 | 971 #define SKIP_STOP 2 |
972 #define streq(a,b) (strcmp(a,b) == 0) | |
973 | |
974 /* | |
975 * Do the actual processing of a single netbeans command or function. | |
1186 | 976 * The difference between a command and function is that a function |
977 * gets a response (it's required) but a command does not. | |
7 | 978 * For arguments see comment for nb_parse_cmd(). |
979 */ | |
980 static int | |
981 nb_do_cmd( | |
982 int bufno, | |
983 char_u *cmd, | |
984 int func, | |
985 int cmdno, | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
986 char_u *args) // points to space before arguments or NUL |
7 | 987 { |
3263 | 988 int do_update = 0; |
7 | 989 long off = 0; |
990 nbbuf_T *buf = nb_get_buf(bufno); | |
991 static int skip = 0; | |
992 int retval = OK; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
993 char *cp; // for when a char pointer is needed |
7 | 994 |
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 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1000 // ===================================================================== |
7 | 1001 if (streq((char *)cmd, "getModified")) |
1002 { | |
1003 if (buf == NULL || buf->bufp == NULL) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1004 // Return the number of buffers that are modified. |
7 | 1005 nb_reply_nr(cmdno, (long)count_changed_buffers()); |
1006 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1007 // Return whether the buffer is modified. |
7 | 1008 nb_reply_nr(cmdno, (long)(buf->bufp->b_changed |
1009 || isNetbeansModified(buf->bufp))); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1010 // ===================================================================== |
7 | 1011 } |
1012 else if (streq((char *)cmd, "saveAndExit")) | |
1013 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1014 // Note: this will exit Vim if successful. |
7 | 1015 coloncmd(":confirm qall"); |
1016 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1017 // We didn't exit: return the number of changed buffers. |
7 | 1018 nb_reply_nr(cmdno, (long)count_changed_buffers()); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1019 // ===================================================================== |
7 | 1020 } |
1021 else if (streq((char *)cmd, "getCursor")) | |
1022 { | |
1023 char_u text[200]; | |
1024 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1025 // Note: nb_getbufno() may return -1. This indicates the IDE |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1026 // didn't assign a number to the current buffer in response to a |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1027 // fileOpened event. |
7 | 1028 sprintf((char *)text, "%d %ld %d %ld", |
1029 nb_getbufno(curbuf), | |
1030 (long)curwin->w_cursor.lnum, | |
1031 (int)curwin->w_cursor.col, | |
1032 pos2off(curbuf, &curwin->w_cursor)); | |
1033 nb_reply_text(cmdno, text); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1034 // ===================================================================== |
7 | 1035 } |
1037 | 1036 else if (streq((char *)cmd, "getAnno")) |
1037 { | |
1038 long linenum = 0; | |
1039 #ifdef FEAT_SIGNS | |
1040 if (buf == NULL || buf->bufp == NULL) | |
1041 { | |
1618 | 1042 nbdebug((" Invalid buffer identifier in getAnno\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1043 emsg(e_invalid_buffer_identifier_in_getanno); |
1037 | 1044 retval = FAIL; |
1045 } | |
1046 else | |
1047 { | |
1048 int serNum; | |
1049 | |
1050 cp = (char *)args; | |
1051 serNum = strtol(cp, &cp, 10); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1052 // If the sign isn't found linenum will be zero. |
15209
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1053 linenum = (long)buf_findsign(buf->bufp, serNum, NULL); |
1037 | 1054 } |
1055 #endif | |
1056 nb_reply_nr(cmdno, linenum); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1057 // ===================================================================== |
1037 | 1058 } |
7 | 1059 else if (streq((char *)cmd, "getLength")) |
1060 { | |
1061 long len = 0; | |
1062 | |
1063 if (buf == NULL || buf->bufp == NULL) | |
1064 { | |
1618 | 1065 nbdebug((" invalid buffer identifier in getLength\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1066 emsg(e_invalid_buffer_identifier_in_getlength); |
7 | 1067 retval = FAIL; |
1068 } | |
1069 else | |
1070 { | |
1071 len = get_buf_size(buf->bufp); | |
1072 } | |
1073 nb_reply_nr(cmdno, len); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1074 // ===================================================================== |
7 | 1075 } |
1076 else if (streq((char *)cmd, "getText")) | |
1077 { | |
1078 long len; | |
1079 linenr_T nlines; | |
1080 char_u *text = NULL; | |
1081 linenr_T lno = 1; | |
1082 char_u *p; | |
1083 char_u *line; | |
1084 | |
1085 if (buf == NULL || buf->bufp == NULL) | |
1086 { | |
1618 | 1087 nbdebug((" invalid buffer identifier in getText\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1088 emsg(e_invalid_buffer_identifier_in_gettext); |
7 | 1089 retval = FAIL; |
1090 } | |
1091 else | |
1092 { | |
1093 len = get_buf_size(buf->bufp); | |
1094 nlines = buf->bufp->b_ml.ml_line_count; | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
1095 text = alloc((len > 0) ? ((len + nlines) * 2) : 4); |
7 | 1096 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'; | |
33 | 1114 vim_free(line); |
7 | 1115 } |
1116 } | |
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 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1128 // ===================================================================== |
7 | 1129 } |
1130 else if (streq((char *)cmd, "remove")) | |
1131 { | |
1132 long count; | |
1133 pos_T first, last; | |
1134 pos_T *pos; | |
1492 | 1135 pos_T *next; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1136 linenr_T del_from_lnum, del_to_lnum; // lines to be deleted as a whole |
7 | 1137 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 { | |
1618 | 1150 nbdebug((" invalid buffer identifier in remove\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1151 emsg(e_invalid_buffer_identifier_in_remove); |
7 | 1152 retval = FAIL; |
1153 } | |
1154 else | |
1155 { | |
1156 netbeansFireChanges = FALSE; | |
1157 netbeansSuppressNoLines = TRUE; | |
1158 | |
659 | 1159 nb_set_curbuf(buf->bufp); |
7 | 1160 wasChanged = buf->bufp->b_changed; |
27 | 1161 cp = (char *)args; |
1162 off = strtol(cp, &cp, 10); | |
1163 count = strtol(cp, &cp, 10); | |
1164 args = (char_u *)cp; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1165 // delete "count" chars, starting at "off" |
7 | 1166 pos = off2pos(buf->bufp, off); |
1167 if (!pos) | |
1168 { | |
1618 | 1169 nbdebug((" !bad position\n")); |
7 | 1170 nb_reply_text(cmdno, (char_u *)"!bad position"); |
1171 netbeansFireChanges = oldFire; | |
1172 netbeansSuppressNoLines = oldSuppress; | |
1173 return FAIL; | |
1174 } | |
1175 first = *pos; | |
15874
c7ba5fed403c
patch 8.1.0944: format of nbdbg() arguments is not checked
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
1176 nbdebug((" FIRST POS: line %ld, col %d\n", |
1956 | 1177 first.lnum, first.col)); |
7 | 1178 pos = off2pos(buf->bufp, off+count-1); |
1179 if (!pos) | |
1180 { | |
1618 | 1181 nbdebug((" !bad count\n")); |
7 | 1182 nb_reply_text(cmdno, (char_u *)"!bad count"); |
1183 netbeansFireChanges = oldFire; | |
1184 netbeansSuppressNoLines = oldSuppress; | |
1185 return FAIL; | |
1186 } | |
1187 last = *pos; | |
15874
c7ba5fed403c
patch 8.1.0944: format of nbdbg() arguments is not checked
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
1188 nbdebug((" LAST POS: line %ld, col %d\n", |
1956 | 1189 last.lnum, last.col)); |
1492 | 1190 del_from_lnum = first.lnum; |
1191 del_to_lnum = last.lnum; | |
3263 | 1192 do_update = 1; |
7 | 1193 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1194 // Get the position of the first byte after the deleted |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1195 // section. "next" is NULL when deleting to the end of the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1196 // file. |
1492 | 1197 next = off2pos(buf->bufp, off + count); |
1198 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1199 // Remove part of the first line. |
1956 | 1200 if (first.col != 0 |
1201 || (next != NULL && first.lnum == next->lnum)) | |
7 | 1202 { |
1492 | 1203 if (first.lnum != last.lnum |
1204 || (next != NULL && first.lnum != next->lnum)) | |
1205 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1206 // remove to the end of the first line |
1492 | 1207 nb_partialremove(first.lnum, first.col, |
1208 (colnr_T)MAXCOL); | |
1209 if (first.lnum == last.lnum) | |
1210 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1211 // Partial line to remove includes the end of |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1212 // line. Join the line with the next one, have |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1213 // the next line deleted below. |
1492 | 1214 nb_joinlines(first.lnum, next->lnum); |
1215 del_to_lnum = next->lnum; | |
1216 } | |
1217 } | |
1218 else | |
1219 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1220 // remove within one line |
1492 | 1221 nb_partialremove(first.lnum, first.col, last.col); |
1222 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1223 ++del_from_lnum; // don't delete the first line |
7 | 1224 } |
1225 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1226 // Remove part of the last line. |
1492 | 1227 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 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1233 // Join end of last line to start of first line; last |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1234 // line is deleted below. |
1492 | 1235 nb_joinlines(first.lnum, last.lnum); |
1236 } | |
1237 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1238 // First line is deleted as a whole, keep the last |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1239 // line. |
1492 | 1240 --del_to_lnum; |
1241 } | |
1242 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1243 // First is partial line; last line to remove includes |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1244 // the end of line; join first line to line following last |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1245 // line; line following last line is deleted below. |
1492 | 1246 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 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1253 // Delete whole lines if there are any. |
1492 | 1254 if (del_to_lnum >= del_from_lnum) |
7 | 1255 { |
1256 int i; | |
1257 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1258 // delete signs from the lines being deleted |
1492 | 1259 for (i = del_from_lnum; i <= del_to_lnum; i++) |
7 | 1260 { |
15300
890203d87ee5
patch 8.1.0658: deleting signs and completion for :sign is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
15209
diff
changeset
|
1261 int id = buf_findsign_id(buf->bufp, (linenr_T)i, NULL); |
7 | 1262 if (id > 0) |
1263 { | |
1956 | 1264 nbdebug((" Deleting sign %d on line %d\n", |
1265 id, i)); | |
15300
890203d87ee5
patch 8.1.0658: deleting signs and completion for :sign is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
15209
diff
changeset
|
1266 buf_delsign(buf->bufp, 0, id, NULL); |
7 | 1267 } |
1268 else | |
1884 | 1269 { |
7 | 1270 nbdebug((" No sign on line %d\n", i)); |
1884 | 1271 } |
7 | 1272 } |
1273 | |
15874
c7ba5fed403c
patch 8.1.0944: format of nbdbg() arguments is not checked
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
1274 nbdebug((" Deleting lines %ld through %ld\n", |
1956 | 1275 del_from_lnum, del_to_lnum)); |
1492 | 1276 curwin->w_cursor.lnum = del_from_lnum; |
1277 curwin->w_cursor.col = 0; | |
1278 del_lines(del_to_lnum - del_from_lnum + 1, FALSE); | |
7 | 1279 } |
1492 | 1280 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1281 // Leave cursor at first deleted byte. |
1492 | 1282 curwin->w_cursor = first; |
1283 check_cursor_lnum(); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1284 buf->bufp->b_changed = wasChanged; // logically unchanged |
7 | 1285 netbeansFireChanges = oldFire; |
1286 netbeansSuppressNoLines = oldSuppress; | |
1287 | |
1288 u_blockfree(buf->bufp); | |
1289 u_clearall(buf->bufp); | |
1290 } | |
1291 nb_reply_nil(cmdno); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1292 // ===================================================================== |
7 | 1293 } |
1294 else if (streq((char *)cmd, "insert")) | |
1295 { | |
1296 char_u *to_free; | |
1297 | |
1298 if (skip >= SKIP_STOP) | |
1299 { | |
1300 nbdebug((" Skipping %s command\n", (char *) cmd)); | |
1301 nb_reply_nil(cmdno); | |
1302 return OK; | |
1303 } | |
1304 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1305 // get offset |
27 | 1306 cp = (char *)args; |
1307 off = strtol(cp, &cp, 10); | |
1308 args = (char_u *)cp; | |
7 | 1309 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1310 // get text to be inserted |
7 | 1311 args = skipwhite(args); |
1312 args = to_free = (char_u *)nb_unquote(args, NULL); | |
33 | 1313 /* |
1314 nbdebug((" CHUNK[%d]: %d bytes at offset %d\n", | |
1315 buf->bufp->b_ml.ml_line_count, STRLEN(args), off)); | |
1316 */ | |
7 | 1317 |
1318 if (buf == NULL || buf->bufp == NULL) | |
1319 { | |
1618 | 1320 nbdebug((" invalid buffer identifier in insert\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1321 emsg(e_invalid_buffer_identifier_in_insert); |
7 | 1322 retval = FAIL; |
1323 } | |
1324 else if (args != NULL) | |
1325 { | |
718 | 1326 int ff_detected = EOL_UNKNOWN; |
1327 int buf_was_empty = (buf->bufp->b_ml.ml_flags & ML_EMPTY); | |
1328 size_t len = 0; | |
1329 int added = 0; | |
1330 int oldFire = netbeansFireChanges; | |
1331 int old_b_changed; | |
3265 | 1332 char_u *nlp; |
718 | 1333 linenr_T lnum; |
1334 linenr_T lnum_start; | |
1335 pos_T *pos; | |
1336 | |
7 | 1337 netbeansFireChanges = 0; |
718 | 1338 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1339 // Jump to the buffer where we insert. After this "curbuf" |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1340 // can be used. |
659 | 1341 nb_set_curbuf(buf->bufp); |
717 | 1342 old_b_changed = curbuf->b_changed; |
1343 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1344 // Convert the specified character offset into a lnum/col |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1345 // position. |
717 | 1346 pos = off2pos(curbuf, off); |
1347 if (pos != NULL) | |
7 | 1348 { |
718 | 1349 if (pos->lnum <= 0) |
1350 lnum_start = 1; | |
1351 else | |
1352 lnum_start = pos->lnum; | |
7 | 1353 } |
1354 else | |
1355 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1356 // If the given position is not found, assume we want |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1357 // the end of the file. See setLocAndSize HACK. |
718 | 1358 if (buf_was_empty) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1359 lnum_start = 1; // above empty line |
718 | 1360 else |
1361 lnum_start = curbuf->b_ml.ml_line_count + 1; | |
7 | 1362 } |
718 | 1363 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1364 // "lnum" is the line where we insert: either append to it or |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1365 // insert a new line above it. |
718 | 1366 lnum = lnum_start; |
1367 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1368 // Loop over the "\n" separated lines of the argument. |
3263 | 1369 do_update = 1; |
718 | 1370 while (*args != NUL) |
33 | 1371 { |
3265 | 1372 nlp = vim_strchr(args, '\n'); |
1373 if (nlp == NULL) | |
7 | 1374 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1375 // Incomplete line, probably truncated. Next "insert" |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1376 // command should append to this one. |
718 | 1377 len = STRLEN(args); |
7 | 1378 } |
33 | 1379 else |
1380 { | |
3265 | 1381 len = nlp - args; |
718 | 1382 |
1383 /* | |
1384 * We need to detect EOL style, because the commands | |
1385 * use a character offset. | |
1386 */ | |
3265 | 1387 if (nlp > args && nlp[-1] == '\r') |
718 | 1388 { |
1389 ff_detected = EOL_DOS; | |
1390 --len; | |
1391 } | |
1392 else | |
1393 ff_detected = EOL_UNIX; | |
33 | 1394 } |
718 | 1395 args[len] = NUL; |
1396 | |
1397 if (lnum == lnum_start | |
1398 && ((pos != NULL && pos->col > 0) | |
1399 || (lnum == 1 && buf_was_empty))) | |
1400 { | |
17785
3f0fd418ac1d
patch 8.1.1889: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1401 char_u *oldline = ml_get(lnum); |
3f0fd418ac1d
patch 8.1.1889: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1402 char_u *newline; |
3f0fd418ac1d
patch 8.1.1889: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1403 int col = pos == NULL ? 0 : pos->col; |
718 | 1404 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1405 // Insert halfway a line. |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
1406 newline = alloc(STRLEN(oldline) + len + 1); |
718 | 1407 if (newline != NULL) |
1408 { | |
17785
3f0fd418ac1d
patch 8.1.1889: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1409 mch_memmove(newline, oldline, (size_t)col); |
3f0fd418ac1d
patch 8.1.1889: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1410 newline[col] = NUL; |
718 | 1411 STRCAT(newline, args); |
17785
3f0fd418ac1d
patch 8.1.1889: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1412 STRCAT(newline, oldline + col); |
718 | 1413 ml_replace(lnum, newline, FALSE); |
1414 } | |
1415 } | |
1416 else | |
1417 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1418 // Append a new line. Not that we always do this, |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1419 // also when the text doesn't end in a "\n". |
3265 | 1420 ml_append((linenr_T)(lnum - 1), args, |
1421 (colnr_T)(len + 1), FALSE); | |
718 | 1422 ++added; |
1423 } | |
1424 | |
3265 | 1425 if (nlp == NULL) |
718 | 1426 break; |
1427 ++lnum; | |
3265 | 1428 args = nlp + 1; |
33 | 1429 } |
1430 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1431 // Adjust the marks below the inserted lines. |
718 | 1432 appended_lines_mark(lnum_start - 1, (long)added); |
1433 | |
1434 /* | |
1435 * When starting with an empty buffer set the fileformat. | |
1436 * This is just guessing... | |
7 | 1437 */ |
1438 if (buf_was_empty) | |
1439 { | |
1440 if (ff_detected == EOL_UNKNOWN) | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8204
diff
changeset
|
1441 #if defined(MSWIN) |
7 | 1442 ff_detected = EOL_DOS; |
718 | 1443 #else |
1444 ff_detected = EOL_UNIX; | |
1445 #endif | |
7 | 1446 set_fileformat(ff_detected, OPT_LOCAL); |
717 | 1447 curbuf->b_start_ffc = *curbuf->b_p_ff; |
7 | 1448 } |
1449 | |
1450 /* | |
1451 * XXX - GRP - Is the next line right? If I've inserted | |
1452 * text the buffer has been updated but not written. Will | |
1453 * netbeans guarantee to write it? Even if I do a :q! ? | |
1454 */ | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1455 curbuf->b_changed = old_b_changed; // logically unchanged |
7 | 1456 netbeansFireChanges = oldFire; |
1457 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1458 // Undo info is invalid now... |
717 | 1459 u_blockfree(curbuf); |
1460 u_clearall(curbuf); | |
7 | 1461 } |
1462 vim_free(to_free); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1463 nb_reply_nil(cmdno); // or !error |
7 | 1464 } |
1465 else | |
1466 { | |
1467 nbdebug(("UNIMPLEMENTED FUNCTION: %s\n", cmd)); | |
1468 nb_reply_nil(cmdno); | |
1469 retval = FAIL; | |
1470 } | |
1471 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1472 else // Not a function; no reply required. |
7 | 1473 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1474 // ===================================================================== |
7 | 1475 if (streq((char *)cmd, "create")) |
1476 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1477 // Create a buffer without a name. |
7 | 1478 if (buf == NULL) |
1479 { | |
1618 | 1480 nbdebug((" invalid buffer identifier in create\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1481 emsg(e_invalid_buffer_identifier_in_create); |
7 | 1482 return FAIL; |
1483 } | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
1484 VIM_CLEAR(buf->displayname); |
7 | 1485 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1486 netbeansReadFile = 0; // don't try to open disk file |
1743 | 1487 do_ecmd(0, NULL, 0, 0, ECMD_ONE, ECMD_HIDE + ECMD_OLDBUF, curwin); |
7 | 1488 netbeansReadFile = 1; |
1489 buf->bufp = curbuf; | |
1490 maketitle(); | |
33 | 1491 buf->insertDone = FALSE; |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1492 #if defined(FEAT_MENU) && defined(FEAT_GUI) |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1493 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1494 gui_update_menus(0); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1495 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1496 // ===================================================================== |
7 | 1497 } |
33 | 1498 else if (streq((char *)cmd, "insertDone")) |
1499 { | |
840 | 1500 if (buf == NULL || buf->bufp == NULL) |
1501 { | |
1618 | 1502 nbdebug((" invalid buffer identifier in insertDone\n")); |
840 | 1503 } |
1504 else | |
1505 { | |
1506 buf->bufp->b_start_eol = *args == 'T'; | |
1507 buf->insertDone = TRUE; | |
1508 args += 2; | |
1509 buf->bufp->b_p_ro = *args == 'T'; | |
1510 print_read_msg(buf); | |
1511 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1512 // ===================================================================== |
33 | 1513 } |
1514 else if (streq((char *)cmd, "saveDone")) | |
1515 { | |
840 | 1516 long savedChars = atol((char *)args); |
1517 | |
1518 if (buf == NULL || buf->bufp == NULL) | |
1618 | 1519 nbdebug((" invalid buffer identifier in saveDone\n")); |
840 | 1520 else |
1521 print_save_msg(buf, savedChars); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1522 // ===================================================================== |
33 | 1523 } |
7 | 1524 else if (streq((char *)cmd, "startDocumentListen")) |
1525 { | |
1526 if (buf == NULL) | |
1527 { | |
1618 | 1528 nbdebug((" invalid buffer identifier in startDocumentListen\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1529 emsg(e_invalid_buffer_identifier_in_startdocumentlisten); |
7 | 1530 return FAIL; |
1531 } | |
1532 buf->fireChanges = 1; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1533 // ===================================================================== |
7 | 1534 } |
1535 else if (streq((char *)cmd, "stopDocumentListen")) | |
1536 { | |
1537 if (buf == NULL) | |
1538 { | |
1618 | 1539 nbdebug((" invalid buffer identifier in stopDocumentListen\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1540 emsg(e_invalid_buffer_identifier_in_stopdocumentlisten); |
7 | 1541 return FAIL; |
1542 } | |
1543 buf->fireChanges = 0; | |
152 | 1544 if (buf->bufp != NULL && buf->bufp->b_was_netbeans_file) |
33 | 1545 { |
152 | 1546 if (!buf->bufp->b_netbeans_file) |
1618 | 1547 { |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1548 nbdebug((e_netbeans_connection_lost_for_buffer_nr, |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1549 buf->bufp->b_fnum)); |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1550 semsg(_(e_netbeans_connection_lost_for_buffer_nr), |
7 | 1551 buf->bufp->b_fnum); |
1618 | 1552 } |
33 | 1553 else |
1554 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1555 // NetBeans uses stopDocumentListen when it stops editing |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1556 // a file. It then expects the buffer in Vim to |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1557 // disappear. |
152 | 1558 do_bufdel(DOBUF_DEL, (char_u *)"", 1, |
1559 buf->bufp->b_fnum, buf->bufp->b_fnum, TRUE); | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
1560 CLEAR_POINTER(buf); |
33 | 1561 } |
1562 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1563 // ===================================================================== |
7 | 1564 } |
1565 else if (streq((char *)cmd, "setTitle")) | |
1566 { | |
1567 if (buf == NULL) | |
1568 { | |
1618 | 1569 nbdebug((" invalid buffer identifier in setTitle\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1570 emsg(e_invalid_buffer_identifier_in_settitle); |
7 | 1571 return FAIL; |
1572 } | |
1573 vim_free(buf->displayname); | |
1574 buf->displayname = nb_unquote(args, NULL); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1575 // ===================================================================== |
7 | 1576 } |
1577 else if (streq((char *)cmd, "initDone")) | |
1578 { | |
1579 if (buf == NULL || buf->bufp == NULL) | |
1580 { | |
1618 | 1581 nbdebug((" invalid buffer identifier in initDone\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1582 emsg(e_invalid_buffer_identifier_in_initdone); |
7 | 1583 return FAIL; |
1584 } | |
3263 | 1585 do_update = 1; |
33 | 1586 buf->initDone = TRUE; |
659 | 1587 nb_set_curbuf(buf->bufp); |
7 | 1588 apply_autocmds(EVENT_BUFREADPOST, 0, 0, FALSE, buf->bufp); |
1589 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1590 // handle any postponed key commands |
7 | 1591 handle_key_queue(); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1592 // ===================================================================== |
7 | 1593 } |
1594 else if (streq((char *)cmd, "setBufferNumber") | |
1595 || streq((char *)cmd, "putBufferNumber")) | |
1596 { | |
33 | 1597 char_u *path; |
7 | 1598 buf_T *bufp; |
1599 | |
1600 if (buf == NULL) | |
1601 { | |
1618 | 1602 nbdebug((" invalid buffer identifier in setBufferNumber\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1603 emsg(e_invalid_buffer_identifier_in_setbuffernumber); |
7 | 1604 return FAIL; |
1605 } | |
33 | 1606 path = (char_u *)nb_unquote(args, NULL); |
1607 if (path == NULL) | |
7 | 1608 return FAIL; |
33 | 1609 bufp = buflist_findname(path); |
1610 vim_free(path); | |
7 | 1611 if (bufp == NULL) |
1612 { | |
1816 | 1613 nbdebug((" File %s not found in setBufferNumber\n", args)); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1614 semsg(e_file_str_not_found_in_setbuffernumber, args); |
7 | 1615 return FAIL; |
1616 } | |
1617 buf->bufp = bufp; | |
33 | 1618 buf->nbbuf_number = bufp->b_fnum; |
7 | 1619 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1620 // "setBufferNumber" has the side effect of jumping to the buffer |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1621 // (don't know why!). Don't do that for "putBufferNumber". |
7 | 1622 if (*cmd != 'p') |
1623 coloncmd(":buffer %d", bufp->b_fnum); | |
1624 else | |
1625 { | |
33 | 1626 buf->initDone = TRUE; |
7 | 1627 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1628 // handle any postponed key commands |
7 | 1629 handle_key_queue(); |
1630 } | |
1631 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1632 // ===================================================================== |
7 | 1633 } |
1634 else if (streq((char *)cmd, "setFullName")) | |
1635 { | |
1636 if (buf == NULL) | |
1637 { | |
1618 | 1638 nbdebug((" invalid buffer identifier in setFullName\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1639 emsg(e_invalid_buffer_identifier_in_setfullname); |
7 | 1640 return FAIL; |
1641 } | |
1642 vim_free(buf->displayname); | |
1643 buf->displayname = nb_unquote(args, NULL); | |
1644 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1645 netbeansReadFile = 0; // don't try to open disk file |
7 | 1646 do_ecmd(0, (char_u *)buf->displayname, 0, 0, ECMD_ONE, |
1743 | 1647 ECMD_HIDE + ECMD_OLDBUF, curwin); |
7 | 1648 netbeansReadFile = 1; |
1649 buf->bufp = curbuf; | |
1650 maketitle(); | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1651 #if defined(FEAT_MENU) && defined(FEAT_GUI) |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1652 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1653 gui_update_menus(0); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1654 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1655 // ===================================================================== |
7 | 1656 } |
1657 else if (streq((char *)cmd, "editFile")) | |
1658 { | |
1659 if (buf == NULL) | |
1660 { | |
1618 | 1661 nbdebug((" invalid buffer identifier in editFile\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1662 emsg(e_invalid_buffer_identifier_in_editfile); |
7 | 1663 return FAIL; |
1664 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1665 // Edit a file: like create + setFullName + read the file. |
7 | 1666 vim_free(buf->displayname); |
1667 buf->displayname = nb_unquote(args, NULL); | |
1668 do_ecmd(0, (char_u *)buf->displayname, NULL, NULL, ECMD_ONE, | |
1743 | 1669 ECMD_HIDE + ECMD_OLDBUF, curwin); |
7 | 1670 buf->bufp = curbuf; |
33 | 1671 buf->initDone = TRUE; |
3263 | 1672 do_update = 1; |
7 | 1673 maketitle(); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1674 #if defined(FEAT_MENU) && defined(FEAT_GUI) |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1675 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1676 gui_update_menus(0); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1677 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1678 // ===================================================================== |
7 | 1679 } |
1680 else if (streq((char *)cmd, "setVisible")) | |
1681 { | |
1682 if (buf == NULL || buf->bufp == NULL) | |
1683 { | |
1618 | 1684 nbdebug((" invalid buffer identifier in setVisible\n")); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1685 // This message was commented out, probably because it can |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1686 // happen when shutting down. |
1618 | 1687 if (p_verbose > 0) |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1688 emsg(e_invalid_buffer_identifier_in_setvisible); |
7 | 1689 return FAIL; |
1690 } | |
33 | 1691 if (streq((char *)args, "T") && buf->bufp != curbuf) |
7 | 1692 { |
1693 exarg_T exarg; | |
1694 exarg.cmd = (char_u *)"goto"; | |
1695 exarg.forceit = FALSE; | |
33 | 1696 dosetvisible = TRUE; |
7 | 1697 goto_buffer(&exarg, DOBUF_FIRST, FORWARD, buf->bufp->b_fnum); |
3263 | 1698 do_update = 1; |
33 | 1699 dosetvisible = FALSE; |
7 | 1700 |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1701 #ifdef FEAT_GUI |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1702 // Side effect!!!. |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1703 if (gui.in_use) |
7 | 1704 gui_mch_set_foreground(); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1705 #endif |
7 | 1706 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1707 // ===================================================================== |
7 | 1708 } |
1709 else if (streq((char *)cmd, "raise")) | |
1710 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1711 #ifdef FEAT_GUI |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1712 // Bring gvim to the foreground. |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1713 if (gui.in_use) |
7 | 1714 gui_mch_set_foreground(); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1715 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1716 // ===================================================================== |
7 | 1717 } |
1718 else if (streq((char *)cmd, "setModified")) | |
1719 { | |
1600 | 1720 int prev_b_changed; |
1721 | |
7 | 1722 if (buf == NULL || buf->bufp == NULL) |
1723 { | |
1618 | 1724 nbdebug((" invalid buffer identifier in setModified\n")); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1725 // This message was commented out, probably because it can |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1726 // happen when shutting down. |
1618 | 1727 if (p_verbose > 0) |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1728 emsg(e_invalid_buffer_identifier_in_setmodified); |
7 | 1729 return FAIL; |
1730 } | |
1600 | 1731 prev_b_changed = buf->bufp->b_changed; |
7 | 1732 if (streq((char *)args, "T")) |
1600 | 1733 buf->bufp->b_changed = TRUE; |
7 | 1734 else |
1735 { | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9375
diff
changeset
|
1736 stat_T st; |
7 | 1737 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1738 // Assume NetBeans stored the file. Reset the timestamp to |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1739 // avoid "file changed" warnings. |
7 | 1740 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); | |
1600 | 1743 buf->bufp->b_changed = FALSE; |
7 | 1744 } |
1745 buf->modified = buf->bufp->b_changed; | |
1600 | 1746 if (prev_b_changed != buf->bufp->b_changed) |
1747 { | |
1748 check_status(buf->bufp); | |
1749 redraw_tabline = TRUE; | |
1750 maketitle(); | |
1751 update_screen(0); | |
1752 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1753 // ===================================================================== |
7 | 1754 } |
33 | 1755 else if (streq((char *)cmd, "setModtime")) |
1756 { | |
840 | 1757 if (buf == NULL || buf->bufp == NULL) |
1618 | 1758 nbdebug((" invalid buffer identifier in setModtime\n")); |
840 | 1759 else |
25953
d7e1cf30728c
patch 8.2.3510: changes are only detected with one second accuracy
Bram Moolenaar <Bram@vim.org>
parents:
25475
diff
changeset
|
1760 { |
840 | 1761 buf->bufp->b_mtime = atoi((char *)args); |
25953
d7e1cf30728c
patch 8.2.3510: changes are only detected with one second accuracy
Bram Moolenaar <Bram@vim.org>
parents:
25475
diff
changeset
|
1762 buf->bufp->b_mtime_ns = 0; |
d7e1cf30728c
patch 8.2.3510: changes are only detected with one second accuracy
Bram Moolenaar <Bram@vim.org>
parents:
25475
diff
changeset
|
1763 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1764 // ===================================================================== |
33 | 1765 } |
1766 else if (streq((char *)cmd, "setReadOnly")) | |
1767 { | |
840 | 1768 if (buf == NULL || buf->bufp == NULL) |
1618 | 1769 nbdebug((" invalid buffer identifier in setReadOnly\n")); |
840 | 1770 else if (streq((char *)args, "T")) |
33 | 1771 buf->bufp->b_p_ro = TRUE; |
1772 else | |
1773 buf->bufp->b_p_ro = FALSE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1774 // ===================================================================== |
33 | 1775 } |
7 | 1776 else if (streq((char *)cmd, "setMark")) |
1777 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1778 // not yet |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1779 // ===================================================================== |
7 | 1780 } |
1781 else if (streq((char *)cmd, "showBalloon")) | |
1782 { | |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
1783 #if defined(FEAT_BEVAL_GUI) |
7 | 1784 static char *text = NULL; |
1785 | |
1786 /* | |
1787 * Set up the Balloon Expression Evaluation area. | |
1788 * Ignore 'ballooneval' here. | |
1789 * The text pointer must remain valid for a while. | |
1790 */ | |
1791 if (balloonEval != NULL) | |
1792 { | |
1793 vim_free(text); | |
1794 text = nb_unquote(args, NULL); | |
1795 if (text != NULL) | |
1796 gui_mch_post_balloon(balloonEval, (char_u *)text); | |
1797 } | |
1798 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1799 // ===================================================================== |
7 | 1800 } |
1801 else if (streq((char *)cmd, "setDot")) | |
1802 { | |
1803 pos_T *pos; | |
1804 #ifdef NBDEBUG | |
1805 char_u *s; | |
1806 #endif | |
1807 | |
1808 if (buf == NULL || buf->bufp == NULL) | |
1809 { | |
1618 | 1810 nbdebug((" invalid buffer identifier in setDot\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1811 emsg(e_invalid_buffer_identifier_in_setdot); |
7 | 1812 return FAIL; |
1813 } | |
1814 | |
659 | 1815 nb_set_curbuf(buf->bufp); |
1816 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1817 // Don't want Visual mode now. |
7 | 1818 if (VIsual_active) |
1819 end_visual_mode(); | |
1820 #ifdef NBDEBUG | |
1821 s = args; | |
1822 #endif | |
1823 pos = get_off_or_lnum(buf->bufp, &args); | |
1824 if (pos) | |
1825 { | |
1826 curwin->w_cursor = *pos; | |
1827 check_cursor(); | |
1828 #ifdef FEAT_FOLDING | |
1829 foldOpenCursor(); | |
1830 #endif | |
1831 } | |
1832 else | |
1884 | 1833 { |
7 | 1834 nbdebug((" BAD POSITION in setDot: %s\n", s)); |
1884 | 1835 } |
7 | 1836 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1837 // gui_update_cursor(TRUE, FALSE); |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29340
diff
changeset
|
1838 // update_curbuf(UPD_NOT_VALID); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1839 update_topline(); // scroll to show the line |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29340
diff
changeset
|
1840 update_screen(UPD_VALID); |
7 | 1841 setcursor(); |
2745 | 1842 cursor_on(); |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1843 out_flush_cursor(TRUE, FALSE); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1844 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1845 // Quit a hit-return or more prompt. |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1846 if (State == MODE_HITRETURN || State == MODE_ASKMORE) |
7 | 1847 { |
1848 #ifdef FEAT_GUI_GTK | |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1849 if (gui.in_use && gtk_main_level() > 0) |
7 | 1850 gtk_main_quit(); |
1851 #endif | |
1852 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1853 // ===================================================================== |
7 | 1854 } |
1855 else if (streq((char *)cmd, "close")) | |
1856 { | |
1857 #ifdef NBDEBUG | |
1858 char *name = "<NONE>"; | |
1859 #endif | |
1860 | |
1861 if (buf == NULL) | |
1862 { | |
1618 | 1863 nbdebug((" invalid buffer identifier in close\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1864 emsg(e_invalid_buffer_identifier_in_close); |
7 | 1865 return FAIL; |
1866 } | |
1867 | |
1868 #ifdef NBDEBUG | |
1869 if (buf->displayname != NULL) | |
1870 name = buf->displayname; | |
1871 #endif | |
1618 | 1872 if (buf->bufp == NULL) |
1873 { | |
1874 nbdebug((" invalid buffer identifier in close\n")); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1875 // This message was commented out, probably because it can |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1876 // happen when shutting down. |
1618 | 1877 if (p_verbose > 0) |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1878 emsg(e_invalid_buffer_identifier_in_close_2); |
1618 | 1879 } |
7 | 1880 nbdebug((" CLOSE %d: %s\n", bufno, name)); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1881 #ifdef FEAT_GUI |
7 | 1882 need_mouse_correct = TRUE; |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1883 #endif |
7 | 1884 if (buf->bufp != NULL) |
1885 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD, | |
1886 buf->bufp->b_fnum, TRUE); | |
924 | 1887 buf->bufp = NULL; |
1888 buf->initDone = FALSE; | |
3263 | 1889 do_update = 1; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1890 // ===================================================================== |
7 | 1891 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1892 else if (streq((char *)cmd, "setStyle")) // obsolete... |
7 | 1893 { |
1618 | 1894 nbdebug((" setStyle is obsolete!\n")); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1895 // ===================================================================== |
7 | 1896 } |
1897 else if (streq((char *)cmd, "setExitDelay")) | |
1898 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1899 // Only used in version 2.1. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1900 // ===================================================================== |
7 | 1901 } |
1902 else if (streq((char *)cmd, "defineAnnoType")) | |
1903 { | |
1904 #ifdef FEAT_SIGNS | |
1905 int typeNum; | |
1906 char_u *typeName; | |
1907 char_u *tooltip; | |
1908 char_u *p; | |
1909 char_u *glyphFile; | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1910 int parse_error = FALSE; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1911 char_u *fg; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1912 char_u *bg; |
7 | 1913 |
1914 if (buf == NULL) | |
1915 { | |
1618 | 1916 nbdebug((" invalid buffer identifier in defineAnnoType\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1917 emsg(e_invalid_buffer_identifier_in_defineannotype); |
7 | 1918 return FAIL; |
1919 } | |
1920 | |
27 | 1921 cp = (char *)args; |
1922 typeNum = strtol(cp, &cp, 10); | |
1923 args = (char_u *)cp; | |
7 | 1924 args = skipwhite(args); |
1925 typeName = (char_u *)nb_unquote(args, &args); | |
1926 args = skipwhite(args + 1); | |
1927 tooltip = (char_u *)nb_unquote(args, &args); | |
1928 args = skipwhite(args + 1); | |
1929 | |
1930 p = (char_u *)nb_unquote(args, &args); | |
1931 glyphFile = vim_strsave_escaped(p, escape_chars); | |
1932 vim_free(p); | |
1933 | |
1934 args = skipwhite(args + 1); | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1935 p = skiptowhite(args); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1936 if (*p != NUL) |
7 | 1937 { |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1938 *p = NUL; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1939 p = skipwhite(p + 1); |
7 | 1940 } |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1941 fg = vim_strsave(args); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1942 bg = vim_strsave(p); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1943 if (STRLEN(fg) > MAX_COLOR_LENGTH || STRLEN(bg) > MAX_COLOR_LENGTH) |
7 | 1944 { |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1945 emsg(e_highlighting_color_name_too_long_in_defineAnnoType); |
22830
70eb58639009
patch 8.2.1962: netbeans may access freed memory
Bram Moolenaar <Bram@vim.org>
parents:
22590
diff
changeset
|
1946 VIM_CLEAR(typeName); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1947 parse_error = TRUE; |
7 | 1948 } |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1949 else if (typeName != NULL && tooltip != NULL && glyphFile != NULL) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1950 addsigntype(buf, typeNum, typeName, tooltip, glyphFile, fg, bg); |
22830
70eb58639009
patch 8.2.1962: netbeans may access freed memory
Bram Moolenaar <Bram@vim.org>
parents:
22590
diff
changeset
|
1951 |
70eb58639009
patch 8.2.1962: netbeans may access freed memory
Bram Moolenaar <Bram@vim.org>
parents:
22590
diff
changeset
|
1952 vim_free(typeName); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1953 vim_free(fg); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1954 vim_free(bg); |
7 | 1955 vim_free(tooltip); |
1956 vim_free(glyphFile); | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1957 if (parse_error) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1958 return FAIL; |
7 | 1959 |
1960 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1961 // ===================================================================== |
7 | 1962 } |
1963 else if (streq((char *)cmd, "addAnno")) | |
1964 { | |
1965 #ifdef FEAT_SIGNS | |
1966 int serNum; | |
1967 int localTypeNum; | |
1968 int typeNum; | |
1969 pos_T *pos; | |
1970 | |
1971 if (buf == NULL || buf->bufp == NULL) | |
1972 { | |
1618 | 1973 nbdebug((" invalid buffer identifier in addAnno\n")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1974 emsg(e_invalid_buffer_identifier_in_addanno); |
7 | 1975 return FAIL; |
1976 } | |
1977 | |
3263 | 1978 do_update = 1; |
7 | 1979 |
27 | 1980 cp = (char *)args; |
1981 serNum = strtol(cp, &cp, 10); | |
7 | 1982 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1983 // Get the typenr specific for this buffer and convert it to |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1984 // the global typenumber, as used for the sign name. |
27 | 1985 localTypeNum = strtol(cp, &cp, 10); |
1986 args = (char_u *)cp; | |
7 | 1987 typeNum = mapsigntype(buf, localTypeNum); |
1988 | |
1989 pos = get_off_or_lnum(buf->bufp, &args); | |
1990 | |
27 | 1991 cp = (char *)args; |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
1992 vim_ignored = (int)strtol(cp, &cp, 10); |
27 | 1993 args = (char_u *)cp; |
7 | 1994 # ifdef NBDEBUG |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
1995 if (vim_ignored != -1) |
1618 | 1996 nbdebug((" partial line annotation -- Not Yet Implemented!\n")); |
7 | 1997 # endif |
1998 if (serNum >= GUARDEDOFFSET) | |
1999 { | |
1618 | 2000 nbdebug((" too many annotations! ignoring...\n")); |
7 | 2001 return FAIL; |
2002 } | |
2003 if (pos) | |
2004 { | |
1816 | 2005 coloncmd(":sign place %d line=%ld name=%d buffer=%d", |
7 | 2006 serNum, pos->lnum, typeNum, buf->bufp->b_fnum); |
2007 if (typeNum == curPCtype) | |
2008 coloncmd(":sign jump %d buffer=%d", serNum, | |
2009 buf->bufp->b_fnum); | |
2010 } | |
2011 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2012 // ===================================================================== |
7 | 2013 } |
2014 else if (streq((char *)cmd, "removeAnno")) | |
2015 { | |
2016 #ifdef FEAT_SIGNS | |
2017 int serNum; | |
2018 | |
2019 if (buf == NULL || buf->bufp == NULL) | |
2020 { | |
1618 | 2021 nbdebug((" invalid buffer identifier in removeAnno\n")); |
7 | 2022 return FAIL; |
2023 } | |
3263 | 2024 do_update = 1; |
27 | 2025 cp = (char *)args; |
2026 serNum = strtol(cp, &cp, 10); | |
2027 args = (char_u *)cp; | |
7 | 2028 coloncmd(":sign unplace %d buffer=%d", |
2029 serNum, buf->bufp->b_fnum); | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29340
diff
changeset
|
2030 redraw_buf_later(buf->bufp, UPD_NOT_VALID); |
7 | 2031 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2032 // ===================================================================== |
7 | 2033 } |
2034 else if (streq((char *)cmd, "moveAnnoToFront")) | |
2035 { | |
2036 #ifdef FEAT_SIGNS | |
1618 | 2037 nbdebug((" moveAnnoToFront: Not Yet Implemented!\n")); |
7 | 2038 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2039 // ===================================================================== |
7 | 2040 } |
2041 else if (streq((char *)cmd, "guard") || streq((char *)cmd, "unguard")) | |
2042 { | |
2043 int len; | |
2044 pos_T first; | |
2045 pos_T last; | |
2046 pos_T *pos; | |
2047 int un = (cmd[0] == 'u'); | |
2048 static int guardId = GUARDEDOFFSET; | |
2049 | |
2050 if (skip >= SKIP_STOP) | |
2051 { | |
2052 nbdebug((" Skipping %s command\n", (char *) cmd)); | |
2053 return OK; | |
2054 } | |
2055 | |
2056 nb_init_graphics(); | |
2057 | |
2058 if (buf == NULL || buf->bufp == NULL) | |
2059 { | |
1618 | 2060 nbdebug((" invalid buffer identifier in %s command\n", cmd)); |
7 | 2061 return FAIL; |
2062 } | |
659 | 2063 nb_set_curbuf(buf->bufp); |
27 | 2064 cp = (char *)args; |
2065 off = strtol(cp, &cp, 10); | |
2066 len = strtol(cp, NULL, 10); | |
2067 args = (char_u *)cp; | |
7 | 2068 pos = off2pos(buf->bufp, off); |
3263 | 2069 do_update = 1; |
7 | 2070 if (!pos) |
2071 nbdebug((" no such start pos in %s, %ld\n", cmd, off)); | |
2072 else | |
2073 { | |
2074 first = *pos; | |
2075 pos = off2pos(buf->bufp, off + len - 1); | |
33 | 2076 if (pos != NULL && pos->col == 0) |
2077 { | |
7 | 2078 /* |
2079 * In Java Swing the offset is a position between 2 | |
2080 * characters. If col == 0 then we really want the | |
2081 * previous line as the end. | |
2082 */ | |
2083 pos = off2pos(buf->bufp, off + len - 2); | |
2084 } | |
2085 if (!pos) | |
2086 nbdebug((" no such end pos in %s, %ld\n", | |
2087 cmd, off + len - 1)); | |
2088 else | |
2089 { | |
2090 long lnum; | |
2091 last = *pos; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2092 // set highlight for region |
7 | 2093 nbdebug((" %sGUARD %ld,%d to %ld,%d\n", (un) ? "UN" : "", |
2094 first.lnum, first.col, | |
2095 last.lnum, last.col)); | |
2096 #ifdef FEAT_SIGNS | |
2097 for (lnum = first.lnum; lnum <= last.lnum; lnum++) | |
2098 { | |
2099 if (un) | |
2100 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2101 // never used |
7 | 2102 } |
2103 else | |
2104 { | |
2105 if (buf_findsigntype_id(buf->bufp, lnum, | |
2106 GUARDED) == 0) | |
2107 { | |
2108 coloncmd( | |
1816 | 2109 ":sign place %d line=%ld name=%d buffer=%d", |
7 | 2110 guardId++, lnum, GUARDED, |
2111 buf->bufp->b_fnum); | |
2112 } | |
2113 } | |
2114 } | |
2115 #endif | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29340
diff
changeset
|
2116 redraw_buf_later(buf->bufp, UPD_NOT_VALID); |
7 | 2117 } |
2118 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2119 // ===================================================================== |
7 | 2120 } |
2121 else if (streq((char *)cmd, "startAtomic")) | |
2122 { | |
2123 inAtomic = 1; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2124 // ===================================================================== |
7 | 2125 } |
2126 else if (streq((char *)cmd, "endAtomic")) | |
2127 { | |
2128 inAtomic = 0; | |
2129 if (needupdate) | |
2130 { | |
3263 | 2131 do_update = 1; |
7 | 2132 needupdate = 0; |
2133 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2134 // ===================================================================== |
7 | 2135 } |
2136 else if (streq((char *)cmd, "save")) | |
2137 { | |
33 | 2138 /* |
10226
7a4fb555c83a
commit https://github.com/vim/vim/commit/9af418427652562384744648d7d173a4bfebba95
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2139 * NOTE - This command is obsolete wrt NetBeans. It's left in |
33 | 2140 * only for historical reasons. |
2141 */ | |
7 | 2142 if (buf == NULL || buf->bufp == NULL) |
2143 { | |
1618 | 2144 nbdebug((" invalid buffer identifier in %s command\n", cmd)); |
7 | 2145 return FAIL; |
2146 } | |
2147 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2148 // the following is taken from ex_cmds.c (do_wqall function) |
7 | 2149 if (bufIsChanged(buf->bufp)) |
2150 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2151 // Only write if the buffer can be written. |
7 | 2152 if (p_write |
2153 && !buf->bufp->b_p_ro | |
2154 && buf->bufp->b_ffname != NULL | |
29849
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29732
diff
changeset
|
2155 && !bt_dontwrite(buf->bufp)) |
7 | 2156 { |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9434
diff
changeset
|
2157 bufref_T bufref; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9434
diff
changeset
|
2158 |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9434
diff
changeset
|
2159 set_bufref(&bufref, buf->bufp); |
7 | 2160 buf_write_all(buf->bufp, FALSE); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2161 // an autocommand may have deleted the buffer |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9434
diff
changeset
|
2162 if (!bufref_valid(&bufref)) |
7 | 2163 buf->bufp = NULL; |
2164 } | |
2165 } | |
1618 | 2166 else |
2167 { | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2168 nbdebug((" Buffer has no changes!\n")); |
1618 | 2169 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2170 // ===================================================================== |
7 | 2171 } |
2172 else if (streq((char *)cmd, "netbeansBuffer")) | |
2173 { | |
2174 if (buf == NULL || buf->bufp == NULL) | |
2175 { | |
1618 | 2176 nbdebug((" invalid buffer identifier in %s command\n", cmd)); |
7 | 2177 return FAIL; |
2178 } | |
2179 if (*args == 'T') | |
2180 { | |
2181 buf->bufp->b_netbeans_file = TRUE; | |
2182 buf->bufp->b_was_netbeans_file = TRUE; | |
2183 } | |
2184 else | |
2185 buf->bufp->b_netbeans_file = FALSE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2186 // ===================================================================== |
7 | 2187 } |
33 | 2188 else if (streq((char *)cmd, "specialKeys")) |
2189 { | |
2190 special_keys(args); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2191 // ===================================================================== |
33 | 2192 } |
2193 else if (streq((char *)cmd, "actionMenuItem")) | |
2194 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2195 // not used yet |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2196 // ===================================================================== |
33 | 2197 } |
7 | 2198 else if (streq((char *)cmd, "version")) |
2199 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2200 // not used yet |
7 | 2201 } |
1618 | 2202 else |
2203 { | |
2204 nbdebug(("Unrecognised command: %s\n", cmd)); | |
2205 } | |
7 | 2206 /* |
2207 * Unrecognized command is ignored. | |
2208 */ | |
2209 } | |
3263 | 2210 if (inAtomic && do_update) |
7 | 2211 { |
2212 needupdate = 1; | |
3263 | 2213 do_update = 0; |
7 | 2214 } |
2215 | |
33 | 2216 /* |
2217 * Is this needed? I moved the netbeans_Xt_connect() later during startup | |
10226
7a4fb555c83a
commit https://github.com/vim/vim/commit/9af418427652562384744648d7d173a4bfebba95
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2218 * and it may no longer be necessary. If it's not needed then needupdate |
3263 | 2219 * and do_update can also be removed. |
33 | 2220 */ |
3263 | 2221 if (buf != NULL && buf->initDone && do_update) |
7 | 2222 { |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29340
diff
changeset
|
2223 update_screen(UPD_NOT_VALID); |
7 | 2224 setcursor(); |
2745 | 2225 cursor_on(); |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
2226 out_flush_cursor(TRUE, FALSE); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
2227 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2228 // Quit a hit-return or more prompt. |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
2229 if (State == MODE_HITRETURN || State == MODE_ASKMORE) |
7 | 2230 { |
2231 #ifdef FEAT_GUI_GTK | |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2232 if (gui.in_use && gtk_main_level() > 0) |
7 | 2233 gtk_main_quit(); |
2234 #endif | |
2235 } | |
2236 } | |
2237 | |
2238 return retval; | |
2239 } | |
2240 | |
2241 | |
2242 /* | |
659 | 2243 * If "buf" is not the current buffer try changing to a window that edits this |
2244 * buffer. If there is no such window then close the current buffer and set | |
2245 * the current buffer as "buf". | |
2246 */ | |
2247 static void | |
1492 | 2248 nb_set_curbuf(buf_T *buf) |
659 | 2249 { |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2250 if (curbuf == buf) |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2251 return; |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2252 |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2253 if (buf_jump_open_win(buf) != NULL) |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2254 return; |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2255 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf) != NULL) |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2256 return; |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2257 set_curbuf(buf, DOBUF_GOTO); |
659 | 2258 } |
2259 | |
2260 /* | |
7 | 2261 * Process a vim colon command. |
2262 */ | |
2263 static void | |
2264 coloncmd(char *cmd, ...) | |
2265 { | |
2266 char buf[1024]; | |
2267 va_list ap; | |
2268 | |
2269 va_start(ap, cmd); | |
11653
67cf0d45b006
patch 8.0.0709: libvterm cannot use vsnprintf()
Christian Brabandt <cb@256bit.org>
parents:
10646
diff
changeset
|
2270 vim_vsnprintf(buf, sizeof(buf), cmd, ap); |
7 | 2271 va_end(ap); |
2272 | |
2273 nbdebug((" COLONCMD %s\n", buf)); | |
2274 | |
2275 do_cmdline((char_u *)buf, NULL, NULL, DOCMD_NOWAIT | DOCMD_KEYTYPED); | |
2276 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2277 setcursor(); // restore the cursor position |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
2278 out_flush_cursor(TRUE, FALSE); |
7 | 2279 } |
2280 | |
2281 | |
2282 /* | |
33 | 2283 * Parse the specialKeys argument and issue the appropriate map commands. |
2284 */ | |
2285 static void | |
2286 special_keys(char_u *args) | |
2287 { | |
2288 char *save_str = nb_unquote(args, NULL); | |
2289 char *tok = strtok(save_str, " "); | |
2290 char *sep; | |
10646
8cff35d5f5dc
patch 8.0.0213: Netbeans specialKeys command does not check argument length
Christian Brabandt <cb@256bit.org>
parents:
10226
diff
changeset
|
2291 #define KEYBUFLEN 64 |
8cff35d5f5dc
patch 8.0.0213: Netbeans specialKeys command does not check argument length
Christian Brabandt <cb@256bit.org>
parents:
10226
diff
changeset
|
2292 char keybuf[KEYBUFLEN]; |
33 | 2293 char cmdbuf[256]; |
2294 | |
2295 while (tok != NULL) | |
2296 { | |
2297 int i = 0; | |
2298 | |
2299 if ((sep = strchr(tok, '-')) != NULL) | |
2300 { | |
36 | 2301 *sep = NUL; |
33 | 2302 while (*tok) |
2303 { | |
2304 switch (*tok) | |
2305 { | |
2306 case 'A': | |
2307 case 'M': | |
2308 case 'C': | |
2309 case 'S': | |
2310 keybuf[i++] = *tok; | |
2311 keybuf[i++] = '-'; | |
2312 break; | |
2313 } | |
2314 tok++; | |
2315 } | |
2316 tok++; | |
2317 } | |
2318 | |
10646
8cff35d5f5dc
patch 8.0.0213: Netbeans specialKeys command does not check argument length
Christian Brabandt <cb@256bit.org>
parents:
10226
diff
changeset
|
2319 if (strlen(tok) + i < KEYBUFLEN) |
8cff35d5f5dc
patch 8.0.0213: Netbeans specialKeys command does not check argument length
Christian Brabandt <cb@256bit.org>
parents:
10226
diff
changeset
|
2320 { |
8cff35d5f5dc
patch 8.0.0213: Netbeans specialKeys command does not check argument length
Christian Brabandt <cb@256bit.org>
parents:
10226
diff
changeset
|
2321 strcpy(&keybuf[i], tok); |
8cff35d5f5dc
patch 8.0.0213: Netbeans specialKeys command does not check argument length
Christian Brabandt <cb@256bit.org>
parents:
10226
diff
changeset
|
2322 vim_snprintf(cmdbuf, sizeof(cmdbuf), |
8cff35d5f5dc
patch 8.0.0213: Netbeans specialKeys command does not check argument length
Christian Brabandt <cb@256bit.org>
parents:
10226
diff
changeset
|
2323 "<silent><%s> :nbkey %s<CR>", keybuf, keybuf); |
29173
1ec1ba7e7728
patch 8.2.5106: default cmdwin mappings are re-mappable
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
2324 do_map(MAPTYPE_MAP, (char_u *)cmdbuf, MODE_NORMAL, FALSE); |
10646
8cff35d5f5dc
patch 8.0.0213: Netbeans specialKeys command does not check argument length
Christian Brabandt <cb@256bit.org>
parents:
10226
diff
changeset
|
2325 } |
33 | 2326 tok = strtok(NULL, " "); |
2327 } | |
2328 vim_free(save_str); | |
2329 } | |
2330 | |
2210 | 2331 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2332 ex_nbclose(exarg_T *eap UNUSED) |
2210 | 2333 { |
2334 netbeans_close(); | |
2335 } | |
33 | 2336 |
2337 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2338 ex_nbkey(exarg_T *eap) |
33 | 2339 { |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2340 (void)netbeans_keystring(eap->arg); |
33 | 2341 } |
2342 | |
2210 | 2343 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2344 ex_nbstart( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2345 exarg_T *eap) |
2210 | 2346 { |
2595 | 2347 #ifdef FEAT_GUI |
2348 # if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \ | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2349 && !defined(FEAT_GUI_MSWIN) |
2595 | 2350 if (gui.in_use) |
2351 { | |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
2352 emsg(_(e_netbeans_is_not_supported_with_this_GUI)); |
2639 | 2353 return; |
2595 | 2354 } |
2355 # endif | |
2356 #endif | |
2210 | 2357 netbeans_open((char *)eap->arg, FALSE); |
2358 } | |
33 | 2359 |
2360 /* | |
7 | 2361 * Initialize highlights and signs for use by netbeans (mostly obsolete) |
2362 */ | |
2363 static void | |
2364 nb_init_graphics(void) | |
2365 { | |
2366 static int did_init = FALSE; | |
2367 | |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2368 if (did_init) |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2369 return; |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2370 |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2371 coloncmd(":highlight NBGuarded guibg=Cyan guifg=Black" |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2372 " ctermbg=LightCyan ctermfg=Black"); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2373 coloncmd(":sign define %d linehl=NBGuarded", GUARDED); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2374 |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2375 did_init = TRUE; |
7 | 2376 } |
2377 | |
2378 /* | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2379 * Convert key to netbeans name. This uses the global "mod_mask". |
7 | 2380 */ |
2381 static void | |
2382 netbeans_keyname(int key, char *buf) | |
2383 { | |
2384 char *name = 0; | |
2385 char namebuf[2]; | |
2386 int ctrl = 0; | |
2387 int shift = 0; | |
2388 int alt = 0; | |
2389 | |
2390 if (mod_mask & MOD_MASK_CTRL) | |
2391 ctrl = 1; | |
2392 if (mod_mask & MOD_MASK_SHIFT) | |
2393 shift = 1; | |
2394 if (mod_mask & MOD_MASK_ALT) | |
2395 alt = 1; | |
2396 | |
2397 | |
2398 switch (key) | |
2399 { | |
2400 case K_F1: name = "F1"; break; | |
2401 case K_S_F1: name = "F1"; shift = 1; break; | |
2402 case K_F2: name = "F2"; break; | |
2403 case K_S_F2: name = "F2"; shift = 1; break; | |
2404 case K_F3: name = "F3"; break; | |
2405 case K_S_F3: name = "F3"; shift = 1; break; | |
2406 case K_F4: name = "F4"; break; | |
2407 case K_S_F4: name = "F4"; shift = 1; break; | |
2408 case K_F5: name = "F5"; break; | |
2409 case K_S_F5: name = "F5"; shift = 1; break; | |
2410 case K_F6: name = "F6"; break; | |
2411 case K_S_F6: name = "F6"; shift = 1; break; | |
2412 case K_F7: name = "F7"; break; | |
2413 case K_S_F7: name = "F7"; shift = 1; break; | |
2414 case K_F8: name = "F8"; break; | |
2415 case K_S_F8: name = "F8"; shift = 1; break; | |
2416 case K_F9: name = "F9"; break; | |
2417 case K_S_F9: name = "F9"; shift = 1; break; | |
2418 case K_F10: name = "F10"; break; | |
2419 case K_S_F10: name = "F10"; shift = 1; break; | |
2420 case K_F11: name = "F11"; break; | |
2421 case K_S_F11: name = "F11"; shift = 1; break; | |
2422 case K_F12: name = "F12"; break; | |
2423 case K_S_F12: name = "F12"; shift = 1; break; | |
2424 default: | |
2425 if (key >= ' ' && key <= '~') | |
2426 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2427 // Allow ASCII characters. |
7 | 2428 name = namebuf; |
2429 namebuf[0] = key; | |
2430 namebuf[1] = NUL; | |
2431 } | |
2432 else | |
2433 name = "X"; | |
2434 break; | |
2435 } | |
2436 | |
2437 buf[0] = '\0'; | |
2438 if (ctrl) | |
2439 strcat(buf, "C"); | |
2440 if (shift) | |
2441 strcat(buf, "S"); | |
2442 if (alt) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2443 strcat(buf, "M"); // META |
7 | 2444 if (ctrl || shift || alt) |
2445 strcat(buf, "-"); | |
2446 strcat(buf, name); | |
2447 } | |
2448 | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2449 #if defined(FEAT_BEVAL) || defined(PROTO) |
7 | 2450 /* |
2451 * Function to be called for balloon evaluation. Grabs the text under the | |
2452 * cursor and sends it to the debugger for evaluation. The debugger should | |
2453 * respond with a showBalloon command when there is a useful result. | |
2454 */ | |
183 | 2455 void |
7 | 2456 netbeans_beval_cb( |
2457 BalloonEval *beval, | |
1884 | 2458 int state UNUSED) |
7 | 2459 { |
183 | 2460 win_T *wp; |
7 | 2461 char_u *text; |
183 | 2462 linenr_T lnum; |
7 | 2463 int col; |
2770 | 2464 char *buf; |
7 | 2465 char_u *p; |
2466 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2467 // Don't do anything when 'ballooneval' is off, messages scrolled the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2468 // windows up or we have no connection. |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
2469 if (!can_use_beval() || !NETBEANS_OPEN) |
7 | 2470 return; |
2471 | |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2472 if (get_beval_info(beval, TRUE, &wp, &lnum, &text, &col) != OK) |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2473 return; |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2474 |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2475 // Send debugger request. Only when the text is of reasonable |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2476 // length. |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2477 if (text != NULL && text[0] != NUL && STRLEN(text) < MAXPATHL) |
7 | 2478 { |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2479 buf = alloc(MAXPATHL * 2 + 25); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2480 if (buf != NULL) |
7 | 2481 { |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2482 p = nb_quote(text); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2483 if (p != NULL) |
33 | 2484 { |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2485 vim_snprintf(buf, MAXPATHL * 2 + 25, |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2486 "0:balloonText=%d \"%s\"\n", r_cmdno, p); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2487 vim_free(p); |
33 | 2488 } |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2489 nbdebug(("EVT: %s", buf)); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2490 nb_send(buf, "netbeans_beval_cb"); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2491 vim_free(buf); |
7 | 2492 } |
2493 } | |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2494 vim_free(text); |
7 | 2495 } |
2496 #endif | |
2497 | |
2498 /* | |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
2499 * Return TRUE when the netbeans connection is active. |
2210 | 2500 */ |
2501 int | |
2502 netbeans_active(void) | |
2503 { | |
2504 return NETBEANS_OPEN; | |
2505 } | |
2506 | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2507 /* |
7 | 2508 * Tell netbeans that the window was opened, ready for commands. |
2509 */ | |
2510 void | |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
2511 netbeans_open(char *params, int doabort) |
7 | 2512 { |
2513 char *cmd = "0:startupDone=0\n"; | |
2514 | |
2210 | 2515 if (NETBEANS_OPEN) |
2516 { | |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
2517 emsg(_(e_netbeans_already_connected)); |
7 | 2518 return; |
2210 | 2519 } |
2520 | |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
2521 if (netbeans_connect(params, doabort) != OK) |
7 | 2522 return; |
183 | 2523 |
7 | 2524 nbdebug(("EVT: %s", cmd)); |
2525 nb_send(cmd, "netbeans_startup_done"); | |
2210 | 2526 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2527 // update the screen after having added the gutter |
2210 | 2528 changed_window_setting(); |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29340
diff
changeset
|
2529 update_screen(UPD_CLEAR); |
2210 | 2530 setcursor(); |
2745 | 2531 cursor_on(); |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
2532 out_flush_cursor(TRUE, FALSE); |
7 | 2533 } |
2534 | |
33 | 2535 /* |
2536 * Tell netbeans that we're exiting. This should be called right | |
2537 * before calling exit. | |
2538 */ | |
2539 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2540 netbeans_send_disconnect(void) |
33 | 2541 { |
2542 char buf[128]; | |
2543 | |
2210 | 2544 if (NETBEANS_OPEN) |
33 | 2545 { |
944 | 2546 sprintf(buf, "0:disconnect=%d\n", r_cmdno); |
33 | 2547 nbdebug(("EVT: %s", buf)); |
2548 nb_send(buf, "netbeans_disconnect"); | |
2549 } | |
2550 } | |
2551 | |
9052
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2552 #if defined(FEAT_EVAL) || defined(PROTO) |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2553 int |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2554 set_ref_in_nb_channel(int copyID) |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2555 { |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2556 int abort = FALSE; |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2557 typval_T tv; |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2558 |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2559 if (nb_channel == NULL) |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2560 return FALSE; |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2561 |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2562 tv.v_type = VAR_CHANNEL; |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2563 tv.vval.v_channel = nb_channel; |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2564 abort = set_ref_in_item(&tv, copyID, NULL, NULL); |
9052
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2565 return abort; |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2566 } |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2567 #endif |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2568 |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2569 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_MSWIN) || defined(PROTO) |
7 | 2570 /* |
2571 * Tell netbeans that the window was moved or resized. | |
2572 */ | |
2573 void | |
2574 netbeans_frame_moved(int new_x, int new_y) | |
2575 { | |
2576 char buf[128]; | |
2577 | |
2210 | 2578 if (!NETBEANS_OPEN) |
7 | 2579 return; |
2580 | |
2581 sprintf(buf, "0:geometry=%d %d %d %d %d\n", | |
944 | 2582 r_cmdno, (int)Columns, (int)Rows, new_x, new_y); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2583 // nbdebug(("EVT: %s", buf)); happens too many times during a move |
7 | 2584 nb_send(buf, "netbeans_frame_moved"); |
2585 } | |
2586 #endif | |
2587 | |
2588 /* | |
33 | 2589 * Tell netbeans the user opened or activated a file. |
2590 */ | |
2591 void | |
2592 netbeans_file_activated(buf_T *bufp) | |
2593 { | |
2594 int bufno = nb_getbufno(bufp); | |
2595 nbbuf_T *bp = nb_get_buf(bufno); | |
2596 char buffer[2*MAXPATHL]; | |
2597 char_u *q; | |
2598 | |
2210 | 2599 if (!NETBEANS_OPEN || !bufp->b_netbeans_file || dosetvisible) |
33 | 2600 return; |
2601 | |
2602 q = nb_quote(bufp->b_ffname); | |
840 | 2603 if (q == NULL || bp == NULL) |
33 | 2604 return; |
2605 | |
272 | 2606 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n", |
33 | 2607 bufno, |
2608 bufno, | |
2609 (char *)q, | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2610 "T", // open in NetBeans |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2611 "F"); // modified |
33 | 2612 |
2613 vim_free(q); | |
2614 nbdebug(("EVT: %s", buffer)); | |
2615 | |
2616 nb_send(buffer, "netbeans_file_opened"); | |
2617 } | |
2618 | |
2619 /* | |
7 | 2620 * Tell netbeans the user opened a file. |
2621 */ | |
2622 void | |
33 | 2623 netbeans_file_opened(buf_T *bufp) |
7 | 2624 { |
33 | 2625 int bufno = nb_getbufno(bufp); |
7 | 2626 char buffer[2*MAXPATHL]; |
2627 char_u *q; | |
33 | 2628 nbbuf_T *bp = nb_get_buf(nb_getbufno(bufp)); |
2629 int bnum; | |
7 | 2630 |
2210 | 2631 if (!NETBEANS_OPEN) |
7 | 2632 return; |
2633 | |
33 | 2634 q = nb_quote(bufp->b_ffname); |
7 | 2635 if (q == NULL) |
2636 return; | |
33 | 2637 if (bp != NULL) |
2638 bnum = bufno; | |
2639 else | |
2640 bnum = 0; | |
2641 | |
272 | 2642 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n", |
33 | 2643 bnum, |
7 | 2644 0, |
2645 (char *)q, | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2646 "T", // open in NetBeans |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2647 "F"); // modified |
7 | 2648 |
2649 vim_free(q); | |
2650 nbdebug(("EVT: %s", buffer)); | |
2651 | |
2652 nb_send(buffer, "netbeans_file_opened"); | |
13170
6559e98f3e74
patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
2653 if (p_acd && vim_chdirfile(bufp->b_ffname, "auto") == OK) |
26171
fa8161b003f6
patch 8.2.3617: ":verbose pwd" does not mention 'autochdir' was applied
Bram Moolenaar <Bram@vim.org>
parents:
25953
diff
changeset
|
2654 { |
fa8161b003f6
patch 8.2.3617: ":verbose pwd" does not mention 'autochdir' was applied
Bram Moolenaar <Bram@vim.org>
parents:
25953
diff
changeset
|
2655 last_chdir_reason = "netbeans"; |
7 | 2656 shorten_fnames(TRUE); |
26171
fa8161b003f6
patch 8.2.3617: ":verbose pwd" does not mention 'autochdir' was applied
Bram Moolenaar <Bram@vim.org>
parents:
25953
diff
changeset
|
2657 } |
7 | 2658 } |
2659 | |
2660 /* | |
1781 | 2661 * Tell netbeans that a file was deleted or wiped out. |
7 | 2662 */ |
2663 void | |
1781 | 2664 netbeans_file_killed(buf_T *bufp) |
7 | 2665 { |
2666 int bufno = nb_getbufno(bufp); | |
2667 nbbuf_T *nbbuf = nb_get_buf(bufno); | |
2668 char buffer[2*MAXPATHL]; | |
2669 | |
2210 | 2670 if (!NETBEANS_OPEN || bufno == -1) |
7 | 2671 return; |
1781 | 2672 |
2673 nbdebug(("netbeans_file_killed:\n")); | |
2674 nbdebug((" Killing bufno: %d", bufno)); | |
7 | 2675 |
944 | 2676 sprintf(buffer, "%d:killed=%d\n", bufno, r_cmdno); |
7 | 2677 |
2678 nbdebug(("EVT: %s", buffer)); | |
2679 | |
1781 | 2680 nb_send(buffer, "netbeans_file_killed"); |
7 | 2681 |
2682 if (nbbuf != NULL) | |
2683 nbbuf->bufp = NULL; | |
2684 } | |
2685 | |
2686 /* | |
2687 * Get a pointer to the Netbeans buffer for Vim buffer "bufp". | |
2688 * Return NULL if there is no such buffer or changes are not to be reported. | |
2689 * Otherwise store the buffer number in "*bufnop". | |
2690 */ | |
2691 static nbbuf_T * | |
2692 nb_bufp2nbbuf_fire(buf_T *bufp, int *bufnop) | |
2693 { | |
2694 int bufno; | |
2695 nbbuf_T *nbbuf; | |
2696 | |
2210 | 2697 if (!NETBEANS_OPEN || !netbeansFireChanges) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2698 return NULL; // changes are not reported at all |
7 | 2699 |
2700 bufno = nb_getbufno(bufp); | |
2701 if (bufno <= 0) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2702 return NULL; // file is not known to NetBeans |
7 | 2703 |
2704 nbbuf = nb_get_buf(bufno); | |
2705 if (nbbuf != NULL && !nbbuf->fireChanges) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2706 return NULL; // changes in this buffer are not reported |
7 | 2707 |
2708 *bufnop = bufno; | |
2709 return nbbuf; | |
2710 } | |
2711 | |
2712 /* | |
2713 * Tell netbeans the user inserted some text. | |
2714 */ | |
2715 void | |
2716 netbeans_inserted( | |
2717 buf_T *bufp, | |
2718 linenr_T linenr, | |
2719 colnr_T col, | |
2720 char_u *txt, | |
2721 int newlen) | |
2722 { | |
2723 char_u *buf; | |
2724 int bufno; | |
2725 nbbuf_T *nbbuf; | |
2726 pos_T pos; | |
2727 long off; | |
2728 char_u *p; | |
2729 char_u *newtxt; | |
2730 | |
2210 | 2731 if (!NETBEANS_OPEN) |
2732 return; | |
2733 | |
7 | 2734 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno); |
2735 if (nbbuf == NULL) | |
2736 return; | |
2737 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2738 // Don't mark as modified for initial read |
33 | 2739 if (nbbuf->insertDone) |
2740 nbbuf->modified = 1; | |
7 | 2741 |
29340
fba9e366ced4
patch 9.0.0013: reproducing memory access errors can be difficult
Bram Moolenaar <Bram@vim.org>
parents:
29173
diff
changeset
|
2742 // send the "insert" EVT |
fba9e366ced4
patch 9.0.0013: reproducing memory access errors can be difficult
Bram Moolenaar <Bram@vim.org>
parents:
29173
diff
changeset
|
2743 newtxt = alloc(newlen + 1); |
fba9e366ced4
patch 9.0.0013: reproducing memory access errors can be difficult
Bram Moolenaar <Bram@vim.org>
parents:
29173
diff
changeset
|
2744 vim_strncpy(newtxt, txt, newlen); |
fba9e366ced4
patch 9.0.0013: reproducing memory access errors can be difficult
Bram Moolenaar <Bram@vim.org>
parents:
29173
diff
changeset
|
2745 |
fba9e366ced4
patch 9.0.0013: reproducing memory access errors can be difficult
Bram Moolenaar <Bram@vim.org>
parents:
29173
diff
changeset
|
2746 // Note: this may make "txt" invalid |
7 | 2747 pos.lnum = linenr; |
2748 pos.col = col; | |
2749 off = pos2off(bufp, &pos); | |
2750 | |
2751 p = nb_quote(newtxt); | |
2752 if (p != NULL) | |
2753 { | |
33 | 2754 buf = alloc(128 + 2*newlen); |
944 | 2755 sprintf((char *)buf, "%d:insert=%d %ld \"%s\"\n", |
2756 bufno, r_cmdno, off, p); | |
7 | 2757 nbdebug(("EVT: %s", buf)); |
2758 nb_send((char *)buf, "netbeans_inserted"); | |
33 | 2759 vim_free(p); |
2760 vim_free(buf); | |
7 | 2761 } |
2762 vim_free(newtxt); | |
2763 } | |
2764 | |
2765 /* | |
2766 * Tell netbeans some bytes have been removed. | |
2767 */ | |
2768 void | |
2769 netbeans_removed( | |
2770 buf_T *bufp, | |
2771 linenr_T linenr, | |
2772 colnr_T col, | |
2773 long len) | |
2774 { | |
2775 char_u buf[128]; | |
2776 int bufno; | |
2777 nbbuf_T *nbbuf; | |
2778 pos_T pos; | |
2779 long off; | |
2780 | |
2210 | 2781 if (!NETBEANS_OPEN) |
2782 return; | |
2783 | |
7 | 2784 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno); |
2785 if (nbbuf == NULL) | |
2786 return; | |
2787 | |
2788 if (len < 0) | |
2789 { | |
1618 | 2790 nbdebug(("Negative len %ld in netbeans_removed()!\n", len)); |
7 | 2791 return; |
2792 } | |
2793 | |
2794 nbbuf->modified = 1; | |
2795 | |
2796 pos.lnum = linenr; | |
2797 pos.col = col; | |
2798 | |
2799 off = pos2off(bufp, &pos); | |
2800 | |
944 | 2801 sprintf((char *)buf, "%d:remove=%d %ld %ld\n", bufno, r_cmdno, off, len); |
7 | 2802 nbdebug(("EVT: %s", buf)); |
2803 nb_send((char *)buf, "netbeans_removed"); | |
2804 } | |
2805 | |
2806 /* | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1956
diff
changeset
|
2807 * Send netbeans an unmodified command. |
7 | 2808 */ |
2809 void | |
1884 | 2810 netbeans_unmodified(buf_T *bufp UNUSED) |
7 | 2811 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2812 // This is a no-op, because NetBeans considers a buffer modified |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2813 // even when all changes have been undone. |
7 | 2814 } |
2815 | |
2816 /* | |
10226
7a4fb555c83a
commit https://github.com/vim/vim/commit/9af418427652562384744648d7d173a4bfebba95
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2817 * Send a button release event back to netbeans. It's up to netbeans |
7 | 2818 * to decide what to do (if anything) with this event. |
2819 */ | |
2820 void | |
2821 netbeans_button_release(int button) | |
2822 { | |
2823 char buf[128]; | |
2824 int bufno; | |
2825 | |
2210 | 2826 if (!NETBEANS_OPEN) |
2827 return; | |
2828 | |
7 | 2829 bufno = nb_getbufno(curbuf); |
2830 | |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2831 if (bufno < 0 || curwin == NULL || curwin->w_buffer != curbuf) |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2832 return; |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2833 |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2834 int col = mouse_col - curwin->w_wincol |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2835 - ((curwin->w_p_nu || curwin->w_p_rnu) ? 9 : 1); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2836 long off = pos2off(curbuf, &curwin->w_cursor); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2837 |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2838 // sync the cursor position |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2839 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2840 nbdebug(("EVT: %s", buf)); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2841 nb_send(buf, "netbeans_button_release[newDotAndMark]"); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2842 |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2843 sprintf(buf, "%d:buttonRelease=%d %d %ld %d\n", bufno, r_cmdno, |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2844 button, (long)curwin->w_cursor.lnum, col); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2845 nbdebug(("EVT: %s", buf)); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
2846 nb_send(buf, "netbeans_button_release"); |
7 | 2847 } |
2848 | |
2849 | |
2850 /* | |
1186 | 2851 * Send a keypress event back to netbeans. This usually simulates some |
33 | 2852 * kind of function key press. This function operates on a key code. |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2853 * Return TRUE when the key was sent, FALSE when the command has been |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2854 * postponed. |
7 | 2855 */ |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2856 int |
7 | 2857 netbeans_keycommand(int key) |
2858 { | |
33 | 2859 char keyName[60]; |
2860 | |
2861 netbeans_keyname(key, keyName); | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2862 return netbeans_keystring((char_u *)keyName); |
33 | 2863 } |
2864 | |
2865 | |
2866 /* | |
1186 | 2867 * Send a keypress event back to netbeans. This usually simulates some |
33 | 2868 * kind of function key press. This function operates on a key string. |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2869 * Return TRUE when the key was sent, FALSE when the command has been |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2870 * postponed. |
33 | 2871 */ |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2872 static int |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2873 netbeans_keystring(char_u *keyName) |
33 | 2874 { |
7 | 2875 char buf[2*MAXPATHL]; |
33 | 2876 int bufno = nb_getbufno(curbuf); |
7 | 2877 long off; |
2878 char_u *q; | |
2879 | |
2210 | 2880 if (!NETBEANS_OPEN) |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2881 return TRUE; |
7 | 2882 |
2883 if (bufno == -1) | |
2884 { | |
2885 nbdebug(("got keycommand for non-NetBeans buffer, opening...\n")); | |
2886 q = curbuf->b_ffname == NULL ? (char_u *)"" | |
2887 : nb_quote(curbuf->b_ffname); | |
2888 if (q == NULL) | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2889 return TRUE; |
272 | 2890 vim_snprintf(buf, sizeof(buf), "0:fileOpened=%d \"%s\" %s %s\n", 0, |
7 | 2891 q, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2892 "T", // open in NetBeans |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2893 "F"); // modified |
7 | 2894 if (curbuf->b_ffname != NULL) |
2895 vim_free(q); | |
2896 nbdebug(("EVT: %s", buf)); | |
2897 nb_send(buf, "netbeans_keycommand"); | |
2898 | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2899 postpone_keycommand(keyName); |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2900 return FALSE; |
7 | 2901 } |
2902 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2903 // sync the cursor position |
7 | 2904 off = pos2off(curbuf, &curwin->w_cursor); |
944 | 2905 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off); |
7 | 2906 nbdebug(("EVT: %s", buf)); |
2907 nb_send(buf, "netbeans_keycommand"); | |
2908 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2909 // To work on Win32 you must apply patch to ExtEditor module |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2910 // from ExtEdCaret.java.diff - make EVT_newDotAndMark handler |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2911 // more synchronous |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2912 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2913 // now send keyCommand event |
272 | 2914 vim_snprintf(buf, sizeof(buf), "%d:keyCommand=%d \"%s\"\n", |
944 | 2915 bufno, r_cmdno, keyName); |
7 | 2916 nbdebug(("EVT: %s", buf)); |
2917 nb_send(buf, "netbeans_keycommand"); | |
2918 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2919 // New: do both at once and include the lnum/col. |
272 | 2920 vim_snprintf(buf, sizeof(buf), "%d:keyAtPos=%d \"%s\" %ld %ld/%ld\n", |
944 | 2921 bufno, r_cmdno, keyName, |
7 | 2922 off, (long)curwin->w_cursor.lnum, (long)curwin->w_cursor.col); |
2923 nbdebug(("EVT: %s", buf)); | |
2924 nb_send(buf, "netbeans_keycommand"); | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2925 return TRUE; |
7 | 2926 } |
2927 | |
2928 | |
2929 /* | |
2930 * Send a save event to netbeans. | |
2931 */ | |
2932 void | |
2933 netbeans_save_buffer(buf_T *bufp) | |
2934 { | |
2935 char_u buf[64]; | |
2936 int bufno; | |
2937 nbbuf_T *nbbuf; | |
2938 | |
2210 | 2939 if (!NETBEANS_OPEN) |
2940 return; | |
2941 | |
7 | 2942 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno); |
2943 if (nbbuf == NULL) | |
2944 return; | |
2945 | |
2946 nbbuf->modified = 0; | |
2947 | |
944 | 2948 sprintf((char *)buf, "%d:save=%d\n", bufno, r_cmdno); |
7 | 2949 nbdebug(("EVT: %s", buf)); |
2950 nb_send((char *)buf, "netbeans_save_buffer"); | |
2951 } | |
2952 | |
2953 | |
2954 /* | |
2955 * Send remove command to netbeans (this command has been turned off). | |
2956 */ | |
2957 void | |
2958 netbeans_deleted_all_lines(buf_T *bufp) | |
2959 { | |
2960 char_u buf[64]; | |
2961 int bufno; | |
2962 nbbuf_T *nbbuf; | |
2963 | |
2210 | 2964 if (!NETBEANS_OPEN) |
2965 return; | |
2966 | |
7 | 2967 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno); |
2968 if (nbbuf == NULL) | |
2969 return; | |
2970 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2971 // Don't mark as modified for initial read |
33 | 2972 if (nbbuf->insertDone) |
2973 nbbuf->modified = 1; | |
7 | 2974 |
944 | 2975 sprintf((char *)buf, "%d:remove=%d 0 -1\n", bufno, r_cmdno); |
7 | 2976 nbdebug(("EVT(suppressed): %s", buf)); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2977 // nb_send(buf, "netbeans_deleted_all_lines"); |
7 | 2978 } |
2979 | |
2980 | |
2981 /* | |
2982 * See if the lines are guarded. The top and bot parameters are from | |
2983 * u_savecommon(), these are the line above the change and the line below the | |
2984 * change. | |
2985 */ | |
2986 int | |
2987 netbeans_is_guarded(linenr_T top, linenr_T bot) | |
2988 { | |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
2989 sign_entry_T *p; |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
2990 int lnum; |
7 | 2991 |
2210 | 2992 if (!NETBEANS_OPEN) |
2993 return FALSE; | |
2994 | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
18808
diff
changeset
|
2995 FOR_ALL_SIGNS_IN_BUF(curbuf, p) |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
2996 if (p->se_id >= GUARDEDOFFSET) |
7 | 2997 for (lnum = top + 1; lnum < bot; lnum++) |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
2998 if (lnum == p->se_lnum) |
7 | 2999 return TRUE; |
3000 | |
3001 return FALSE; | |
3002 } | |
3003 | |
2592 | 3004 #if defined(FEAT_GUI_X11) || defined(PROTO) |
7 | 3005 /* |
3006 * We have multiple signs to draw at the same location. Draw the | |
3007 * multi-sign indicator instead. This is the Motif version. | |
3008 */ | |
3009 void | |
3010 netbeans_draw_multisign_indicator(int row) | |
3011 { | |
3012 int i; | |
3013 int y; | |
3014 int x; | |
3015 | |
2210 | 3016 if (!NETBEANS_OPEN) |
3017 return; | |
3018 | |
7 | 3019 x = 0; |
3020 y = row * gui.char_height + 2; | |
3021 | |
3022 for (i = 0; i < gui.char_height - 3; i++) | |
3023 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y++); | |
3024 | |
3025 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+0, y); | |
3026 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y); | |
3027 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+4, y++); | |
3028 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+1, y); | |
3029 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y); | |
3030 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+3, y++); | |
3031 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y); | |
3032 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3033 #endif // FEAT_GUI_X11 |
7 | 3034 |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2271
diff
changeset
|
3035 #if defined(FEAT_GUI_GTK) && !defined(PROTO) |
7 | 3036 /* |
3037 * We have multiple signs to draw at the same location. Draw the | |
3038 * multi-sign indicator instead. This is the GTK/Gnome version. | |
3039 */ | |
3040 void | |
3041 netbeans_draw_multisign_indicator(int row) | |
3042 { | |
3043 int i; | |
3044 int y; | |
3045 int x; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3046 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3047 cairo_t *cr = NULL; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3048 #else |
7 | 3049 GdkDrawable *drawable = gui.drawarea->window; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3050 #endif |
7 | 3051 |
2210 | 3052 if (!NETBEANS_OPEN) |
3053 return; | |
3054 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3055 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3056 cr = cairo_create(gui.surface); |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3057 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3058 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3059 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3060 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3061 |
7 | 3062 x = 0; |
3063 y = row * gui.char_height + 2; | |
3064 | |
3065 for (i = 0; i < gui.char_height - 3; i++) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3066 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3067 cairo_rectangle(cr, x+2, y++, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3068 #else |
7 | 3069 gdk_draw_point(drawable, gui.text_gc, x+2, y++); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3070 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3071 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3072 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3073 cairo_rectangle(cr, x+0, y, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3074 cairo_rectangle(cr, x+2, y, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3075 cairo_rectangle(cr, x+4, y++, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3076 cairo_rectangle(cr, x+1, y, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3077 cairo_rectangle(cr, x+2, y, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3078 cairo_rectangle(cr, x+3, y++, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3079 cairo_rectangle(cr, x+2, y, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3080 #else |
7 | 3081 gdk_draw_point(drawable, gui.text_gc, x+0, y); |
3082 gdk_draw_point(drawable, gui.text_gc, x+2, y); | |
3083 gdk_draw_point(drawable, gui.text_gc, x+4, y++); | |
3084 gdk_draw_point(drawable, gui.text_gc, x+1, y); | |
3085 gdk_draw_point(drawable, gui.text_gc, x+2, y); | |
3086 gdk_draw_point(drawable, gui.text_gc, x+3, y++); | |
3087 gdk_draw_point(drawable, gui.text_gc, x+2, y); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3088 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3089 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3090 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3091 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3092 #endif |
7 | 3093 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3094 #endif // FEAT_GUI_GTK |
7 | 3095 |
3096 /* | |
3097 * If the mouse is clicked in the gutter of a line with multiple | |
3098 * annotations, cycle through the set of signs. | |
3099 */ | |
3100 void | |
3101 netbeans_gutter_click(linenr_T lnum) | |
3102 { | |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3103 sign_entry_T *p; |
7 | 3104 |
2210 | 3105 if (!NETBEANS_OPEN) |
3106 return; | |
3107 | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
18808
diff
changeset
|
3108 FOR_ALL_SIGNS_IN_BUF(curbuf, p) |
7 | 3109 { |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3110 if (p->se_lnum == lnum && p->se_next && p->se_next->se_lnum == lnum) |
7 | 3111 { |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3112 sign_entry_T *tail; |
7 | 3113 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3114 // remove "p" from list, reinsert it at the tail of the sublist |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3115 if (p->se_prev) |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3116 p->se_prev->se_next = p->se_next; |
7 | 3117 else |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3118 curbuf->b_signlist = p->se_next; |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3119 p->se_next->se_prev = p->se_prev; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3120 // now find end of sublist and insert p |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3121 for (tail = p->se_next; |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3122 tail->se_next && tail->se_next->se_lnum == lnum |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3123 && tail->se_next->se_id < GUARDEDOFFSET; |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3124 tail = tail->se_next) |
7 | 3125 ; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3126 // tail now points to last entry with same lnum (except |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3127 // that "guarded" annotations are always last) |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3128 p->se_next = tail->se_next; |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3129 if (tail->se_next) |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3130 tail->se_next->se_prev = p; |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3131 p->se_prev = tail; |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3132 tail->se_next = p; |
7 | 3133 update_debug_sign(curbuf, lnum); |
3134 break; | |
3135 } | |
3136 } | |
3137 } | |
3138 | |
3139 /* | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1956
diff
changeset
|
3140 * Add a sign of the requested type at the requested location. |
7 | 3141 * |
3142 * Reverse engineering: | |
3143 * Apparently an annotation is defined the first time it is used in a buffer. | |
3144 * When the same annotation is used in two buffers, the second time we do not | |
3145 * need to define a new sign name but reuse the existing one. But since the | |
3146 * ID number used in the second buffer starts counting at one again, a mapping | |
3147 * is made from the ID specifically for the buffer to the global sign name | |
3148 * (which is a number). | |
3149 * | |
3150 * globalsignmap[] stores the signs that have been defined globally. | |
3151 * buf->signmapused[] maps buffer-local annotation IDs to an index in | |
3152 * globalsignmap[]. | |
3153 */ | |
3154 static void | |
3155 addsigntype( | |
3156 nbbuf_T *buf, | |
3157 int typeNum, | |
3158 char_u *typeName, | |
1884 | 3159 char_u *tooltip UNUSED, |
7 | 3160 char_u *glyphFile, |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3161 char_u *fg, |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3162 char_u *bg) |
7 | 3163 { |
3164 int i, j; | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3165 int use_fg = (*fg && STRCMP(fg, "none") != 0); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3166 int use_bg = (*bg && STRCMP(bg, "none") != 0); |
7 | 3167 |
3168 for (i = 0; i < globalsignmapused; i++) | |
3169 if (STRCMP(typeName, globalsignmap[i]) == 0) | |
3170 break; | |
3171 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3172 if (i == globalsignmapused) // not found; add it to global map |
7 | 3173 { |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3174 nbdebug(("DEFINEANNOTYPE(%d,%s,%s,%s,%s,%s)\n", |
7 | 3175 typeNum, typeName, tooltip, glyphFile, fg, bg)); |
3176 if (use_fg || use_bg) | |
3177 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3178 char fgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1]; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3179 char bgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1]; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3180 char *ptr; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3181 int value; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3182 |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3183 value = strtol((char *)fg, &ptr, 10); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3184 if (ptr != (char *)fg) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3185 sprintf(fgbuf, "guifg=#%06x", value & 0xFFFFFF); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3186 else |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3187 sprintf(fgbuf, "guifg=%s ctermfg=%s", fg, fg); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3188 |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3189 value = strtol((char *)bg, &ptr, 10); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3190 if (ptr != (char *)bg) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3191 sprintf(bgbuf, "guibg=#%06x", value & 0xFFFFFF); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3192 else |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3193 sprintf(bgbuf, "guibg=%s ctermbg=%s", bg, bg); |
7 | 3194 |
3195 coloncmd(":highlight NB_%s %s %s", typeName, (use_fg) ? fgbuf : "", | |
3196 (use_bg) ? bgbuf : ""); | |
3197 if (*glyphFile == NUL) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3198 // no glyph, line highlighting only |
7 | 3199 coloncmd(":sign define %d linehl=NB_%s", i + 1, typeName); |
3200 else if (vim_strsize(glyphFile) <= 2) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3201 // one- or two-character glyph name, use as text glyph with |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3202 // texthl |
7 | 3203 coloncmd(":sign define %d text=%s texthl=NB_%s", i + 1, |
3204 glyphFile, typeName); | |
3205 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3206 // glyph, line highlighting |
7 | 3207 coloncmd(":sign define %d icon=%s linehl=NB_%s", i + 1, |
3208 glyphFile, typeName); | |
3209 } | |
3210 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3211 // glyph, no line highlighting |
7 | 3212 coloncmd(":sign define %d icon=%s", i + 1, glyphFile); |
3213 | |
3214 if (STRCMP(typeName,"CurrentPC") == 0) | |
3215 curPCtype = typeNum; | |
3216 | |
3217 if (globalsignmapused == globalsignmaplen) | |
3218 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3219 if (globalsignmaplen == 0) // first allocation |
7 | 3220 { |
3221 globalsignmaplen = 20; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3222 globalsignmap = ALLOC_CLEAR_MULT(char *, globalsignmaplen); |
7 | 3223 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3224 else // grow it |
7 | 3225 { |
3226 int incr; | |
3227 int oldlen = globalsignmaplen; | |
6596 | 3228 char **t_globalsignmap = globalsignmap; |
7 | 3229 |
3230 globalsignmaplen *= 2; | |
3231 incr = globalsignmaplen - oldlen; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3232 globalsignmap = vim_realloc(globalsignmap, |
7 | 3233 globalsignmaplen * sizeof(char *)); |
6596 | 3234 if (globalsignmap == NULL) |
3235 { | |
3236 vim_free(t_globalsignmap); | |
3237 globalsignmaplen = 0; | |
3238 return; | |
3239 } | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2213
diff
changeset
|
3240 vim_memset(globalsignmap + oldlen, 0, incr * sizeof(char *)); |
7 | 3241 } |
3242 } | |
3243 | |
22830
70eb58639009
patch 8.2.1962: netbeans may access freed memory
Bram Moolenaar <Bram@vim.org>
parents:
22590
diff
changeset
|
3244 globalsignmap[i] = (char *)vim_strsave(typeName); |
7 | 3245 globalsignmapused = i + 1; |
3246 } | |
3247 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3248 // check local map; should *not* be found! |
7 | 3249 for (j = 0; j < buf->signmapused; j++) |
3250 if (buf->signmap[j] == i + 1) | |
3251 return; | |
3252 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3253 // add to local map |
7 | 3254 if (buf->signmapused == buf->signmaplen) |
3255 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3256 if (buf->signmaplen == 0) // first allocation |
7 | 3257 { |
3258 buf->signmaplen = 5; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3259 buf->signmap = ALLOC_CLEAR_MULT(int, buf->signmaplen); |
7 | 3260 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3261 else // grow it |
7 | 3262 { |
3263 int incr; | |
3264 int oldlen = buf->signmaplen; | |
6596 | 3265 int *t_signmap = buf->signmap; |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
3266 |
7 | 3267 buf->signmaplen *= 2; |
3268 incr = buf->signmaplen - oldlen; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3269 buf->signmap = vim_realloc(buf->signmap, |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
3270 buf->signmaplen * sizeof(int)); |
6596 | 3271 if (buf->signmap == NULL) |
3272 { | |
3273 vim_free(t_signmap); | |
3274 buf->signmaplen = 0; | |
3275 return; | |
3276 } | |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
3277 vim_memset(buf->signmap + oldlen, 0, incr * sizeof(int)); |
7 | 3278 } |
3279 } | |
3280 | |
3281 buf->signmap[buf->signmapused++] = i + 1; | |
3282 | |
3283 } | |
3284 | |
3285 | |
3286 /* | |
3287 * See if we have the requested sign type in the buffer. | |
3288 */ | |
3289 static int | |
3290 mapsigntype(nbbuf_T *buf, int localsigntype) | |
3291 { | |
3292 if (--localsigntype >= 0 && localsigntype < buf->signmapused) | |
3293 return buf->signmap[localsigntype]; | |
3294 | |
3295 return 0; | |
3296 } | |
3297 | |
3298 | |
3299 /* | |
3300 * Compute length of buffer, don't print anything. | |
3301 */ | |
3302 static long | |
3303 get_buf_size(buf_T *bufp) | |
3304 { | |
3305 linenr_T lnum; | |
3306 long char_count = 0; | |
3307 int eol_size; | |
3308 long last_check = 100000L; | |
3309 | |
3310 if (bufp->b_ml.ml_flags & ML_EMPTY) | |
3311 return 0; | |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3312 |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3313 if (get_fileformat(bufp) == EOL_DOS) |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3314 eol_size = 2; |
7 | 3315 else |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3316 eol_size = 1; |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3317 for (lnum = 1; lnum <= bufp->b_ml.ml_line_count; ++lnum) |
7 | 3318 { |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3319 char_count += (long)STRLEN(ml_get_buf(bufp, lnum, FALSE)) |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3320 + eol_size; |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3321 // Check for a CTRL-C every 100000 characters |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3322 if (char_count > last_check) |
7 | 3323 { |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3324 ui_breakcheck(); |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3325 if (got_int) |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3326 return char_count; |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3327 last_check = char_count + 100000L; |
7 | 3328 } |
3329 } | |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3330 // Correction for when last line doesn't have an EOL. |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3331 if (!bufp->b_p_eol && (bufp->b_p_bin || !bufp->b_p_fixeol)) |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3332 char_count -= eol_size; |
7 | 3333 |
3334 return char_count; | |
3335 } | |
3336 | |
3337 /* | |
3338 * Convert character offset to lnum,col | |
3339 */ | |
3340 static pos_T * | |
3341 off2pos(buf_T *buf, long offset) | |
3342 { | |
3343 linenr_T lnum; | |
3344 static pos_T pos; | |
3345 | |
3346 pos.lnum = 0; | |
3347 pos.col = 0; | |
3348 pos.coladd = 0; | |
3349 | |
3350 if (!(buf->b_ml.ml_flags & ML_EMPTY)) | |
3351 { | |
3352 if ((lnum = ml_find_line_or_offset(buf, (linenr_T)0, &offset)) < 0) | |
3353 return NULL; | |
3354 pos.lnum = lnum; | |
3355 pos.col = offset; | |
3356 } | |
3357 | |
3358 return &pos; | |
3359 } | |
3360 | |
3361 /* | |
3362 * Convert an argument in the form "1234" to an offset and compute the | |
3363 * lnum/col from it. Convert an argument in the form "123/12" directly to a | |
3364 * lnum/col. | |
3365 * "argp" is advanced to after the argument. | |
3366 * Return a pointer to the position, NULL if something is wrong. | |
3367 */ | |
3368 static pos_T * | |
3369 get_off_or_lnum(buf_T *buf, char_u **argp) | |
3370 { | |
3371 static pos_T mypos; | |
3372 long off; | |
3373 | |
3374 off = strtol((char *)*argp, (char **)argp, 10); | |
3375 if (**argp == '/') | |
3376 { | |
3377 mypos.lnum = (linenr_T)off; | |
3378 ++*argp; | |
3379 mypos.col = strtol((char *)*argp, (char **)argp, 10); | |
3380 mypos.coladd = 0; | |
3381 return &mypos; | |
3382 } | |
3383 return off2pos(buf, off); | |
3384 } | |
3385 | |
3386 | |
3387 /* | |
667 | 3388 * Convert (lnum,col) to byte offset in the file. |
7 | 3389 */ |
3390 static long | |
3391 pos2off(buf_T *buf, pos_T *pos) | |
3392 { | |
3393 long offset = 0; | |
3394 | |
31752
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3395 if (buf->b_ml.ml_flags & ML_EMPTY) |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3396 return 0; |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3397 |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3398 if ((offset = ml_find_line_or_offset(buf, pos->lnum, 0)) < 0) |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3399 return 0; |
3365a601e73b
patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
3400 offset += pos->col; |
7 | 3401 |
3402 return offset; | |
3403 } | |
3404 | |
3405 | |
33 | 3406 /* |
10226
7a4fb555c83a
commit https://github.com/vim/vim/commit/9af418427652562384744648d7d173a4bfebba95
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3407 * This message is printed after NetBeans opens a new file. It's |
33 | 3408 * similar to the message readfile() uses, but since NetBeans |
3409 * doesn't normally call readfile, we do our own. | |
3410 */ | |
3411 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3412 print_read_msg(nbbuf_T *buf) |
33 | 3413 { |
3414 int lnum = buf->bufp->b_ml.ml_line_count; | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9375
diff
changeset
|
3415 off_T nchars = buf->bufp->b_orig_size; |
33 | 3416 char_u c; |
3417 | |
3418 msg_add_fname(buf->bufp, buf->bufp->b_ffname); | |
3419 c = FALSE; | |
3420 | |
3421 if (buf->bufp->b_p_ro) | |
3422 { | |
3423 STRCAT(IObuff, shortmess(SHM_RO) ? _("[RO]") : _("[readonly]")); | |
3424 c = TRUE; | |
3425 } | |
3426 if (!buf->bufp->b_start_eol) | |
3427 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3428 STRCAT(IObuff, shortmess(SHM_LAST) ? _("[noeol]") |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3429 : _("[Incomplete last line]")); |
33 | 3430 c = TRUE; |
3431 } | |
3432 msg_add_lines(c, (long)lnum, nchars); | |
3433 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3434 // Now display it |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
3435 VIM_CLEAR(keep_msg); |
33 | 3436 msg_scrolled_ign = TRUE; |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3437 msg_trunc_attr((char *)IObuff, FALSE, 0); |
33 | 3438 msg_scrolled_ign = FALSE; |
3439 } | |
3440 | |
3441 | |
3442 /* | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3443 * Print a message after NetBeans writes the file. This message should be |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3444 * identical to the standard message a non-netbeans user would see when |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3445 * writing a file. |
33 | 3446 */ |
3447 static void | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9375
diff
changeset
|
3448 print_save_msg(nbbuf_T *buf, off_T nchars) |
33 | 3449 { |
3450 char_u c; | |
3451 char_u *p; | |
3452 | |
3453 if (nchars >= 0) | |
3454 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3455 // put fname in IObuff with quotes |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3456 msg_add_fname(buf->bufp, buf->bufp->b_ffname); |
33 | 3457 c = FALSE; |
3458 | |
3459 msg_add_lines(c, buf->bufp->b_ml.ml_line_count, | |
2241
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3460 buf->bufp->b_orig_size); |
33 | 3461 |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
3462 VIM_CLEAR(keep_msg); |
33 | 3463 msg_scrolled_ign = TRUE; |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3464 p = (char_u *)msg_trunc_attr((char *)IObuff, FALSE, 0); |
33 | 3465 if ((msg_scrolled && !need_wait_return) || !buf->initDone) |
3466 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3467 // Need to repeat the message after redrawing when: |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3468 // - When reading from stdin (the screen will be cleared next). |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3469 // - When restart_edit is set (otherwise there will be a delay |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3470 // before redrawing). |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3471 // - When the screen was scrolled but there is no wait-return |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3472 // prompt. |
678 | 3473 set_keep_msg(p, 0); |
33 | 3474 } |
3475 msg_scrolled_ign = FALSE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3476 // add_to_input_buf((char_u *)"\f", 1); |
33 | 3477 } |
3478 else | |
3479 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
3480 char msgbuf[IOSIZE]; |
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
3481 |
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
3482 vim_snprintf(msgbuf, IOSIZE, |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
3483 _(e_is_read_only_add_bang_to_override), IObuff); |
2768 | 3484 nbdebug((" %s\n", msgbuf)); |
3485 emsg(msgbuf); | |
33 | 3486 } |
3487 } | |
3488 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3489 #endif // defined(FEAT_NETBEANS_INTG) |