blob: aac6133648249a941129a7d05dfbd0e768b0ae19 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * CSCOPE support for Vim added by Andy Kahn <kahn@zk3.dec.com>
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00004 * Ported to Win32 by Sergey Khorev <sergey.khorev@gmail.com>
Bram Moolenaar071d4272004-06-13 20:20:40 +00005 *
6 * The basic idea/structure of cscope for Vim was borrowed from Nvi. There
7 * might be a few lines of code that look similar to what Nvi has.
8 *
9 * See README.txt for an overview of the Vim source code.
10 */
11
12#include "vim.h"
13
14#if defined(FEAT_CSCOPE) || defined(PROTO)
15
Bram Moolenaar071d4272004-06-13 20:20:40 +000016#include <sys/types.h>
17#include <sys/stat.h>
18#if defined(UNIX)
19# include <sys/wait.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +000020#endif
21#include "if_cscope.h"
22
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010023static int cs_add(exarg_T *eap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010024static int cs_add_common(char *, char *, char *);
25static int cs_check_for_connections(void);
26static int cs_check_for_tags(void);
27static int cs_cnt_connections(void);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010028static int cs_create_connection(int i);
Bram Moolenaarc716c302006-01-21 22:12:51 +000029#ifdef FEAT_QUICKFIX
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010030static void cs_file_results(FILE *, int *);
Bram Moolenaarc716c302006-01-21 22:12:51 +000031#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010032static void cs_fill_results(char *, int , int *, char ***,
33 char ***, int *);
34static int cs_find(exarg_T *eap);
35static int cs_find_common(char *opt, char *pat, int, int, int, char_u *cmdline);
36static int cs_help(exarg_T *eap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010037static int cs_insert_filelist(char *, char *, char *,
Bram Moolenaar8767f522016-07-01 17:17:39 +020038 stat_T *);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010039static int cs_kill(exarg_T *eap);
40static void cs_kill_execute(int, char *);
41static cscmd_T * cs_lookup_cmd(exarg_T *eap);
42static char * cs_make_vim_style_matches(char *, char *,
43 char *, char *);
44static char * cs_manage_matches(char **, char **, int, mcmd_e);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010045static void cs_print_tags_priv(char **, char **, int);
46static int cs_read_prompt(int);
47static void cs_release_csp(int, int freefnpp);
48static int cs_reset(exarg_T *eap);
49static char * cs_resolve_file(int, char *);
50static int cs_show(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000051
52
Bram Moolenaar9fa49da2009-07-10 13:11:26 +000053static csinfo_T * csinfo = NULL;
54static int csinfo_size = 0; /* number of items allocated in
55 csinfo[] */
56
Bram Moolenaard2ac9842007-08-21 16:03:51 +000057static int eap_arg_len; /* length of eap->arg, set in
58 cs_lookup_cmd() */
Bram Moolenaar071d4272004-06-13 20:20:40 +000059static cscmd_T cs_cmds[] =
60{
61 { "add", cs_add,
62 N_("Add a new database"), "add file|dir [pre-path] [flags]", 0 },
63 { "find", cs_find,
Bram Moolenaar80632db2016-07-05 22:28:40 +020064 N_("Query for a pattern"), "find a|c|d|e|f|g|i|s|t name", 1 },
Bram Moolenaar071d4272004-06-13 20:20:40 +000065 { "help", cs_help,
66 N_("Show this message"), "help", 0 },
67 { "kill", cs_kill,
68 N_("Kill a connection"), "kill #", 0 },
69 { "reset", cs_reset,
70 N_("Reinit all connections"), "reset", 0 },
71 { "show", cs_show,
72 N_("Show connections"), "show", 0 },
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000073 { NULL, NULL, NULL, NULL, 0 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000074};
75
76 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +010077cs_usage_msg(csid_e x)
Bram Moolenaar071d4272004-06-13 20:20:40 +000078{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +010079 (void)semsg(_("E560: Usage: cs[cope] %s"), cs_cmds[(int)x].usage);
Bram Moolenaar071d4272004-06-13 20:20:40 +000080}
81
Bram Moolenaarf4580d82009-03-18 11:52:53 +000082static enum
83{
84 EXP_CSCOPE_SUBCMD, /* expand ":cscope" sub-commands */
Bram Moolenaar7bfef802009-04-22 14:25:01 +000085 EXP_SCSCOPE_SUBCMD, /* expand ":scscope" sub-commands */
Bram Moolenaarf4580d82009-03-18 11:52:53 +000086 EXP_CSCOPE_FIND, /* expand ":cscope find" arguments */
87 EXP_CSCOPE_KILL /* expand ":cscope kill" arguments */
88} expand_what;
89
90/*
91 * Function given to ExpandGeneric() to obtain the cscope command
92 * expansion.
93 */
Bram Moolenaarf4580d82009-03-18 11:52:53 +000094 char_u *
Bram Moolenaar68c2f632016-01-30 17:24:07 +010095get_cscope_name(expand_T *xp UNUSED, int idx)
Bram Moolenaarf4580d82009-03-18 11:52:53 +000096{
Bram Moolenaar7bfef802009-04-22 14:25:01 +000097 int current_idx;
98 int i;
99
Bram Moolenaarf4580d82009-03-18 11:52:53 +0000100 switch (expand_what)
101 {
102 case EXP_CSCOPE_SUBCMD:
103 /* Complete with sub-commands of ":cscope":
104 * add, find, help, kill, reset, show */
105 return (char_u *)cs_cmds[idx].name;
Bram Moolenaar7bfef802009-04-22 14:25:01 +0000106 case EXP_SCSCOPE_SUBCMD:
107 /* Complete with sub-commands of ":scscope": same sub-commands as
108 * ":cscope" but skip commands which don't support split windows */
109 for (i = 0, current_idx = 0; cs_cmds[i].name != NULL; i++)
110 if (cs_cmds[i].cansplit)
111 if (current_idx++ == idx)
112 break;
113 return (char_u *)cs_cmds[i].name;
Bram Moolenaarf4580d82009-03-18 11:52:53 +0000114 case EXP_CSCOPE_FIND:
115 {
116 const char *query_type[] =
117 {
Bram Moolenaar80632db2016-07-05 22:28:40 +0200118 "a", "c", "d", "e", "f", "g", "i", "s", "t", NULL
Bram Moolenaarf4580d82009-03-18 11:52:53 +0000119 };
120
121 /* Complete with query type of ":cscope find {query_type}".
Bram Moolenaarb12e7ef2016-06-21 23:42:20 +0200122 * {query_type} can be letters (c, d, ... a) or numbers (0, 1,
123 * ..., 9) but only complete with letters, since numbers are
Bram Moolenaarf4580d82009-03-18 11:52:53 +0000124 * redundant. */
125 return (char_u *)query_type[idx];
126 }
127 case EXP_CSCOPE_KILL:
128 {
Bram Moolenaar9fa49da2009-07-10 13:11:26 +0000129 static char connection[5];
Bram Moolenaarf4580d82009-03-18 11:52:53 +0000130
131 /* ":cscope kill" accepts connection numbers or partial names of
132 * the pathname of the cscope database as argument. Only complete
133 * with connection numbers. -1 can also be used to kill all
134 * connections. */
Bram Moolenaar9fa49da2009-07-10 13:11:26 +0000135 for (i = 0, current_idx = 0; i < csinfo_size; i++)
Bram Moolenaarf4580d82009-03-18 11:52:53 +0000136 {
137 if (csinfo[i].fname == NULL)
138 continue;
139 if (current_idx++ == idx)
140 {
Bram Moolenaar9fa49da2009-07-10 13:11:26 +0000141 vim_snprintf(connection, sizeof(connection), "%d", i);
142 return (char_u *)connection;
Bram Moolenaarf4580d82009-03-18 11:52:53 +0000143 }
144 }
145 return (current_idx == idx && idx > 0) ? (char_u *)"-1" : NULL;
146 }
147 default:
148 return NULL;
149 }
150}
151
152/*
153 * Handle command line completion for :cscope command.
154 */
155 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100156set_context_in_cscope_cmd(
157 expand_T *xp,
158 char_u *arg,
159 cmdidx_T cmdidx)
Bram Moolenaarf4580d82009-03-18 11:52:53 +0000160{
161 char_u *p;
162
163 /* Default: expand subcommands */
164 xp->xp_context = EXPAND_CSCOPE;
Bram Moolenaarf4580d82009-03-18 11:52:53 +0000165 xp->xp_pattern = arg;
Bram Moolenaar7bfef802009-04-22 14:25:01 +0000166 expand_what = (cmdidx == CMD_scscope)
167 ? EXP_SCSCOPE_SUBCMD : EXP_CSCOPE_SUBCMD;
Bram Moolenaarf4580d82009-03-18 11:52:53 +0000168
169 /* (part of) subcommand already typed */
170 if (*arg != NUL)
171 {
172 p = skiptowhite(arg);
173 if (*p != NUL) /* past first word */
174 {
175 xp->xp_pattern = skipwhite(p);
176 if (*skiptowhite(xp->xp_pattern) != NUL)
177 xp->xp_context = EXPAND_NOTHING;
178 else if (STRNICMP(arg, "add", p - arg) == 0)
179 xp->xp_context = EXPAND_FILES;
180 else if (STRNICMP(arg, "kill", p - arg) == 0)
181 expand_what = EXP_CSCOPE_KILL;
182 else if (STRNICMP(arg, "find", p - arg) == 0)
183 expand_what = EXP_CSCOPE_FIND;
184 else
185 xp->xp_context = EXPAND_NOTHING;
186 }
187 }
188}
189
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190/*
Bram Moolenaarf4580d82009-03-18 11:52:53 +0000191 * Find the command, print help if invalid, and then call the corresponding
192 * command function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193 */
194 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100195do_cscope_general(
196 exarg_T *eap,
Bram Moolenaar42b8d912017-01-15 17:18:57 +0100197 int make_split UNUSED) /* whether to split window */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198{
199 cscmd_T *cmdp;
200
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201 if ((cmdp = cs_lookup_cmd(eap)) == NULL)
202 {
203 cs_help(eap);
204 return;
205 }
206
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 if (make_split)
208 {
209 if (!cmdp->cansplit)
210 {
Bram Moolenaar32526b32019-01-19 17:43:09 +0100211 (void)msg_puts(_("This cscope command does not support splitting the window.\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 return;
213 }
214 postponed_split = -1;
215 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +0000216 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218
219 cmdp->func(eap);
220
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +0000222 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223}
224
225/*
Bram Moolenaard4db7712016-11-12 19:16:46 +0100226 * Implementation of ":cscope" and ":lcscope"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227 */
228 void
Bram Moolenaard4db7712016-11-12 19:16:46 +0100229ex_cscope(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230{
231 do_cscope_general(eap, FALSE);
232}
233
234/*
Bram Moolenaard4db7712016-11-12 19:16:46 +0100235 * Implementation of ":scscope". Same as ex_cscope(), but splits window, too.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236 */
237 void
Bram Moolenaard4db7712016-11-12 19:16:46 +0100238ex_scscope(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239{
240 do_cscope_general(eap, TRUE);
241}
242
243/*
Bram Moolenaard4db7712016-11-12 19:16:46 +0100244 * Implementation of ":cstag"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 */
246 void
Bram Moolenaard4db7712016-11-12 19:16:46 +0100247ex_cstag(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248{
249 int ret = FALSE;
250
Bram Moolenaar446cb832008-06-24 21:56:24 +0000251 if (*eap->arg == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100253 (void)emsg(_("E562: Usage: cstag <ident>"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254 return;
255 }
256
257 switch (p_csto)
258 {
259 case 0 :
260 if (cs_check_for_connections())
261 {
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000262 ret = cs_find_common("g", (char *)(eap->arg), eap->forceit, FALSE,
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200263 FALSE, *eap->cmdlinep);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264 if (ret == FALSE)
265 {
266 cs_free_tags();
267 if (msg_col)
268 msg_putchar('\n');
269
270 if (cs_check_for_tags())
271 ret = do_tag(eap->arg, DT_JUMP, 0, eap->forceit, FALSE);
272 }
273 }
274 else if (cs_check_for_tags())
275 {
276 ret = do_tag(eap->arg, DT_JUMP, 0, eap->forceit, FALSE);
277 }
278 break;
279 case 1 :
280 if (cs_check_for_tags())
281 {
282 ret = do_tag(eap->arg, DT_JUMP, 0, eap->forceit, FALSE);
283 if (ret == FALSE)
284 {
285 if (msg_col)
286 msg_putchar('\n');
287
288 if (cs_check_for_connections())
289 {
290 ret = cs_find_common("g", (char *)(eap->arg), eap->forceit,
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200291 FALSE, FALSE, *eap->cmdlinep);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292 if (ret == FALSE)
293 cs_free_tags();
294 }
295 }
296 }
297 else if (cs_check_for_connections())
298 {
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000299 ret = cs_find_common("g", (char *)(eap->arg), eap->forceit, FALSE,
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200300 FALSE, *eap->cmdlinep);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301 if (ret == FALSE)
302 cs_free_tags();
303 }
304 break;
305 default :
306 break;
307 }
308
309 if (!ret)
310 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100311 (void)emsg(_("E257: cstag: tag not found"));
Bram Moolenaar4033c552017-09-16 20:54:51 +0200312#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 g_do_tagpreview = 0;
314#endif
315 }
316
Bram Moolenaard4db7712016-11-12 19:16:46 +0100317}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318
319
320/*
Bram Moolenaard4db7712016-11-12 19:16:46 +0100321 * This simulates a vim_fgets(), but for cscope, returns the next line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322 * from the cscope output. should only be called from find_tags()
323 *
324 * returns TRUE if eof, FALSE otherwise
325 */
326 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100327cs_fgets(char_u *buf, int size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328{
329 char *p;
330
331 if ((p = cs_manage_matches(NULL, NULL, -1, Get)) == NULL)
332 return TRUE;
Bram Moolenaard2ac9842007-08-21 16:03:51 +0000333 vim_strncpy(buf, (char_u *)p, size - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334
335 return FALSE;
336} /* cs_fgets */
337
338
339/*
Bram Moolenaard4db7712016-11-12 19:16:46 +0100340 * Called only from do_tag(), when popping the tag stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 */
342 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100343cs_free_tags(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344{
345 cs_manage_matches(NULL, NULL, -1, Free);
346}
347
348
349/*
Bram Moolenaard4db7712016-11-12 19:16:46 +0100350 * Called from do_tag().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351 */
352 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100353cs_print_tags(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354{
355 cs_manage_matches(NULL, NULL, -1, Print);
356}
357
358
359/*
360 * "cscope_connection([{num} , {dbpath} [, {prepend}]])" function
361 *
362 * Checks for the existence of a |cscope| connection. If no
363 * parameters are specified, then the function returns:
364 *
365 * 0, if cscope was not available (not compiled in), or if there
366 * are no cscope connections; or
367 * 1, if there is at least one cscope connection.
368 *
369 * If parameters are specified, then the value of {num}
370 * determines how existence of a cscope connection is checked:
371 *
372 * {num} Description of existence check
373 * ----- ------------------------------
374 * 0 Same as no parameters (e.g., "cscope_connection()").
375 * 1 Ignore {prepend}, and use partial string matches for
376 * {dbpath}.
377 * 2 Ignore {prepend}, and use exact string matches for
378 * {dbpath}.
379 * 3 Use {prepend}, use partial string matches for both
380 * {dbpath} and {prepend}.
381 * 4 Use {prepend}, use exact string matches for both
382 * {dbpath} and {prepend}.
383 *
384 * Note: All string comparisons are case sensitive!
385 */
386#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaaraf7645d2019-09-05 22:33:28 +0200387 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100388cs_connection(int num, char_u *dbpath, char_u *ppath)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389{
390 int i;
391
392 if (num < 0 || num > 4 || (num > 0 && !dbpath))
393 return FALSE;
394
Bram Moolenaar9fa49da2009-07-10 13:11:26 +0000395 for (i = 0; i < csinfo_size; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396 {
397 if (!csinfo[i].fname)
398 continue;
399
400 if (num == 0)
401 return TRUE;
402
403 switch (num)
404 {
405 case 1:
406 if (strstr(csinfo[i].fname, (char *)dbpath))
407 return TRUE;
408 break;
409 case 2:
410 if (strcmp(csinfo[i].fname, (char *)dbpath) == 0)
411 return TRUE;
412 break;
413 case 3:
414 if (strstr(csinfo[i].fname, (char *)dbpath)
415 && ((!ppath && !csinfo[i].ppath)
416 || (ppath
417 && csinfo[i].ppath
418 && strstr(csinfo[i].ppath, (char *)ppath))))
419 return TRUE;
420 break;
421 case 4:
422 if ((strcmp(csinfo[i].fname, (char *)dbpath) == 0)
423 && ((!ppath && !csinfo[i].ppath)
424 || (ppath
425 && csinfo[i].ppath
426 && (strcmp(csinfo[i].ppath, (char *)ppath) == 0))))
427 return TRUE;
428 break;
429 }
430 }
431
432 return FALSE;
Bram Moolenaaraf7645d2019-09-05 22:33:28 +0200433}
434
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435#endif
436
437
438/*
439 * PRIVATE functions
440 ****************************************************************************/
441
442/*
Bram Moolenaard4db7712016-11-12 19:16:46 +0100443 * Add cscope database or a directory name (to look for cscope.out)
444 * to the cscope connection list.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100447cs_add(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448{
449 char *fname, *ppath, *flags = NULL;
450
451 if ((fname = strtok((char *)NULL, (const char *)" ")) == NULL)
452 {
453 cs_usage_msg(Add);
454 return CSCOPE_FAILURE;
455 }
456 if ((ppath = strtok((char *)NULL, (const char *)" ")) != NULL)
457 flags = strtok((char *)NULL, (const char *)" ");
458
459 return cs_add_common(fname, ppath, flags);
460}
461
462 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100463cs_stat_emsg(char *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464{
465 char *stat_emsg = _("E563: stat(%s) error: %d");
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200466 char *buf = alloc(strlen(stat_emsg) + MAXPATHL + 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467
468 if (buf != NULL)
469 {
470 (void)sprintf(buf, stat_emsg, fname, errno);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100471 (void)emsg(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472 vim_free(buf);
473 }
474 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100475 (void)emsg(_("E563: stat error"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476}
477
478
479/*
Bram Moolenaard4db7712016-11-12 19:16:46 +0100480 * The common routine to add a new cscope connection. Called by
481 * cs_add() and cs_reset(). I really don't like to do this, but this
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482 * routine uses a number of goto statements.
483 */
484 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100485cs_add_common(
486 char *arg1, /* filename - may contain environment variables */
487 char *arg2, /* prepend path - may contain environment variables */
488 char *flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489{
Bram Moolenaar8767f522016-07-01 17:17:39 +0200490 stat_T statbuf;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000491 int ret;
492 char *fname = NULL;
493 char *fname2 = NULL;
494 char *ppath = NULL;
495 int i;
Bram Moolenaarcab465a2013-06-12 21:25:23 +0200496 int len;
497 int usedlen = 0;
498 char_u *fbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499
500 /* get the filename (arg1), expand it, and try to stat it */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200501 if ((fname = alloc(MAXPATHL + 1)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502 goto add_err;
503
504 expand_env((char_u *)arg1, (char_u *)fname, MAXPATHL);
Bram Moolenaarcab465a2013-06-12 21:25:23 +0200505 len = (int)STRLEN(fname);
506 fbuf = (char_u *)fname;
Bram Moolenaar00136dc2018-07-25 21:19:13 +0200507 (void)modify_fname((char_u *)":p", FALSE, &usedlen,
Bram Moolenaarcab465a2013-06-12 21:25:23 +0200508 (char_u **)&fname, &fbuf, &len);
509 if (fname == NULL)
510 goto add_err;
511 fname = (char *)vim_strnsave((char_u *)fname, len);
512 vim_free(fbuf);
Bram Moolenaarb005cd82019-09-04 15:54:55 +0200513
Bram Moolenaar8767f522016-07-01 17:17:39 +0200514 ret = mch_stat(fname, &statbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000515 if (ret < 0)
516 {
517staterr:
518 if (p_csverbose)
519 cs_stat_emsg(fname);
520 goto add_err;
521 }
522
523 /* get the prepend path (arg2), expand it, and try to stat it */
524 if (arg2 != NULL)
525 {
Bram Moolenaar8767f522016-07-01 17:17:39 +0200526 stat_T statbuf2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200528 if ((ppath = alloc(MAXPATHL + 1)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529 goto add_err;
530
531 expand_env((char_u *)arg2, (char_u *)ppath, MAXPATHL);
Bram Moolenaar8767f522016-07-01 17:17:39 +0200532 ret = mch_stat(ppath, &statbuf2);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533 if (ret < 0)
534 goto staterr;
535 }
536
537 /* if filename is a directory, append the cscope database name to it */
Bram Moolenaard569bb02018-08-11 13:57:20 +0200538 if (S_ISDIR(statbuf.st_mode))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200540 fname2 = alloc(strlen(CSCOPE_DBFILE) + strlen(fname) + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541 if (fname2 == NULL)
542 goto add_err;
543
544 while (fname[strlen(fname)-1] == '/'
Bram Moolenaar4f974752019-02-17 17:44:42 +0100545#ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546 || fname[strlen(fname)-1] == '\\'
547#endif
548 )
549 {
550 fname[strlen(fname)-1] = '\0';
Bram Moolenaar64404472010-06-26 06:24:45 +0200551 if (fname[0] == '\0')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 break;
553 }
554 if (fname[0] == '\0')
555 (void)sprintf(fname2, "/%s", CSCOPE_DBFILE);
556 else
557 (void)sprintf(fname2, "%s/%s", fname, CSCOPE_DBFILE);
558
Bram Moolenaar8767f522016-07-01 17:17:39 +0200559 ret = mch_stat(fname2, &statbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 if (ret < 0)
561 {
562 if (p_csverbose)
563 cs_stat_emsg(fname2);
564 goto add_err;
565 }
566
567 i = cs_insert_filelist(fname2, ppath, flags, &statbuf);
568 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 else if (S_ISREG(statbuf.st_mode) || S_ISLNK(statbuf.st_mode))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 {
571 i = cs_insert_filelist(fname, ppath, flags, &statbuf);
572 }
573 else
574 {
575 if (p_csverbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100576 (void)semsg(
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 _("E564: %s is not a directory or a valid cscope database"),
578 fname);
579 goto add_err;
580 }
581
582 if (i != -1)
583 {
584 if (cs_create_connection(i) == CSCOPE_FAILURE
585 || cs_read_prompt(i) == CSCOPE_FAILURE)
586 {
587 cs_release_csp(i, TRUE);
588 goto add_err;
589 }
590
591 if (p_csverbose)
592 {
593 msg_clr_eos();
Bram Moolenaar8820b482017-03-16 17:23:31 +0100594 (void)smsg_attr(HL_ATTR(HLF_R),
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100595 _("Added cscope database %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596 csinfo[i].fname);
597 }
598 }
599
600 vim_free(fname);
601 vim_free(fname2);
602 vim_free(ppath);
603 return CSCOPE_SUCCESS;
604
605add_err:
606 vim_free(fname2);
607 vim_free(fname);
608 vim_free(ppath);
609 return CSCOPE_FAILURE;
610} /* cs_add_common */
611
612
613 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100614cs_check_for_connections(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615{
616 return (cs_cnt_connections() > 0);
617} /* cs_check_for_connections */
618
619
620 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100621cs_check_for_tags(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622{
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000623 return (p_tags[0] != NUL && curbuf->b_p_tags != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624} /* cs_check_for_tags */
625
626
627/*
Bram Moolenaard4db7712016-11-12 19:16:46 +0100628 * Count the number of cscope connections.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629 */
630 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100631cs_cnt_connections(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632{
633 short i;
634 short cnt = 0;
635
Bram Moolenaar9fa49da2009-07-10 13:11:26 +0000636 for (i = 0; i < csinfo_size; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637 {
638 if (csinfo[i].fname != NULL)
639 cnt++;
640 }
641 return cnt;
642} /* cs_cnt_connections */
643
644 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100645cs_reading_emsg(
646 int idx) /* connection index */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647{
Bram Moolenaarb5443cc2019-01-15 20:19:40 +0100648 semsg(_("E262: error reading cscope connection %d"), idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649}
650
651#define CSREAD_BUFSIZE 2048
652/*
Bram Moolenaard4db7712016-11-12 19:16:46 +0100653 * Count the number of matches for a given cscope connection.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654 */
655 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100656cs_cnt_matches(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657{
658 char *stok;
659 char *buf;
Bram Moolenaar1274d332018-01-30 21:47:52 +0100660 int nlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200662 buf = alloc(CSREAD_BUFSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663 if (buf == NULL)
664 return 0;
665 for (;;)
666 {
667 if (!fgets(buf, CSREAD_BUFSIZE, csinfo[idx].fr_fp))
668 {
669 if (feof(csinfo[idx].fr_fp))
670 errno = EIO;
671
672 cs_reading_emsg(idx);
673
674 vim_free(buf);
675 return -1;
676 }
677
678 /*
679 * If the database is out of date, or there's some other problem,
680 * cscope will output error messages before the number-of-lines output.
681 * Display/discard any output that doesn't match what we want.
Bram Moolenaar84c4d792007-01-16 14:18:41 +0000682 * Accept "\S*cscope: X lines", also matches "mlcscope".
Bram Moolenaar1274d332018-01-30 21:47:52 +0100683 * Bail out for the "Unable to search" error.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 */
Bram Moolenaara172b632018-01-30 22:52:06 +0100685 if (strstr((const char *)buf, "Unable to search database") != NULL)
Bram Moolenaar1274d332018-01-30 21:47:52 +0100686 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 if ((stok = strtok(buf, (const char *)" ")) == NULL)
688 continue;
Bram Moolenaar84c4d792007-01-16 14:18:41 +0000689 if (strstr((const char *)stok, "cscope:") == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 continue;
691
692 if ((stok = strtok(NULL, (const char *)" ")) == NULL)
693 continue;
694 nlines = atoi(stok);
695 if (nlines < 0)
696 {
697 nlines = 0;
698 break;
699 }
700
701 if ((stok = strtok(NULL, (const char *)" ")) == NULL)
702 continue;
703 if (strncmp((const char *)stok, "lines", 5))
704 continue;
705
706 break;
707 }
708
709 vim_free(buf);
710 return nlines;
711} /* cs_cnt_matches */
712
713
714/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715 * Creates the actual cscope command query from what the user entered.
716 */
717 static char *
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100718cs_create_cmd(char *csoption, char *pattern)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719{
720 char *cmd;
721 short search;
Bram Moolenaar80b6a0e2009-03-18 13:32:24 +0000722 char *pat;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723
724 switch (csoption[0])
725 {
726 case '0' : case 's' :
727 search = 0;
728 break;
729 case '1' : case 'g' :
730 search = 1;
731 break;
732 case '2' : case 'd' :
733 search = 2;
734 break;
735 case '3' : case 'c' :
736 search = 3;
737 break;
738 case '4' : case 't' :
739 search = 4;
740 break;
741 case '6' : case 'e' :
742 search = 6;
743 break;
744 case '7' : case 'f' :
745 search = 7;
746 break;
747 case '8' : case 'i' :
748 search = 8;
749 break;
Bram Moolenaarb12e7ef2016-06-21 23:42:20 +0200750 case '9' : case 'a' :
751 search = 9;
752 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 default :
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100754 (void)emsg(_("E561: unknown cscope search type"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 cs_usage_msg(Find);
756 return NULL;
757 }
758
Bram Moolenaar80b6a0e2009-03-18 13:32:24 +0000759 /* Skip white space before the patter, except for text and pattern search,
760 * they may want to use the leading white space. */
761 pat = pattern;
762 if (search != 4 && search != 6)
Bram Moolenaar1c465442017-03-12 20:10:05 +0100763 while VIM_ISWHITE(*pat)
Bram Moolenaar80b6a0e2009-03-18 13:32:24 +0000764 ++pat;
765
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200766 if ((cmd = alloc(strlen(pat) + 2)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 return NULL;
768
Bram Moolenaar80b6a0e2009-03-18 13:32:24 +0000769 (void)sprintf(cmd, "%d%s", search, pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770
771 return cmd;
772} /* cs_create_cmd */
773
774
775/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776 * This piece of code was taken/adapted from nvi. do we need to add
777 * the BSD license notice?
778 */
779 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100780cs_create_connection(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781{
Bram Moolenaar02b06312007-09-06 15:39:22 +0000782#ifdef UNIX
783 int to_cs[2], from_cs[2];
784#endif
785 int len;
786 char *prog, *cmd, *ppath = NULL;
Bram Moolenaar4f974752019-02-17 17:44:42 +0100787#ifdef MSWIN
Bram Moolenaar02b06312007-09-06 15:39:22 +0000788 int fd;
789 SECURITY_ATTRIBUTES sa;
790 PROCESS_INFORMATION pi;
791 STARTUPINFO si;
792 BOOL pipe_stdin = FALSE, pipe_stdout = FALSE;
793 HANDLE stdin_rd, stdout_rd;
794 HANDLE stdout_wr, stdin_wr;
795 BOOL created;
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200796# if (defined(_MSC_VER) && (_MSC_VER >= 1300)) || defined(__MINGW32__)
797# define OPEN_OH_ARGTYPE intptr_t
Bram Moolenaar5365c4d2007-09-14 17:56:59 +0000798# else
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200799# define OPEN_OH_ARGTYPE long
Bram Moolenaar5365c4d2007-09-14 17:56:59 +0000800# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801#endif
802
Bram Moolenaar02b06312007-09-06 15:39:22 +0000803#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804 /*
805 * Cscope reads from to_cs[0] and writes to from_cs[1]; vi reads from
806 * from_cs[0] and writes to to_cs[1].
807 */
808 to_cs[0] = to_cs[1] = from_cs[0] = from_cs[1] = -1;
809 if (pipe(to_cs) < 0 || pipe(from_cs) < 0)
810 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100811 (void)emsg(_("E566: Could not create cscope pipes"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812err_closing:
813 if (to_cs[0] != -1)
814 (void)close(to_cs[0]);
815 if (to_cs[1] != -1)
816 (void)close(to_cs[1]);
817 if (from_cs[0] != -1)
818 (void)close(from_cs[0]);
819 if (from_cs[1] != -1)
820 (void)close(from_cs[1]);
821 return CSCOPE_FAILURE;
822 }
823
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 switch (csinfo[i].pid = fork())
825 {
826 case -1:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100827 (void)emsg(_("E622: Could not fork for cscope"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 goto err_closing;
829 case 0: /* child: run cscope. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 if (dup2(to_cs[0], STDIN_FILENO) == -1)
831 PERROR("cs_create_connection 1");
832 if (dup2(from_cs[1], STDOUT_FILENO) == -1)
833 PERROR("cs_create_connection 2");
834 if (dup2(from_cs[1], STDERR_FILENO) == -1)
835 PERROR("cs_create_connection 3");
836
837 /* close unused */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 (void)close(to_cs[1]);
839 (void)close(from_cs[0]);
840#else
Bram Moolenaar4f974752019-02-17 17:44:42 +0100841 /* MSWIN */
Bram Moolenaar02b06312007-09-06 15:39:22 +0000842 /* Create pipes to communicate with cscope */
843 sa.nLength = sizeof(SECURITY_ATTRIBUTES);
844 sa.bInheritHandle = TRUE;
845 sa.lpSecurityDescriptor = NULL;
846
847 if (!(pipe_stdin = CreatePipe(&stdin_rd, &stdin_wr, &sa, 0))
848 || !(pipe_stdout = CreatePipe(&stdout_rd, &stdout_wr, &sa, 0)))
849 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100850 (void)emsg(_("E566: Could not create cscope pipes"));
Bram Moolenaar02b06312007-09-06 15:39:22 +0000851err_closing:
852 if (pipe_stdin)
853 {
854 CloseHandle(stdin_rd);
855 CloseHandle(stdin_wr);
856 }
857 if (pipe_stdout)
858 {
859 CloseHandle(stdout_rd);
860 CloseHandle(stdout_wr);
861 }
862 return CSCOPE_FAILURE;
863 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864#endif
865 /* expand the cscope exec for env var's */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200866 if ((prog = alloc(MAXPATHL + 1)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 {
868#ifdef UNIX
869 return CSCOPE_FAILURE;
870#else
Bram Moolenaar4f974752019-02-17 17:44:42 +0100871 /* MSWIN */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872 goto err_closing;
873#endif
874 }
875 expand_env((char_u *)p_csprg, (char_u *)prog, MAXPATHL);
876
877 /* alloc space to hold the cscope command */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000878 len = (int)(strlen(prog) + strlen(csinfo[i].fname) + 32);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879 if (csinfo[i].ppath)
880 {
881 /* expand the prepend path for env var's */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200882 if ((ppath = alloc(MAXPATHL + 1)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883 {
884 vim_free(prog);
885#ifdef UNIX
886 return CSCOPE_FAILURE;
887#else
Bram Moolenaar4f974752019-02-17 17:44:42 +0100888 /* MSWIN */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 goto err_closing;
890#endif
891 }
892 expand_env((char_u *)csinfo[i].ppath, (char_u *)ppath, MAXPATHL);
893
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000894 len += (int)strlen(ppath);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 }
896
897 if (csinfo[i].flags)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000898 len += (int)strlen(csinfo[i].flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200900 if ((cmd = alloc(len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901 {
902 vim_free(prog);
903 vim_free(ppath);
904#ifdef UNIX
905 return CSCOPE_FAILURE;
906#else
Bram Moolenaar4f974752019-02-17 17:44:42 +0100907 /* MSWIN */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 goto err_closing;
909#endif
910 }
911
912 /* run the cscope command; is there execl for non-unix systems? */
913#if defined(UNIX)
914 (void)sprintf(cmd, "exec %s -dl -f %s", prog, csinfo[i].fname);
915#else
Bram Moolenaar4f974752019-02-17 17:44:42 +0100916 /* MSWIN */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 (void)sprintf(cmd, "%s -dl -f %s", prog, csinfo[i].fname);
918#endif
919 if (csinfo[i].ppath != NULL)
920 {
921 (void)strcat(cmd, " -P");
922 (void)strcat(cmd, csinfo[i].ppath);
923 }
924 if (csinfo[i].flags != NULL)
925 {
926 (void)strcat(cmd, " ");
927 (void)strcat(cmd, csinfo[i].flags);
928 }
929# ifdef UNIX
930 /* on Win32 we still need prog */
931 vim_free(prog);
932# endif
933 vim_free(ppath);
934
935#if defined(UNIX)
Bram Moolenaar85e932f2013-06-30 15:01:22 +0200936# if defined(HAVE_SETSID) || defined(HAVE_SETPGID)
937 /* Change our process group to avoid cscope receiving SIGWINCH. */
938# if defined(HAVE_SETSID)
939 (void)setsid();
940# else
941 if (setpgid(0, 0) == -1)
942 PERROR(_("cs_create_connection setpgid failed"));
943# endif
944# endif
Bram Moolenaar856b9fe2009-05-16 14:16:02 +0000945 if (execl("/bin/sh", "sh", "-c", cmd, (char *)NULL) == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 PERROR(_("cs_create_connection exec failed"));
947
948 exit(127);
949 /* NOTREACHED */
950 default: /* parent. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951 /*
952 * Save the file descriptors for later duplication, and
953 * reopen as streams.
954 */
955 if ((csinfo[i].to_fp = fdopen(to_cs[1], "w")) == NULL)
956 PERROR(_("cs_create_connection: fdopen for to_fp failed"));
957 if ((csinfo[i].fr_fp = fdopen(from_cs[0], "r")) == NULL)
958 PERROR(_("cs_create_connection: fdopen for fr_fp failed"));
959
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960 /* close unused */
961 (void)close(to_cs[0]);
962 (void)close(from_cs[1]);
963
964 break;
965 }
Bram Moolenaar02b06312007-09-06 15:39:22 +0000966
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967#else
Bram Moolenaar4f974752019-02-17 17:44:42 +0100968 /* MSWIN */
Bram Moolenaar02b06312007-09-06 15:39:22 +0000969 /* Create a new process to run cscope and use pipes to talk with it */
970 GetStartupInfo(&si);
971 si.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
972 si.wShowWindow = SW_HIDE; /* Hide child application window */
973 si.hStdOutput = stdout_wr;
974 si.hStdError = stdout_wr;
975 si.hStdInput = stdin_rd;
976 created = CreateProcess(NULL, cmd, NULL, NULL, TRUE, CREATE_NEW_CONSOLE,
977 NULL, NULL, &si, &pi);
978 vim_free(prog);
979 vim_free(cmd);
980
981 if (!created)
982 {
983 PERROR(_("cs_create_connection exec failed"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100984 (void)emsg(_("E623: Could not spawn cscope process"));
Bram Moolenaar02b06312007-09-06 15:39:22 +0000985 goto err_closing;
986 }
987 /* else */
988 csinfo[i].pid = pi.dwProcessId;
989 csinfo[i].hProc = pi.hProcess;
990 CloseHandle(pi.hThread);
991
992 /* TODO - tidy up after failure to create files on pipe handles. */
Bram Moolenaar5365c4d2007-09-14 17:56:59 +0000993 if (((fd = _open_osfhandle((OPEN_OH_ARGTYPE)stdin_wr,
994 _O_TEXT|_O_APPEND)) < 0)
Bram Moolenaar02b06312007-09-06 15:39:22 +0000995 || ((csinfo[i].to_fp = _fdopen(fd, "w")) == NULL))
996 PERROR(_("cs_create_connection: fdopen for to_fp failed"));
Bram Moolenaar5365c4d2007-09-14 17:56:59 +0000997 if (((fd = _open_osfhandle((OPEN_OH_ARGTYPE)stdout_rd,
998 _O_TEXT|_O_RDONLY)) < 0)
Bram Moolenaar02b06312007-09-06 15:39:22 +0000999 || ((csinfo[i].fr_fp = _fdopen(fd, "r")) == NULL))
1000 PERROR(_("cs_create_connection: fdopen for fr_fp failed"));
1001
1002 /* Close handles for file descriptors inherited by the cscope process */
1003 CloseHandle(stdin_rd);
1004 CloseHandle(stdout_wr);
1005
1006#endif /* !UNIX */
1007
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008 return CSCOPE_SUCCESS;
1009} /* cs_create_connection */
1010
1011
1012/*
Bram Moolenaarcde88542015-08-11 19:14:00 +02001013 * Query cscope using command line interface. Parse the output and use tselect
1014 * to allow choices. Like Nvi, creates a pipe to send to/from query/cscope.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 *
1016 * returns TRUE if we jump to a tag or abort, FALSE if not.
1017 */
1018 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001019cs_find(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020{
1021 char *opt, *pat;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02001022 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023
1024 if (cs_check_for_connections() == FALSE)
1025 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001026 (void)emsg(_("E567: no cscope connections"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027 return FALSE;
1028 }
1029
1030 if ((opt = strtok((char *)NULL, (const char *)" ")) == NULL)
1031 {
1032 cs_usage_msg(Find);
1033 return FALSE;
1034 }
1035
1036 pat = opt + strlen(opt) + 1;
Bram Moolenaard2ac9842007-08-21 16:03:51 +00001037 if (pat >= (char *)eap->arg + eap_arg_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 {
1039 cs_usage_msg(Find);
1040 return FALSE;
1041 }
1042
Bram Moolenaar7fd73202010-07-25 16:58:46 +02001043 /*
1044 * Let's replace the NULs written by strtok() with spaces - we need the
1045 * spaces to correctly display the quickfix/location list window's title.
1046 */
1047 for (i = 0; i < eap_arg_len; ++i)
1048 if (NUL == eap->arg[i])
1049 eap->arg[i] = ' ';
1050
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001051 return cs_find_common(opt, pat, eap->forceit, TRUE,
Bram Moolenaar7fd73202010-07-25 16:58:46 +02001052 eap->cmdidx == CMD_lcscope, *eap->cmdlinep);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053} /* cs_find */
1054
1055
1056/*
Bram Moolenaard4db7712016-11-12 19:16:46 +01001057 * Common code for cscope find, shared by cs_find() and ex_cstag().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 */
1059 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001060cs_find_common(
1061 char *opt,
1062 char *pat,
1063 int forceit,
1064 int verbose,
1065 int use_ll UNUSED,
1066 char_u *cmdline UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067{
1068 int i;
1069 char *cmd;
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001070 int *nummatches;
1071 int totmatches;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072#ifdef FEAT_QUICKFIX
1073 char cmdletter;
1074 char *qfpos;
Bram Moolenaarf1eeae92010-05-14 23:14:42 +02001075
1076 /* get cmd letter */
1077 switch (opt[0])
1078 {
1079 case '0' :
1080 cmdletter = 's';
1081 break;
1082 case '1' :
1083 cmdletter = 'g';
1084 break;
1085 case '2' :
1086 cmdletter = 'd';
1087 break;
1088 case '3' :
1089 cmdletter = 'c';
1090 break;
1091 case '4' :
1092 cmdletter = 't';
1093 break;
1094 case '6' :
1095 cmdletter = 'e';
1096 break;
1097 case '7' :
1098 cmdletter = 'f';
1099 break;
1100 case '8' :
1101 cmdletter = 'i';
1102 break;
Bram Moolenaarb12e7ef2016-06-21 23:42:20 +02001103 case '9' :
1104 cmdletter = 'a';
1105 break;
Bram Moolenaarf1eeae92010-05-14 23:14:42 +02001106 default :
1107 cmdletter = opt[0];
1108 }
1109
1110 qfpos = (char *)vim_strchr(p_csqf, cmdletter);
1111 if (qfpos != NULL)
1112 {
1113 qfpos++;
1114 /* next symbol must be + or - */
1115 if (strchr(CSQF_FLAGS, *qfpos) == NULL)
1116 {
1117 char *nf = _("E469: invalid cscopequickfix flag %c for %c");
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001118 char *buf = alloc(strlen(nf));
Bram Moolenaarf1eeae92010-05-14 23:14:42 +02001119
1120 /* strlen will be enough because we use chars */
1121 if (buf != NULL)
1122 {
1123 sprintf(buf, nf, *qfpos, *(qfpos-1));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001124 (void)emsg(buf);
Bram Moolenaarf1eeae92010-05-14 23:14:42 +02001125 vim_free(buf);
1126 }
1127 return FALSE;
1128 }
1129
Bram Moolenaar21662be2016-11-06 14:46:44 +01001130 if (*qfpos != '0'
1131 && apply_autocmds(EVENT_QUICKFIXCMDPRE, (char_u *)"cscope",
1132 curbuf->b_fname, TRUE, curbuf))
Bram Moolenaarf1eeae92010-05-14 23:14:42 +02001133 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001134# ifdef FEAT_EVAL
Bram Moolenaar21662be2016-11-06 14:46:44 +01001135 if (aborting())
Bram Moolenaarf1eeae92010-05-14 23:14:42 +02001136 return FALSE;
Bram Moolenaarf1eeae92010-05-14 23:14:42 +02001137# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001138 }
Bram Moolenaarf1eeae92010-05-14 23:14:42 +02001139 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140#endif
1141
1142 /* create the actual command to send to cscope */
1143 cmd = cs_create_cmd(opt, pat);
1144 if (cmd == NULL)
1145 return FALSE;
1146
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001147 nummatches = ALLOC_MULT(int, csinfo_size);
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001148 if (nummatches == NULL)
Bram Moolenaarcde88542015-08-11 19:14:00 +02001149 {
1150 vim_free(cmd);
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001151 return FALSE;
Bram Moolenaarcde88542015-08-11 19:14:00 +02001152 }
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001153
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001154 /* Send query to all open connections, then count the total number
1155 * of matches so we can alloc all in one swell foop. */
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001156 for (i = 0; i < csinfo_size; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 nummatches[i] = 0;
1158 totmatches = 0;
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001159 for (i = 0; i < csinfo_size; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 {
Bram Moolenaar508b9e82006-11-21 10:43:23 +00001161 if (csinfo[i].fname == NULL || csinfo[i].to_fp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 continue;
1163
1164 /* send cmd to cscope */
1165 (void)fprintf(csinfo[i].to_fp, "%s\n", cmd);
1166 (void)fflush(csinfo[i].to_fp);
1167
1168 nummatches[i] = cs_cnt_matches(i);
1169
1170 if (nummatches[i] > -1)
1171 totmatches += nummatches[i];
1172
1173 if (nummatches[i] == 0)
1174 (void)cs_read_prompt(i);
1175 }
1176 vim_free(cmd);
1177
1178 if (totmatches == 0)
1179 {
1180 char *nf = _("E259: no matches found for cscope query %s of %s");
1181 char *buf;
1182
1183 if (!verbose)
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001184 {
1185 vim_free(nummatches);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 return FALSE;
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001187 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001189 buf = alloc(strlen(opt) + strlen(pat) + strlen(nf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 if (buf == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001191 (void)emsg(nf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 else
1193 {
1194 sprintf(buf, nf, opt, pat);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001195 (void)emsg(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 vim_free(buf);
1197 }
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001198 vim_free(nummatches);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 return FALSE;
1200 }
1201
1202#ifdef FEAT_QUICKFIX
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001203 if (qfpos != NULL && *qfpos != '0' && totmatches > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 {
1205 /* fill error list */
Bram Moolenaar0cae8472006-10-30 21:32:28 +00001206 FILE *f;
Bram Moolenaare5c421c2015-03-31 13:33:08 +02001207 char_u *tmp = vim_tempname('c', TRUE);
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001208 qf_info_T *qi = NULL;
1209 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001211 f = mch_fopen((char *)tmp, "w");
Bram Moolenaar0cae8472006-10-30 21:32:28 +00001212 if (f == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001213 semsg(_(e_notopen), tmp);
Bram Moolenaar0cae8472006-10-30 21:32:28 +00001214 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 {
Bram Moolenaar0cae8472006-10-30 21:32:28 +00001216 cs_file_results(f, nummatches);
1217 fclose(f);
1218 if (use_ll) /* Use location list */
1219 wp = curwin;
1220 /* '-' starts a new error list */
1221 if (qf_init(wp, tmp, (char_u *)"%f%*\\t%l%*\\t%m",
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01001222 *qfpos == '-', cmdline, NULL) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 {
Bram Moolenaar0cae8472006-10-30 21:32:28 +00001224 if (postponed_split != 0)
1225 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02001226 (void)win_split(postponed_split > 0 ? postponed_split : 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 postponed_split_flags);
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001228 RESET_BINDING(curwin);
Bram Moolenaar0cae8472006-10-30 21:32:28 +00001229 postponed_split = 0;
1230 }
Bram Moolenaarf1eeae92010-05-14 23:14:42 +02001231
Bram Moolenaarf1eeae92010-05-14 23:14:42 +02001232 apply_autocmds(EVENT_QUICKFIXCMDPOST, (char_u *)"cscope",
1233 curbuf->b_fname, TRUE, curbuf);
Bram Moolenaar0cae8472006-10-30 21:32:28 +00001234 if (use_ll)
1235 /*
1236 * In the location list window, use the displayed location
1237 * list. Otherwise, use the location list for the window.
1238 */
1239 qi = (bt_quickfix(wp->w_buffer) && wp->w_llist_ref != NULL)
1240 ? wp->w_llist_ref : wp->w_llist;
1241 qf_jump(qi, 0, 0, forceit);
1242 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 }
1244 mch_remove(tmp);
1245 vim_free(tmp);
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001246 vim_free(nummatches);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 return TRUE;
1248 }
1249 else
1250#endif /* FEAT_QUICKFIX */
1251 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001252 char **matches = NULL, **contexts = NULL;
1253 int matched = 0;
1254
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 /* read output */
1256 cs_fill_results((char *)pat, totmatches, nummatches, &matches,
1257 &contexts, &matched);
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001258 vim_free(nummatches);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 if (matches == NULL)
1260 return FALSE;
1261
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001262 (void)cs_manage_matches(matches, contexts, matched, Store);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263
1264 return do_tag((char_u *)pat, DT_CSCOPE, 0, forceit, verbose);
1265 }
1266
1267} /* cs_find_common */
1268
1269/*
Bram Moolenaard4db7712016-11-12 19:16:46 +01001270 * Print help.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001273cs_help(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274{
1275 cscmd_T *cmdp = cs_cmds;
1276
Bram Moolenaar32526b32019-01-19 17:43:09 +01001277 (void)msg_puts(_("cscope commands:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 while (cmdp->name != NULL)
1279 {
Bram Moolenaardb867d52009-01-28 15:04:42 +00001280 char *help = _(cmdp->help);
1281 int space_cnt = 30 - vim_strsize((char_u *)help);
1282
1283 /* Use %*s rather than %30s to ensure proper alignment in utf-8 */
1284 if (space_cnt < 0)
1285 space_cnt = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001286 (void)smsg(_("%-5s: %s%*s (Usage: %s)"),
Bram Moolenaardb867d52009-01-28 15:04:42 +00001287 cmdp->name,
1288 help, space_cnt, " ",
1289 cmdp->usage);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290 if (strcmp(cmdp->name, "find") == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001291 msg_puts(_("\n"
Bram Moolenaar80632db2016-07-05 22:28:40 +02001292 " a: Find assignments to this symbol\n"
Bram Moolenaar627943d2008-08-25 02:35:59 +00001293 " c: Find functions calling this function\n"
1294 " d: Find functions called by this function\n"
1295 " e: Find this egrep pattern\n"
1296 " f: Find this file\n"
1297 " g: Find this definition\n"
1298 " i: Find files #including this file\n"
1299 " s: Find this C symbol\n"
Bram Moolenaar80632db2016-07-05 22:28:40 +02001300 " t: Find this text string\n"));
Bram Moolenaar627943d2008-08-25 02:35:59 +00001301
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302 cmdp++;
1303 }
1304
1305 wait_return(TRUE);
1306 return 0;
1307} /* cs_help */
1308
1309
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001311clear_csinfo(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312{
1313 csinfo[i].fname = NULL;
1314 csinfo[i].ppath = NULL;
1315 csinfo[i].flags = NULL;
1316#if defined(UNIX)
1317 csinfo[i].st_dev = (dev_t)0;
1318 csinfo[i].st_ino = (ino_t)0;
1319#else
1320 csinfo[i].nVolume = 0;
1321 csinfo[i].nIndexHigh = 0;
1322 csinfo[i].nIndexLow = 0;
1323#endif
Bram Moolenaar446cb832008-06-24 21:56:24 +00001324 csinfo[i].pid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 csinfo[i].fr_fp = NULL;
1326 csinfo[i].to_fp = NULL;
Bram Moolenaar4f974752019-02-17 17:44:42 +01001327#if defined(MSWIN)
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001328 csinfo[i].hProc = NULL;
1329#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330}
1331
1332#ifndef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 static char *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001334GetWin32Error(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335{
1336 char *msg = NULL;
1337 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER|FORMAT_MESSAGE_FROM_SYSTEM,
1338 NULL, GetLastError(), 0, (LPSTR)&msg, 0, NULL);
1339 if (msg != NULL)
1340 {
1341 /* remove trailing \r\n */
1342 char *pcrlf = strstr(msg, "\r\n");
1343 if (pcrlf != NULL)
1344 *pcrlf = '\0';
1345 }
1346 return msg;
1347}
1348#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001349
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350/*
Bram Moolenaard4db7712016-11-12 19:16:46 +01001351 * Insert a new cscope database filename into the filelist.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 */
1353 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001354cs_insert_filelist(
1355 char *fname,
1356 char *ppath,
1357 char *flags,
Bram Moolenaar8767f522016-07-01 17:17:39 +02001358 stat_T *sb UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359{
1360 short i, j;
1361#ifndef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 BY_HANDLE_FILE_INFORMATION bhfi;
1363
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001364 switch (win32_fileinfo((char_u *)fname, &bhfi))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 {
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02001366 case FILEINFO_ENC_FAIL: /* enc_to_utf16() failed */
1367 case FILEINFO_READ_FAIL: /* CreateFile() failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 if (p_csverbose)
1369 {
1370 char *cant_msg = _("E625: cannot open cscope database: %s");
1371 char *winmsg = GetWin32Error();
1372
1373 if (winmsg != NULL)
1374 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001375 (void)semsg(cant_msg, winmsg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 LocalFree(winmsg);
1377 }
1378 else
1379 /* subst filename if can't get error text */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001380 (void)semsg(cant_msg, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 }
1382 return -1;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02001383
1384 case FILEINFO_INFO_FAIL: /* GetFileInformationByHandle() failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 if (p_csverbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001386 (void)emsg(_("E626: cannot get cscope database information"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 }
1389#endif
1390
1391 i = -1; /* can be set to the index of an empty item in csinfo */
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001392 for (j = 0; j < csinfo_size; j++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 {
1394 if (csinfo[j].fname != NULL
1395#if defined(UNIX)
1396 && csinfo[j].st_dev == sb->st_dev && csinfo[j].st_ino == sb->st_ino
1397#else
Bram Moolenaar99499b12019-05-23 21:35:48 +02001398 // compare pathnames first
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001399 && ((fullpathcmp((char_u *)csinfo[j].fname,
Bram Moolenaar99499b12019-05-23 21:35:48 +02001400 (char_u *)fname, FALSE, TRUE) & FPC_SAME)
1401 // test index file attributes too
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001402 || (csinfo[j].nVolume == bhfi.dwVolumeSerialNumber
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 && csinfo[j].nIndexHigh == bhfi.nFileIndexHigh
1404 && csinfo[j].nIndexLow == bhfi.nFileIndexLow))
1405#endif
1406 )
1407 {
1408 if (p_csverbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001409 (void)emsg(_("E568: duplicate cscope database not added"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 return -1;
1411 }
1412
1413 if (csinfo[j].fname == NULL && i == -1)
1414 i = j; /* remember first empty entry */
1415 }
1416
1417 if (i == -1)
1418 {
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001419 i = csinfo_size;
1420 if (csinfo_size == 0)
1421 {
1422 /* First time allocation: allocate only 1 connection. It should
1423 * be enough for most users. If more is needed, csinfo will be
1424 * reallocated. */
1425 csinfo_size = 1;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001426 csinfo = ALLOC_CLEAR_ONE(csinfo_T);
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001427 }
1428 else
1429 {
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01001430 csinfo_T *t_csinfo = csinfo;
1431
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001432 /* Reallocate space for more connections. */
1433 csinfo_size *= 2;
1434 csinfo = vim_realloc(csinfo, sizeof(csinfo_T)*csinfo_size);
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01001435 if (csinfo == NULL)
1436 {
1437 vim_free(t_csinfo);
1438 csinfo_size = 0;
1439 }
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001440 }
1441 if (csinfo == NULL)
1442 return -1;
1443 for (j = csinfo_size/2; j < csinfo_size; j++)
1444 clear_csinfo(j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445 }
1446
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001447 if ((csinfo[i].fname = alloc(strlen(fname)+1)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 return -1;
1449
1450 (void)strcpy(csinfo[i].fname, (const char *)fname);
1451
1452 if (ppath != NULL)
1453 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001454 if ((csinfo[i].ppath = alloc(strlen(ppath) + 1)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01001456 VIM_CLEAR(csinfo[i].fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 return -1;
1458 }
1459 (void)strcpy(csinfo[i].ppath, (const char *)ppath);
1460 } else
1461 csinfo[i].ppath = NULL;
1462
1463 if (flags != NULL)
1464 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001465 if ((csinfo[i].flags = alloc(strlen(flags) + 1)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01001467 VIM_CLEAR(csinfo[i].fname);
1468 VIM_CLEAR(csinfo[i].ppath);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469 return -1;
1470 }
1471 (void)strcpy(csinfo[i].flags, (const char *)flags);
1472 } else
1473 csinfo[i].flags = NULL;
1474
1475#if defined(UNIX)
1476 csinfo[i].st_dev = sb->st_dev;
1477 csinfo[i].st_ino = sb->st_ino;
1478
1479#else
1480 csinfo[i].nVolume = bhfi.dwVolumeSerialNumber;
1481 csinfo[i].nIndexLow = bhfi.nFileIndexLow;
1482 csinfo[i].nIndexHigh = bhfi.nFileIndexHigh;
1483#endif
1484 return i;
1485} /* cs_insert_filelist */
1486
1487
1488/*
Bram Moolenaard4db7712016-11-12 19:16:46 +01001489 * Find cscope command in command table.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 */
1491 static cscmd_T *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001492cs_lookup_cmd(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493{
1494 cscmd_T *cmdp;
1495 char *stok;
1496 size_t len;
1497
1498 if (eap->arg == NULL)
1499 return NULL;
1500
Bram Moolenaard2ac9842007-08-21 16:03:51 +00001501 /* Store length of eap->arg before it gets modified by strtok(). */
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001502 eap_arg_len = (int)STRLEN(eap->arg);
Bram Moolenaard2ac9842007-08-21 16:03:51 +00001503
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 if ((stok = strtok((char *)(eap->arg), (const char *)" ")) == NULL)
1505 return NULL;
1506
1507 len = strlen(stok);
1508 for (cmdp = cs_cmds; cmdp->name != NULL; ++cmdp)
1509 {
1510 if (strncmp((const char *)(stok), cmdp->name, len) == 0)
1511 return (cmdp);
1512 }
1513 return NULL;
1514} /* cs_lookup_cmd */
1515
1516
1517/*
Bram Moolenaard4db7712016-11-12 19:16:46 +01001518 * Nuke em.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001521cs_kill(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522{
1523 char *stok;
1524 short i;
1525
1526 if ((stok = strtok((char *)NULL, (const char *)" ")) == NULL)
1527 {
1528 cs_usage_msg(Kill);
1529 return CSCOPE_FAILURE;
1530 }
1531
1532 /* only single digit positive and negative integers are allowed */
1533 if ((strlen(stok) < 2 && VIM_ISDIGIT((int)(stok[0])))
1534 || (strlen(stok) < 3 && stok[0] == '-'
1535 && VIM_ISDIGIT((int)(stok[1]))))
1536 i = atoi(stok);
1537 else
1538 {
1539 /* It must be part of a name. We will try to find a match
1540 * within all the names in the csinfo data structure
1541 */
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001542 for (i = 0; i < csinfo_size; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 {
1544 if (csinfo[i].fname != NULL && strstr(csinfo[i].fname, stok))
1545 break;
1546 }
1547 }
1548
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001549 if ((i != -1) && (i >= csinfo_size || i < -1 || csinfo[i].fname == NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 {
1551 if (p_csverbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001552 (void)semsg(_("E261: cscope connection %s not found"), stok);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 }
1554 else
1555 {
1556 if (i == -1)
1557 {
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001558 for (i = 0; i < csinfo_size; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 {
1560 if (csinfo[i].fname)
1561 cs_kill_execute(i, csinfo[i].fname);
1562 }
1563 }
1564 else
1565 cs_kill_execute(i, stok);
1566 }
1567
1568 return 0;
1569} /* cs_kill */
1570
1571
1572/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 * Actually kills a specific cscope connection.
1574 */
1575 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001576cs_kill_execute(
1577 int i, /* cscope table index */
1578 char *cname) /* cscope database name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579{
1580 if (p_csverbose)
1581 {
1582 msg_clr_eos();
Bram Moolenaar8820b482017-03-16 17:23:31 +01001583 (void)smsg_attr(HL_ATTR(HLF_R) | MSG_HIST,
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001584 _("cscope connection %s closed"), cname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 }
1586 cs_release_csp(i, TRUE);
1587}
1588
1589
1590/*
Bram Moolenaard4db7712016-11-12 19:16:46 +01001591 * Convert the cscope output into a ctags style entry (as might be found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 * in a ctags tags file). there's one catch though: cscope doesn't tell you
1593 * the type of the tag you are looking for. for example, in Darren Hiebert's
1594 * ctags (the one that comes with vim), #define's use a line number to find the
1595 * tag in a file while function definitions use a regexp search pattern.
1596 *
Bram Moolenaard4db7712016-11-12 19:16:46 +01001597 * I'm going to always use the line number because cscope does something
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 * quirky (and probably other things i don't know about):
1599 *
1600 * if you have "# define" in your source file, which is
1601 * perfectly legal, cscope thinks you have "#define". this
1602 * will result in a failed regexp search. :(
1603 *
Bram Moolenaard4db7712016-11-12 19:16:46 +01001604 * Besides, even if this particular case didn't happen, the search pattern
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 * would still have to be modified to escape all the special regular expression
1606 * characters to comply with ctags formatting.
1607 */
1608 static char *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001609cs_make_vim_style_matches(
1610 char *fname,
1611 char *slno,
1612 char *search,
1613 char *tagstr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614{
1615 /* vim style is ctags:
1616 *
1617 * <tagstr>\t<filename>\t<linenum_or_search>"\t<extra>
1618 *
1619 * but as mentioned above, we'll always use the line number and
1620 * put the search pattern (if one exists) as "extra"
1621 *
1622 * buf is used as part of vim's method of handling tags, and
1623 * (i think) vim frees it when you pop your tags and get replaced
1624 * by new ones on the tag stack.
1625 */
1626 char *buf;
1627 int amt;
1628
1629 if (search != NULL)
1630 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001631 amt = (int)(strlen(fname) + strlen(slno) + strlen(tagstr) + strlen(search)+6);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001632 if ((buf = alloc(amt)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 return NULL;
1634
1635 (void)sprintf(buf, "%s\t%s\t%s;\"\t%s", tagstr, fname, slno, search);
1636 }
1637 else
1638 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001639 amt = (int)(strlen(fname) + strlen(slno) + strlen(tagstr) + 5);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001640 if ((buf = alloc(amt)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 return NULL;
1642
1643 (void)sprintf(buf, "%s\t%s\t%s;\"", tagstr, fname, slno);
1644 }
1645
1646 return buf;
1647} /* cs_make_vim_style_matches */
1648
1649
1650/*
Bram Moolenaard4db7712016-11-12 19:16:46 +01001651 * This is kind of hokey, but i don't see an easy way round this.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 *
1653 * Store: keep a ptr to the (malloc'd) memory of matches originally
1654 * generated from cs_find(). the matches are originally lines directly
1655 * from cscope output, but transformed to look like something out of a
1656 * ctags. see cs_make_vim_style_matches for more details.
1657 *
1658 * Get: used only from cs_fgets(), this simulates a vim_fgets() to return
1659 * the next line from the cscope output. it basically keeps track of which
1660 * lines have been "used" and returns the next one.
1661 *
1662 * Free: frees up everything and resets
1663 *
1664 * Print: prints the tags
1665 */
1666 static char *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001667cs_manage_matches(
1668 char **matches,
1669 char **contexts,
1670 int totmatches,
1671 mcmd_e cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672{
1673 static char **mp = NULL;
1674 static char **cp = NULL;
1675 static int cnt = -1;
1676 static int next = -1;
1677 char *p = NULL;
1678
1679 switch (cmd)
1680 {
1681 case Store:
1682 assert(matches != NULL);
1683 assert(totmatches > 0);
1684 if (mp != NULL || cp != NULL)
1685 (void)cs_manage_matches(NULL, NULL, -1, Free);
1686 mp = matches;
1687 cp = contexts;
1688 cnt = totmatches;
1689 next = 0;
1690 break;
1691 case Get:
1692 if (next >= cnt)
1693 return NULL;
1694
1695 p = mp[next];
1696 next++;
1697 break;
1698 case Free:
1699 if (mp != NULL)
1700 {
1701 if (cnt > 0)
1702 while (cnt--)
1703 {
1704 vim_free(mp[cnt]);
1705 if (cp != NULL)
1706 vim_free(cp[cnt]);
1707 }
1708 vim_free(mp);
1709 vim_free(cp);
1710 }
1711 mp = NULL;
1712 cp = NULL;
1713 cnt = 0;
1714 next = 0;
1715 break;
1716 case Print:
1717 cs_print_tags_priv(mp, cp, cnt);
1718 break;
1719 default: /* should not reach here */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001720 iemsg(_("E570: fatal error in cs_manage_matches"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 return NULL;
1722 }
1723
1724 return p;
1725} /* cs_manage_matches */
1726
1727
1728/*
Bram Moolenaard4db7712016-11-12 19:16:46 +01001729 * Parse cscope output.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 */
1731 static char *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001732cs_parse_results(
1733 int cnumber,
1734 char *buf,
1735 int bufsize,
1736 char **context,
1737 char **linenumber,
1738 char **search)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739{
1740 int ch;
1741 char *p;
1742 char *name;
1743
1744 if (fgets(buf, bufsize, csinfo[cnumber].fr_fp) == NULL)
1745 {
1746 if (feof(csinfo[cnumber].fr_fp))
1747 errno = EIO;
1748
1749 cs_reading_emsg(cnumber);
1750
1751 return NULL;
1752 }
1753
1754 /* If the line's too long for the buffer, discard it. */
1755 if ((p = strchr(buf, '\n')) == NULL)
1756 {
1757 while ((ch = getc(csinfo[cnumber].fr_fp)) != EOF && ch != '\n')
1758 ;
1759 return NULL;
1760 }
1761 *p = '\0';
1762
1763 /*
1764 * cscope output is in the following format:
1765 *
1766 * <filename> <context> <line number> <pattern>
1767 */
1768 if ((name = strtok((char *)buf, (const char *)" ")) == NULL)
1769 return NULL;
1770 if ((*context = strtok(NULL, (const char *)" ")) == NULL)
1771 return NULL;
1772 if ((*linenumber = strtok(NULL, (const char *)" ")) == NULL)
1773 return NULL;
1774 *search = *linenumber + strlen(*linenumber) + 1; /* +1 to skip \0 */
1775
1776 /* --- nvi ---
1777 * If the file is older than the cscope database, that is,
1778 * the database was built since the file was last modified,
1779 * or there wasn't a search string, use the line number.
1780 */
1781 if (strcmp(*search, "<unknown>") == 0)
1782 *search = NULL;
1783
1784 name = cs_resolve_file(cnumber, name);
1785 return name;
1786}
1787
Bram Moolenaarc716c302006-01-21 22:12:51 +00001788#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789/*
Bram Moolenaard4db7712016-11-12 19:16:46 +01001790 * Write cscope find results to file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001791 */
1792 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001793cs_file_results(FILE *f, int *nummatches_a)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794{
1795 int i, j;
1796 char *buf;
1797 char *search, *slno;
1798 char *fullname;
1799 char *cntx;
1800 char *context;
1801
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001802 buf = alloc(CSREAD_BUFSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 if (buf == NULL)
1804 return;
1805
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001806 for (i = 0; i < csinfo_size; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 {
1808 if (nummatches_a[i] < 1)
1809 continue;
1810
1811 for (j = 0; j < nummatches_a[i]; j++)
1812 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001813 if ((fullname = cs_parse_results(i, buf, CSREAD_BUFSIZE, &cntx,
1814 &slno, &search)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 continue;
1816
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001817 context = alloc(strlen(cntx)+5);
Bram Moolenaar0cae8472006-10-30 21:32:28 +00001818 if (context == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819 continue;
1820
1821 if (strcmp(cntx, "<global>")==0)
1822 strcpy(context, "<<global>>");
1823 else
1824 sprintf(context, "<<%s>>", cntx);
1825
Bram Moolenaar0cae8472006-10-30 21:32:28 +00001826 if (search == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 fprintf(f, "%s\t%s\t%s\n", fullname, slno, context);
1828 else
1829 fprintf(f, "%s\t%s\t%s %s\n", fullname, slno, context, search);
1830
1831 vim_free(context);
1832 vim_free(fullname);
1833 } /* for all matches */
1834
1835 (void)cs_read_prompt(i);
1836
1837 } /* for all cscope connections */
1838 vim_free(buf);
1839}
Bram Moolenaarc716c302006-01-21 22:12:51 +00001840#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841
1842/*
Bram Moolenaard4db7712016-11-12 19:16:46 +01001843 * Get parsed cscope output and calls cs_make_vim_style_matches to convert
1844 * into ctags format.
Bram Moolenaard6f676d2005-06-01 21:51:55 +00001845 * When there are no matches sets "*matches_p" to NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 */
1847 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001848cs_fill_results(
1849 char *tagstr,
1850 int totmatches,
1851 int *nummatches_a,
1852 char ***matches_p,
1853 char ***cntxts_p,
1854 int *matched)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855{
1856 int i, j;
1857 char *buf;
1858 char *search, *slno;
1859 int totsofar = 0;
1860 char **matches = NULL;
1861 char **cntxts = NULL;
1862 char *fullname;
1863 char *cntx;
1864
1865 assert(totmatches > 0);
1866
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001867 buf = alloc(CSREAD_BUFSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 if (buf == NULL)
1869 return;
1870
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001871 if ((matches = ALLOC_MULT(char *, totmatches)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 goto parse_out;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001873 if ((cntxts = ALLOC_MULT(char *, totmatches)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 goto parse_out;
1875
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00001876 for (i = 0; i < csinfo_size; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 {
1878 if (nummatches_a[i] < 1)
1879 continue;
1880
1881 for (j = 0; j < nummatches_a[i]; j++)
1882 {
1883 if ((fullname = cs_parse_results(i, buf, CSREAD_BUFSIZE, &cntx,
1884 &slno, &search)) == NULL)
1885 continue;
1886
1887 matches[totsofar] = cs_make_vim_style_matches(fullname, slno,
1888 search, tagstr);
1889
1890 vim_free(fullname);
1891
1892 if (strcmp(cntx, "<global>") == 0)
1893 cntxts[totsofar] = NULL;
1894 else
1895 /* note: if vim_strsave returns NULL, then the context
1896 * will be "<global>", which is misleading.
1897 */
1898 cntxts[totsofar] = (char *)vim_strsave((char_u *)cntx);
1899
1900 if (matches[totsofar] != NULL)
1901 totsofar++;
1902
1903 } /* for all matches */
1904
1905 (void)cs_read_prompt(i);
1906
1907 } /* for all cscope connections */
1908
1909parse_out:
Bram Moolenaard6f676d2005-06-01 21:51:55 +00001910 if (totsofar == 0)
1911 {
1912 /* No matches, free the arrays and return NULL in "*matches_p". */
Bram Moolenaard23a8232018-02-10 18:45:26 +01001913 VIM_CLEAR(matches);
1914 VIM_CLEAR(cntxts);
Bram Moolenaard6f676d2005-06-01 21:51:55 +00001915 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 *matched = totsofar;
1917 *matches_p = matches;
1918 *cntxts_p = cntxts;
Bram Moolenaard6f676d2005-06-01 21:51:55 +00001919
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 vim_free(buf);
1921} /* cs_fill_results */
1922
1923
1924/* get the requested path components */
1925 static char *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001926cs_pathcomponents(char *path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927{
1928 int i;
1929 char *s;
1930
1931 if (p_cspc == 0)
1932 return path;
1933
1934 s = path + strlen(path) - 1;
1935 for (i = 0; i < p_cspc; ++i)
1936 while (s > path && *--s != '/'
Bram Moolenaar4f974752019-02-17 17:44:42 +01001937#ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938 && *--s != '\\'
1939#endif
1940 )
1941 ;
1942 if ((s > path && *s == '/')
Bram Moolenaar4f974752019-02-17 17:44:42 +01001943#ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 || (s > path && *s == '\\')
1945#endif
1946 )
1947 ++s;
1948 return s;
1949}
1950
1951/*
Bram Moolenaard4db7712016-11-12 19:16:46 +01001952 * Called from cs_manage_matches().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 */
1954 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001955cs_print_tags_priv(char **matches, char **cntxts, int num_matches)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956{
1957 char *buf = NULL;
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01001958 char *t_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 int bufsize = 0; /* Track available bufsize */
1960 int newsize = 0;
1961 char *ptag;
1962 char *fname, *lno, *extra, *tbuf;
1963 int i, idx, num;
1964 char *globalcntx = "GLOBAL";
1965 char *cntxformat = " <<%s>>";
1966 char *context;
1967 char *cstag_msg = _("Cscope tag: %s");
1968 char *csfmt_str = "%4d %6s ";
1969
Bram Moolenaar4033c552017-09-16 20:54:51 +02001970 assert(num_matches > 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001972 if ((tbuf = alloc(strlen(matches[0]) + 1)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973 return;
1974
1975 strcpy(tbuf, matches[0]);
1976 ptag = strtok(tbuf, "\t");
Bram Moolenaarcde88542015-08-11 19:14:00 +02001977 if (ptag == NULL)
Bram Moolenaar42dd7ae2016-02-23 22:50:12 +01001978 {
1979 vim_free(tbuf);
Bram Moolenaarcde88542015-08-11 19:14:00 +02001980 return;
Bram Moolenaar42dd7ae2016-02-23 22:50:12 +01001981 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001983 newsize = (int)(strlen(cstag_msg) + strlen(ptag));
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001984 buf = alloc(newsize);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985 if (buf != NULL)
1986 {
1987 bufsize = newsize;
1988 (void)sprintf(buf, cstag_msg, ptag);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001989 msg_puts_attr(buf, HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990 }
1991
1992 vim_free(tbuf);
1993
Bram Moolenaar32526b32019-01-19 17:43:09 +01001994 msg_puts_attr(_("\n # line"), HL_ATTR(HLF_T)); /* strlen is 7 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001995 msg_advance(msg_col + 2);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001996 msg_puts_attr(_("filename / context / line\n"), HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997
1998 num = 1;
1999 for (i = 0; i < num_matches; i++)
2000 {
2001 idx = i;
2002
2003 /* if we really wanted to, we could avoid this malloc and strcpy
2004 * by parsing matches[i] on the fly and placing stuff into buf
2005 * directly, but that's too much of a hassle
2006 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002007 if ((tbuf = alloc(strlen(matches[idx]) + 1)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008 continue;
2009 (void)strcpy(tbuf, matches[idx]);
2010
Bram Moolenaare16e5a92016-02-23 20:44:08 +01002011 if (strtok(tbuf, (const char *)"\t") == NULL
2012 || (fname = strtok(NULL, (const char *)"\t")) == NULL
2013 || (lno = strtok(NULL, (const char *)"\t")) == NULL)
2014 {
2015 vim_free(tbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 continue;
Bram Moolenaare16e5a92016-02-23 20:44:08 +01002017 }
Bram Moolenaarf2a4e332007-02-27 17:08:16 +00002018 extra = strtok(NULL, (const char *)"\t");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019
2020 lno[strlen(lno)-2] = '\0'; /* ignore ;" at the end */
2021
2022 /* hopefully 'num' (num of matches) will be less than 10^16 */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002023 newsize = (int)(strlen(csfmt_str) + 16 + strlen(lno));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 if (bufsize < newsize)
2025 {
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01002026 t_buf = buf;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002027 buf = vim_realloc(buf, newsize);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 if (buf == NULL)
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01002029 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 bufsize = 0;
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01002031 vim_free(t_buf);
2032 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033 else
2034 bufsize = newsize;
2035 }
2036 if (buf != NULL)
2037 {
2038 /* csfmt_str = "%4d %6s "; */
2039 (void)sprintf(buf, csfmt_str, num, lno);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002040 msg_puts_attr(buf, HL_ATTR(HLF_CM));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 }
Bram Moolenaar32526b32019-01-19 17:43:09 +01002042 msg_outtrans_long_attr((char_u *)cs_pathcomponents(fname),
2043 HL_ATTR(HLF_CM));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044
2045 /* compute the required space for the context */
2046 if (cntxts[idx] != NULL)
2047 context = cntxts[idx];
2048 else
2049 context = globalcntx;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002050 newsize = (int)(strlen(context) + strlen(cntxformat));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051
2052 if (bufsize < newsize)
2053 {
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01002054 t_buf = buf;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002055 buf = vim_realloc(buf, newsize);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 if (buf == NULL)
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01002057 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 bufsize = 0;
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01002059 vim_free(t_buf);
2060 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 else
2062 bufsize = newsize;
2063 }
2064 if (buf != NULL)
2065 {
2066 (void)sprintf(buf, cntxformat, context);
2067
2068 /* print the context only if it fits on the same line */
2069 if (msg_col + (int)strlen(buf) >= (int)Columns)
2070 msg_putchar('\n');
2071 msg_advance(12);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002072 msg_outtrans_long_attr((char_u *)buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 msg_putchar('\n');
2074 }
2075 if (extra != NULL)
2076 {
2077 msg_advance(13);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002078 msg_outtrans_long_attr((char_u *)extra, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 }
2080
2081 vim_free(tbuf); /* only after printing extra due to strtok use */
2082
2083 if (msg_col)
2084 msg_putchar('\n');
2085
2086 ui_breakcheck();
2087 if (got_int)
2088 {
2089 got_int = FALSE; /* don't print any more matches */
2090 break;
2091 }
2092
2093 num++;
2094 } /* for all matches */
2095
2096 vim_free(buf);
2097} /* cs_print_tags_priv */
2098
2099
2100/*
Bram Moolenaard4db7712016-11-12 19:16:46 +01002101 * Read a cscope prompt (basically, skip over the ">> ").
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 */
2103 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002104cs_read_prompt(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105{
2106 int ch;
2107 char *buf = NULL; /* buffer for possible error message from cscope */
2108 int bufpos = 0;
2109 char *cs_emsg;
2110 int maxlen;
2111 static char *eprompt = "Press the RETURN key to continue:";
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002112 int epromptlen = (int)strlen(eprompt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 int n;
2114
2115 cs_emsg = _("E609: Cscope error: %s");
2116 /* compute maximum allowed len for Cscope error message */
2117 maxlen = (int)(IOSIZE - strlen(cs_emsg));
2118
2119 for (;;)
2120 {
2121 while ((ch = getc(csinfo[i].fr_fp)) != EOF && ch != CSCOPE_PROMPT[0])
2122 /* if there is room and char is printable */
2123 if (bufpos < maxlen - 1 && vim_isprintc(ch))
2124 {
2125 if (buf == NULL) /* lazy buffer allocation */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002126 buf = alloc(maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127 if (buf != NULL)
2128 {
2129 /* append character to the message */
2130 buf[bufpos++] = ch;
2131 buf[bufpos] = NUL;
2132 if (bufpos >= epromptlen
2133 && strcmp(&buf[bufpos - epromptlen], eprompt) == 0)
2134 {
2135 /* remove eprompt from buf */
2136 buf[bufpos - epromptlen] = NUL;
2137
2138 /* print message to user */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002139 (void)semsg(cs_emsg, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140
2141 /* send RETURN to cscope */
2142 (void)putc('\n', csinfo[i].to_fp);
2143 (void)fflush(csinfo[i].to_fp);
2144
2145 /* clear buf */
2146 bufpos = 0;
2147 buf[bufpos] = NUL;
2148 }
2149 }
2150 }
2151
2152 for (n = 0; n < (int)strlen(CSCOPE_PROMPT); ++n)
2153 {
2154 if (n > 0)
2155 ch = getc(csinfo[i].fr_fp);
2156 if (ch == EOF)
2157 {
2158 PERROR("cs_read_prompt EOF");
2159 if (buf != NULL && buf[0] != NUL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002160 (void)semsg(cs_emsg, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 else if (p_csverbose)
2162 cs_reading_emsg(i); /* don't have additional information */
2163 cs_release_csp(i, TRUE);
2164 vim_free(buf);
2165 return CSCOPE_FAILURE;
2166 }
2167
2168 if (ch != CSCOPE_PROMPT[n])
2169 {
2170 ch = EOF;
2171 break;
2172 }
2173 }
2174
2175 if (ch == EOF)
2176 continue; /* didn't find the prompt */
2177 break; /* did find the prompt */
2178 }
2179
2180 vim_free(buf);
2181 return CSCOPE_SUCCESS;
2182}
2183
Bram Moolenaar7dc767c2008-03-15 11:41:07 +00002184#if defined(UNIX) && defined(SIGALRM)
2185/*
2186 * Used to catch and ignore SIGALRM below.
2187 */
Bram Moolenaar7dc767c2008-03-15 11:41:07 +00002188 static RETSIGTYPE
2189sig_handler SIGDEFARG(sigarg)
2190{
2191 /* do nothing */
2192 SIGRETURN;
2193}
2194#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195
2196/*
Bram Moolenaar02b06312007-09-06 15:39:22 +00002197 * Does the actual free'ing for the cs ptr with an optional flag of whether
2198 * or not to free the filename. Called by cs_kill and cs_reset.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 */
2200 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002201cs_release_csp(int i, int freefnpp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 /*
2204 * Trying to exit normally (not sure whether it is fit to UNIX cscope
2205 */
2206 if (csinfo[i].to_fp != NULL)
2207 {
2208 (void)fputs("q\n", csinfo[i].to_fp);
2209 (void)fflush(csinfo[i].to_fp);
2210 }
Bram Moolenaar7dc767c2008-03-15 11:41:07 +00002211#if defined(UNIX)
2212 {
Bram Moolenaare9b28842008-04-01 12:31:14 +00002213 int waitpid_errno;
Bram Moolenaar7dc767c2008-03-15 11:41:07 +00002214 int pstat;
2215 pid_t pid;
2216
2217# if defined(HAVE_SIGACTION)
2218 struct sigaction sa, old;
2219
Bram Moolenaar9701da02008-03-16 12:09:58 +00002220 /* Use sigaction() to limit the waiting time to two seconds. */
2221 sigemptyset(&sa.sa_mask);
Bram Moolenaar7dc767c2008-03-15 11:41:07 +00002222 sa.sa_handler = sig_handler;
Bram Moolenaar25153e12010-02-24 14:47:08 +01002223# ifdef SA_NODEFER
Bram Moolenaar7dc767c2008-03-15 11:41:07 +00002224 sa.sa_flags = SA_NODEFER;
Bram Moolenaar25153e12010-02-24 14:47:08 +01002225# else
2226 sa.sa_flags = 0;
2227# endif
Bram Moolenaar7dc767c2008-03-15 11:41:07 +00002228 sigaction(SIGALRM, &sa, &old);
2229 alarm(2); /* 2 sec timeout */
2230
2231 /* Block until cscope exits or until timer expires */
2232 pid = waitpid(csinfo[i].pid, &pstat, 0);
Bram Moolenaare9b28842008-04-01 12:31:14 +00002233 waitpid_errno = errno;
Bram Moolenaar7dc767c2008-03-15 11:41:07 +00002234
2235 /* cancel pending alarm if still there and restore signal */
2236 alarm(0);
2237 sigaction(SIGALRM, &old, NULL);
2238# else
2239 int waited;
2240
2241 /* Can't use sigaction(), loop for two seconds. First yield the CPU
2242 * to give cscope a chance to exit quickly. */
2243 sleep(0);
2244 for (waited = 0; waited < 40; ++waited)
2245 {
2246 pid = waitpid(csinfo[i].pid, &pstat, WNOHANG);
Bram Moolenaare9b28842008-04-01 12:31:14 +00002247 waitpid_errno = errno;
Bram Moolenaar7dc767c2008-03-15 11:41:07 +00002248 if (pid != 0)
2249 break; /* break unless the process is still running */
Bram Moolenaar91519e42008-04-01 18:59:07 +00002250 mch_delay(50L, FALSE); /* sleep 50 ms */
Bram Moolenaar7dc767c2008-03-15 11:41:07 +00002251 }
2252# endif
2253 /*
2254 * If the cscope process is still running: kill it.
2255 * Safety check: If the PID would be zero here, the entire X session
2256 * would be killed. -1 and 1 are dangerous as well.
2257 */
2258 if (pid < 0 && csinfo[i].pid > 1)
2259 {
Bram Moolenaare9b28842008-04-01 12:31:14 +00002260# ifdef ECHILD
2261 int alive = TRUE;
2262
2263 if (waitpid_errno == ECHILD)
2264 {
2265 /*
2266 * When using 'vim -g', vim is forked and cscope process is
2267 * no longer a child process but a sibling. So waitpid()
2268 * fails with errno being ECHILD (No child processes).
2269 * Don't send SIGKILL to cscope immediately but wait
2270 * (polling) for it to exit normally as result of sending
2271 * the "q" command, hence giving it a chance to clean up
2272 * its temporary files.
2273 */
2274 int waited;
2275
2276 sleep(0);
2277 for (waited = 0; waited < 40; ++waited)
2278 {
2279 /* Check whether cscope process is still alive */
2280 if (kill(csinfo[i].pid, 0) != 0)
2281 {
2282 alive = FALSE; /* cscope process no longer exists */
2283 break;
2284 }
Bram Moolenaar91519e42008-04-01 18:59:07 +00002285 mch_delay(50L, FALSE); /* sleep 50ms */
Bram Moolenaare9b28842008-04-01 12:31:14 +00002286 }
2287 }
2288 if (alive)
2289# endif
2290 {
2291 kill(csinfo[i].pid, SIGKILL);
2292 (void)waitpid(csinfo[i].pid, &pstat, 0);
2293 }
Bram Moolenaar7dc767c2008-03-15 11:41:07 +00002294 }
2295 }
2296#else /* !UNIX */
Bram Moolenaar02b06312007-09-06 15:39:22 +00002297 if (csinfo[i].hProc != NULL)
2298 {
2299 /* Give cscope a chance to exit normally */
2300 if (WaitForSingleObject(csinfo[i].hProc, 1000) == WAIT_TIMEOUT)
2301 TerminateProcess(csinfo[i].hProc, 0);
2302 CloseHandle(csinfo[i].hProc);
2303 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304#endif
2305
2306 if (csinfo[i].fr_fp != NULL)
2307 (void)fclose(csinfo[i].fr_fp);
2308 if (csinfo[i].to_fp != NULL)
2309 (void)fclose(csinfo[i].to_fp);
2310
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 if (freefnpp)
2312 {
2313 vim_free(csinfo[i].fname);
2314 vim_free(csinfo[i].ppath);
2315 vim_free(csinfo[i].flags);
2316 }
2317
2318 clear_csinfo(i);
2319} /* cs_release_csp */
2320
2321
2322/*
Bram Moolenaard4db7712016-11-12 19:16:46 +01002323 * Calls cs_kill on all cscope connections then reinits.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002326cs_reset(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327{
2328 char **dblist = NULL, **pplist = NULL, **fllist = NULL;
2329 int i;
Bram Moolenaar051b7822005-05-19 21:00:46 +00002330 char buf[20]; /* for sprintf " (#%d)" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00002332 if (csinfo_size == 0)
2333 return CSCOPE_SUCCESS;
2334
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 /* malloc our db and ppath list */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002336 dblist = ALLOC_MULT(char *, csinfo_size);
2337 pplist = ALLOC_MULT(char *, csinfo_size);
2338 fllist = ALLOC_MULT(char *, csinfo_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 if (dblist == NULL || pplist == NULL || fllist == NULL)
2340 {
2341 vim_free(dblist);
2342 vim_free(pplist);
2343 vim_free(fllist);
2344 return CSCOPE_FAILURE;
2345 }
2346
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00002347 for (i = 0; i < csinfo_size; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 {
2349 dblist[i] = csinfo[i].fname;
2350 pplist[i] = csinfo[i].ppath;
2351 fllist[i] = csinfo[i].flags;
2352 if (csinfo[i].fname != NULL)
2353 cs_release_csp(i, FALSE);
2354 }
2355
2356 /* rebuild the cscope connection list */
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00002357 for (i = 0; i < csinfo_size; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 {
2359 if (dblist[i] != NULL)
2360 {
2361 cs_add_common(dblist[i], pplist[i], fllist[i]);
2362 if (p_csverbose)
2363 {
Bram Moolenaard2ac9842007-08-21 16:03:51 +00002364 /* don't use smsg_attr() because we want to display the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 * connection number in the same line as
2366 * "Added cscope database..."
2367 */
2368 sprintf(buf, " (#%d)", i);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002369 msg_puts_attr(buf, HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 }
2371 }
2372 vim_free(dblist[i]);
2373 vim_free(pplist[i]);
2374 vim_free(fllist[i]);
2375 }
2376 vim_free(dblist);
2377 vim_free(pplist);
2378 vim_free(fllist);
2379
2380 if (p_csverbose)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002381 msg_attr(_("All cscope databases reset"), HL_ATTR(HLF_R) | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382 return CSCOPE_SUCCESS;
2383} /* cs_reset */
2384
2385
2386/*
Bram Moolenaar28c21912013-05-29 19:18:00 +02002387 * Construct the full pathname to a file found in the cscope database.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388 * (Prepends ppath, if there is one and if it's not already prepended,
2389 * otherwise just uses the name found.)
2390 *
Bram Moolenaar28c21912013-05-29 19:18:00 +02002391 * We need to prepend the prefix because on some cscope's (e.g., the one that
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 * ships with Solaris 2.6), the output never has the prefix prepended.
Bram Moolenaar28c21912013-05-29 19:18:00 +02002393 * Contrast this with my development system (Digital Unix), which does.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 */
2395 static char *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002396cs_resolve_file(int i, char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397{
Bram Moolenaar2f982e42011-06-12 20:42:22 +02002398 char *fullname;
2399 int len;
2400 char_u *csdir = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401
2402 /*
Bram Moolenaar2f982e42011-06-12 20:42:22 +02002403 * Ppath is freed when we destroy the cscope connection.
2404 * Fullname is freed after cs_make_vim_style_matches, after it's been
2405 * copied into the tag buffer used by Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002407 len = (int)(strlen(name) + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 if (csinfo[i].ppath != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002409 len += (int)strlen(csinfo[i].ppath);
Bram Moolenaar2f982e42011-06-12 20:42:22 +02002410 else if (p_csre && csinfo[i].fname != NULL)
2411 {
2412 /* If 'cscoperelative' is set and ppath is not set, use cscope.out
2413 * path in path resolution. */
2414 csdir = alloc(MAXPATHL);
2415 if (csdir != NULL)
2416 {
2417 vim_strncpy(csdir, (char_u *)csinfo[i].fname,
Bram Moolenaard23a8232018-02-10 18:45:26 +01002418 gettail((char_u *)csinfo[i].fname)
Bram Moolenaar28c21912013-05-29 19:18:00 +02002419 - (char_u *)csinfo[i].fname);
Bram Moolenaar2f982e42011-06-12 20:42:22 +02002420 len += (int)STRLEN(csdir);
2421 }
2422 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423
Bram Moolenaar2f982e42011-06-12 20:42:22 +02002424 /* Note/example: this won't work if the cscope output already starts
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 * "../.." and the prefix path is also "../..". if something like this
Bram Moolenaar2f982e42011-06-12 20:42:22 +02002426 * happens, you are screwed up and need to fix how you're using cscope. */
2427 if (csinfo[i].ppath != NULL
2428 && (strncmp(name, csinfo[i].ppath, strlen(csinfo[i].ppath)) != 0)
2429 && (name[0] != '/')
Bram Moolenaar4f974752019-02-17 17:44:42 +01002430#ifdef MSWIN
Bram Moolenaar2f982e42011-06-12 20:42:22 +02002431 && name[0] != '\\' && name[1] != ':'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432#endif
Bram Moolenaar2f982e42011-06-12 20:42:22 +02002433 )
Bram Moolenaar28c21912013-05-29 19:18:00 +02002434 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002435 if ((fullname = alloc(len)) != NULL)
Bram Moolenaar28c21912013-05-29 19:18:00 +02002436 (void)sprintf(fullname, "%s/%s", csinfo[i].ppath, name);
2437 }
2438 else if (csdir != NULL && csinfo[i].fname != NULL && *csdir != NUL)
Bram Moolenaar2f982e42011-06-12 20:42:22 +02002439 {
2440 /* Check for csdir to be non empty to avoid empty path concatenated to
Bram Moolenaar28c21912013-05-29 19:18:00 +02002441 * cscope output. */
Bram Moolenaar03227ee2011-06-12 21:25:00 +02002442 fullname = (char *)concat_fnames(csdir, (char_u *)name, TRUE);
Bram Moolenaar2f982e42011-06-12 20:42:22 +02002443 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 else
Bram Moolenaar28c21912013-05-29 19:18:00 +02002445 {
2446 fullname = (char *)vim_strsave((char_u *)name);
2447 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448
Bram Moolenaar2f982e42011-06-12 20:42:22 +02002449 vim_free(csdir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 return fullname;
Bram Moolenaar2f982e42011-06-12 20:42:22 +02002451}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452
2453
2454/*
Bram Moolenaard4db7712016-11-12 19:16:46 +01002455 * Show all cscope connections.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002458cs_show(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459{
2460 short i;
2461 if (cs_cnt_connections() == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002462 msg_puts(_("no cscope connections\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463 else
2464 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002465 msg_puts_attr(
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466 _(" # pid database name prepend path\n"),
Bram Moolenaar8820b482017-03-16 17:23:31 +01002467 HL_ATTR(HLF_T));
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00002468 for (i = 0; i < csinfo_size; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 {
2470 if (csinfo[i].fname == NULL)
2471 continue;
2472
2473 if (csinfo[i].ppath != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002474 (void)smsg("%2d %-5ld %-34s %-32s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475 i, (long)csinfo[i].pid, csinfo[i].fname, csinfo[i].ppath);
2476 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002477 (void)smsg("%2d %-5ld %-34s <none>",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478 i, (long)csinfo[i].pid, csinfo[i].fname);
2479 }
2480 }
2481
2482 wait_return(TRUE);
2483 return CSCOPE_SUCCESS;
2484} /* cs_show */
2485
Bram Moolenaar02b06312007-09-06 15:39:22 +00002486
2487/*
Bram Moolenaar02b06312007-09-06 15:39:22 +00002488 * Only called when VIM exits to quit any cscope sessions.
2489 */
2490 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002491cs_end(void)
Bram Moolenaar02b06312007-09-06 15:39:22 +00002492{
2493 int i;
2494
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00002495 for (i = 0; i < csinfo_size; i++)
Bram Moolenaar02b06312007-09-06 15:39:22 +00002496 cs_release_csp(i, TRUE);
Bram Moolenaar9fa49da2009-07-10 13:11:26 +00002497 vim_free(csinfo);
2498 csinfo_size = 0;
Bram Moolenaar02b06312007-09-06 15:39:22 +00002499}
2500
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501#endif /* FEAT_CSCOPE */
2502
Bram Moolenaar6f72e902019-09-05 23:04:02 +02002503#if defined(FEAT_EVAL) || defined(PROTO)
2504
2505/*
2506 * "cscope_connection([{num} , {dbpath} [, {prepend}]])" function
2507 *
2508 * Checks the existence of a cscope connection.
2509 */
2510 void
2511f_cscope_connection(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
2512{
2513# ifdef FEAT_CSCOPE
2514 int num = 0;
2515 char_u *dbpath = NULL;
2516 char_u *prepend = NULL;
2517 char_u buf[NUMBUFLEN];
2518
2519 if (argvars[0].v_type != VAR_UNKNOWN
2520 && argvars[1].v_type != VAR_UNKNOWN)
2521 {
2522 num = (int)tv_get_number(&argvars[0]);
2523 dbpath = tv_get_string(&argvars[1]);
2524 if (argvars[2].v_type != VAR_UNKNOWN)
2525 prepend = tv_get_string_buf(&argvars[2], buf);
2526 }
2527
2528 rettv->vval.v_number = cs_connection(num, dbpath, prepend);
2529# endif
2530}
2531
2532#endif // FEAT_EVAL