1 /* $NetBSD: ex_cscope.c,v 1.7 2014/08/26 15:19:38 aymeric Exp $ */
3 * Copyright (c) 1994, 1996
4 * Rob Mayoff. All rights reserved.
6 * Keith Bostic. All rights reserved.
8 * See the LICENSE file for redistribution information.
13 #include <sys/cdefs.h>
16 static const char sccsid
[] = "Id: ex_cscope.c,v 10.21 2003/11/05 17:11:54 skimo Exp (Berkeley) Date: 2003/11/05 17:11:54 ";
19 __RCSID("$NetBSD: ex_cscope.c,v 1.7 2014/08/26 15:19:38 aymeric Exp $");
22 #include <sys/param.h>
23 #include <sys/types.h> /* XXX: param.h may not have included types.h */
24 #include <sys/queue.h>
29 #include <bitstring.h>
41 #include "../common/common.h"
42 #include "pathnames.h"
45 #define CSCOPE_DBFILE "cscope.out"
46 #define CSCOPE_PATHS "cscope.tpath"
49 * 0name find all uses of name
50 * 1name find definition of name
51 * 2name find all function calls made from name
52 * 3name find callers of name
53 * 4string find text string (cscope 12.9)
54 * 4name find assignments to name (cscope 13.3)
55 * 5pattern change pattern -- NOT USED
56 * 6pattern find pattern
57 * 7name find files with name as substring
58 * 8name find files #including name
61 find c|d|e|f|g|i|s|t buffer|pattern\n\
62 c: find callers of name\n\
63 d: find all function calls made from name\n\
65 f: find files with name as substring\n\
66 g: find definition of name\n\
67 i: find files #including name\n\
68 s: find all uses of name\n\
69 t: find assignments to name"
71 static int cscope_add
__P((SCR
*, EXCMD
*, const CHAR_T
*));
72 static int cscope_find
__P((SCR
*, EXCMD
*, const CHAR_T
*));
73 static int cscope_help
__P((SCR
*, EXCMD
*, const CHAR_T
*));
74 static int cscope_kill
__P((SCR
*, EXCMD
*, const CHAR_T
*));
75 static int cscope_reset
__P((SCR
*, EXCMD
*, const CHAR_T
*));
79 int (*function
) __P((SCR
*, EXCMD
*, const CHAR_T
*));
81 const char *usage_msg
;
84 static CC
const cscope_cmds
[] = {
86 "Add a new cscope database", "add file | directory" },
87 { "find", cscope_find
,
88 "Query the databases for a pattern", FINDHELP
},
89 { "help", cscope_help
,
90 "Show help for cscope commands", "help [command]" },
91 { "kill", cscope_kill
,
92 "Kill a cscope connection", "kill number" },
93 { "reset", cscope_reset
,
94 "Discard all current cscope connections", "reset" },
95 { NULL
, NULL
, NULL
, NULL
}
98 static TAGQ
*create_cs_cmd
__P((SCR
*, const char *, size_t *));
99 static int csc_help
__P((SCR
*, const char *));
100 static void csc_file
__P((SCR
*,
101 CSC
*, char *, char **, size_t *, int *));
102 static int get_paths
__P((SCR
*, CSC
*));
103 static CC
const *lookup_ccmd
__P((const char *));
104 static int parse
__P((SCR
*, CSC
*, TAGQ
*, int *));
105 static int read_prompt
__P((SCR
*, CSC
*));
106 static int run_cscope
__P((SCR
*, CSC
*, const char *));
107 static int start_cscopes
__P((SCR
*, EXCMD
*));
108 static int terminate
__P((SCR
*, CSC
*, int));
112 * Perform an ex cscope.
114 * PUBLIC: int ex_cscope __P((SCR *, EXCMD *));
117 ex_cscope(SCR
*sp
, EXCMD
*cmdp
)
127 /* Initialize the default cscope directories. */
129 if (!F_ISSET(exp
, EXP_CSCINIT
) && start_cscopes(sp
, cmdp
))
131 F_SET(exp
, EXP_CSCINIT
);
133 /* Skip leading whitespace. */
134 for (p
= cmdp
->argv
[0]->bp
, i
= cmdp
->argv
[0]->len
; i
> 0; --i
, ++p
)
135 if (!ISBLANK((UCHAR_T
)*p
))
140 /* Skip the command to any arguments. */
141 for (cmd
= p
; i
> 0; --i
, ++p
)
142 if (ISBLANK((UCHAR_T
)*p
))
146 for (; *p
&& ISBLANK((UCHAR_T
)*p
); ++p
);
149 INT2CHAR(sp
, cmd
, STRLEN(cmd
) + 1, np
, nlen
);
150 if ((ccp
= lookup_ccmd(np
)) == NULL
) {
151 usage
: msgq(sp
, M_ERR
, "309|Use \"cscope help\" for help");
155 /* Call the underlying function. */
156 return (ccp
->function(sp
, cmdp
, p
));
161 * Initialize the cscope package.
164 start_cscopes(SCR
*sp
, EXCMD
*cmdp
)
167 char *bp
, *cscopes
, *p
, *t
;
174 * If the CSCOPE_DIRS environment variable is set, we treat it as a
175 * list of cscope directories that we're using, similar to the tags
179 * This should probably be an edit option, although that implies that
180 * we start/stop cscope processes periodically, instead of once when
183 if ((cscopes
= getenv("CSCOPE_DIRS")) == NULL
)
185 len
= strlen(cscopes
);
186 GET_SPACE_RETC(sp
, bp
, blen
, len
);
187 memcpy(bp
, cscopes
, len
+ 1);
189 for (cscopes
= t
= bp
; (p
= strsep(&t
, "\t :")) != NULL
;)
191 CHAR2INT(sp
, p
, strlen(p
) + 1, wp
, wlen
);
192 (void)cscope_add(sp
, cmdp
, wp
);
195 FREE_SPACE(sp
, bp
, blen
);
201 * The cscope add command.
204 cscope_add(SCR
*sp
, EXCMD
*cmdp
, const CHAR_T
*dname
)
212 char path
[MAXPATHLEN
];
220 * 0 additional args: usage.
221 * 1 additional args: matched a file.
222 * >1 additional args: object, too many args.
224 cur_argc
= cmdp
->argc
;
225 if (argv_exp2(sp
, cmdp
, dname
, STRLEN(dname
))) {
228 if (cmdp
->argc
== cur_argc
) {
229 (void)csc_help(sp
, "add");
232 if (cmdp
->argc
== cur_argc
+ 1)
233 dname
= cmdp
->argv
[cur_argc
]->bp
;
235 ex_emsg(sp
, np
, EXM_FILECOUNT
);
239 INT2CHAR(sp
, dname
, STRLEN(dname
)+1, np
, nlen
);
242 * The user can specify a specific file (so they can have multiple
243 * Cscope databases in a single directory) or a directory. If the
244 * file doesn't exist, we're done. If it's a directory, append the
245 * standard database file name and try again. Store the directory
246 * name regardless so that we can use it as a base for searches.
249 msgq(sp
, M_SYSERR
, "%s", np
);
252 if (S_ISDIR(sb
.st_mode
)) {
253 (void)snprintf(path
, sizeof(path
),
254 "%s/%s", np
, CSCOPE_DBFILE
);
255 if (stat(path
, &sb
)) {
256 msgq(sp
, M_SYSERR
, "%s", path
);
259 dbname
= CSCOPE_DBFILE
;
260 } else if ((npp
= strrchr(np
, '/')) != NULL
) {
268 /* Allocate a cscope connection structure and initialize its fields. */
270 CALLOC_RET(sp
, csc
, CSC
*, 1, sizeof(CSC
) + len
);
271 csc
->dname
= csc
->buf
;
273 memcpy(csc
->dname
, np
, len
);
274 csc
->mtime
= sb
.st_mtime
;
276 /* Get the search paths for the cscope. */
277 if (get_paths(sp
, csc
))
280 /* Start the cscope process. */
281 if (run_cscope(sp
, csc
, dbname
))
285 * Add the cscope connection to the screen's list. From now on,
286 * on error, we have to call terminate, which expects the csc to
289 LIST_INSERT_HEAD(&exp
->cscq
, csc
, q
);
291 /* Read the initial prompt from the cscope to make sure it's okay. */
292 return read_prompt(sp
, csc
);
300 * Get the directories to search for the files associated with this
304 get_paths(SCR
*sp
, CSC
*csc
)
309 char *p
, **pathp
, buf
[MAXPATHLEN
* 2];
314 * If there's a cscope directory with a file named CSCOPE_PATHS, it
315 * contains a colon-separated list of paths in which to search for
316 * files returned by cscope.
319 * These paths are absolute paths, and not relative to the cscope
320 * directory. To fix this, rewrite the each path using the cscope
321 * directory as a prefix.
323 (void)snprintf(buf
, sizeof(buf
), "%s/%s", csc
->dname
, CSCOPE_PATHS
);
324 if (stat(buf
, &sb
) == 0) {
325 /* Read in the CSCOPE_PATHS file. */
327 MALLOC_RET(sp
, csc
->pbuf
, char *, len
+ 1);
328 if ((fd
= open(buf
, O_RDONLY
, 0)) < 0 ||
329 (size_t)read(fd
, csc
->pbuf
, len
) != len
) {
330 msgq_str(sp
, M_SYSERR
, buf
, "%s");
336 csc
->pbuf
[len
] = '\0';
338 /* Count up the entries. */
339 for (nentries
= 0, p
= csc
->pbuf
; *p
!= '\0'; ++p
)
340 if (p
[0] == ':' && p
[1] != '\0')
343 /* Build an array of pointers to the paths. */
345 csc
->paths
, char **, nentries
+ 1, sizeof(char **));
346 for (pathp
= csc
->paths
, p
= strtok(csc
->pbuf
, ":");
347 p
!= NULL
; p
= strtok(NULL
, ":"))
353 * If the CSCOPE_PATHS file doesn't exist, we look for files
354 * relative to the cscope directory.
356 if ((csc
->pbuf
= strdup(csc
->dname
)) == NULL
) {
357 msgq(sp
, M_SYSERR
, NULL
);
360 CALLOC_GOTO(sp
, csc
->paths
, char **, 2, sizeof(char *));
361 csc
->paths
[0] = csc
->pbuf
;
365 if (csc
->pbuf
!= NULL
) {
374 * Fork off the cscope process.
377 run_cscope(SCR
*sp
, CSC
*csc
, const char *dbname
)
379 int to_cs
[2], from_cs
[2];
380 char cmd
[MAXPATHLEN
* 2];
383 * Cscope reads from to_cs[0] and writes to from_cs[1]; vi reads from
384 * from_cs[0] and writes to to_cs[1].
386 to_cs
[0] = to_cs
[1] = from_cs
[0] = from_cs
[1] = -1;
387 if (pipe(to_cs
) < 0 || pipe(from_cs
) < 0) {
388 msgq(sp
, M_SYSERR
, "pipe");
391 switch (csc
->pid
= vfork()) {
393 msgq(sp
, M_SYSERR
, "vfork");
394 err
: if (to_cs
[0] != -1)
395 (void)close(to_cs
[0]);
397 (void)close(to_cs
[1]);
398 if (from_cs
[0] != -1)
399 (void)close(from_cs
[0]);
400 if (from_cs
[1] != -1)
401 (void)close(from_cs
[1]);
403 case 0: /* child: run cscope. */
404 (void)dup2(to_cs
[0], STDIN_FILENO
);
405 (void)dup2(from_cs
[1], STDOUT_FILENO
);
406 (void)dup2(from_cs
[1], STDERR_FILENO
);
408 /* Close unused file descriptors. */
409 (void)close(to_cs
[1]);
410 (void)close(from_cs
[0]);
412 /* Run the cscope command. */
413 #define CSCOPE_CMD_FMT "cd '%s' && exec cscope -dl -f %s"
414 (void)snprintf(cmd
, sizeof(cmd
),
415 CSCOPE_CMD_FMT
, csc
->dname
, dbname
);
416 (void)execl(_PATH_BSHELL
, "sh", "-c", cmd
, (char *)NULL
);
417 msgq_str(sp
, M_SYSERR
, cmd
, "execl: %s");
420 default: /* parent. */
421 /* Close unused file descriptors. */
422 (void)close(to_cs
[0]);
423 (void)close(from_cs
[1]);
426 * Save the file descriptors for later duplication, and
429 csc
->to_fd
= to_cs
[1];
430 csc
->to_fp
= fdopen(to_cs
[1], "w");
431 csc
->from_fd
= from_cs
[0];
432 csc
->from_fp
= fdopen(from_cs
[0], "r");
440 * The cscope find command.
443 cscope_find(SCR
*sp
, EXCMD
*cmdp
, const CHAR_T
*pattern
)
452 int force
, istmp
, matches
;
453 const char *np
= NULL
;
458 /* Check for connections. */
459 if (LIST_EMPTY(&exp
->cscq
)) {
460 msgq(sp
, M_ERR
, "310|No cscope connections running");
465 * Allocate all necessary memory before doing anything hard. If the
466 * tags stack is empty, we'll need the `local context' TAGQ structure
471 if (TAILQ_EMPTY(&exp
->tq
)) {
472 /* Initialize the `local context' tag queue structure. */
473 CALLOC_GOTO(sp
, rtqp
, TAGQ
*, 1, sizeof(TAGQ
));
474 TAILQ_INIT(&rtqp
->tagq
);
476 /* Initialize and link in its tag structure. */
477 CALLOC_GOTO(sp
, rtp
, TAG
*, 1, sizeof(TAG
));
478 TAILQ_INSERT_HEAD(&rtqp
->tagq
, rtp
, q
);
482 /* Create the cscope command. */
483 INT2CHAR(sp
, pattern
, STRLEN(pattern
) + 1, np
, nlen
);
485 if ((tqp
= create_cs_cmd(sp
, np
, &search
)) == NULL
)
489 * Stick the current context in a convenient place, we'll lose it
490 * when we switch files.
495 istmp
= F_ISSET(sp
->frp
, FR_TMPFILE
) && !F_ISSET(cmdp
, E_NEWSCREEN
);
497 /* Search all open connections for a match. */
499 LIST_FOREACH_SAFE(csc
, &exp
->cscq
, q
, csc_next
) {
501 * Send the command to the cscope program. (We skip the
502 * first two bytes of the command, because we stored the
503 * search cscope command character and a leading space
506 (void)fprintf(csc
->to_fp
, "%zu%s\n", search
, tqp
->tag
+ 2);
507 (void)fflush(csc
->to_fp
);
509 /* Read the output. */
510 if (parse(sp
, csc
, tqp
, &matches
)) {
519 msgq(sp
, M_INFO
, "278|No matches for query");
523 tqp
->current
= TAILQ_FIRST(&tqp
->tagq
);
525 /* Try to switch to the first tag. */
526 force
= FL_ISSET(cmdp
->iflags
, E_C_FORCE
);
527 if (F_ISSET(cmdp
, E_NEWSCREEN
)) {
528 if (ex_tag_Nswitch(sp
, tqp
->current
, force
))
531 /* Everything else gets done in the new screen. */
535 if (ex_tag_nswitch(sp
, tqp
->current
, force
))
539 * If this is the first tag, put a `current location' queue entry
540 * in place, so we can pop all the way back to the current mark.
541 * Note, it doesn't point to much of anything, it's a placeholder.
543 if (TAILQ_EMPTY(&exp
->tq
)) {
544 TAILQ_INSERT_HEAD(&exp
->tq
, rtqp
, q
);
545 F_SET(rtqp
, TAG_IS_LINKED
);
548 rtqp
= TAILQ_FIRST(&exp
->tq
);
551 /* Link the current TAGQ structure into place. */
552 TAILQ_INSERT_HEAD(&exp
->tq
, tqp
, q
);
553 F_SET(tqp
, TAG_IS_LINKED
);
555 (void)cscope_search(sp
, tqp
, tqp
->current
);
558 * Move the current context from the temporary save area into the
561 * If we were in a temporary file, we don't have a context to which
562 * we can return, so just make it be the same as what we're moving
563 * to. It will be a little odd that ^T doesn't change anything, but
564 * I don't think it's a big deal.
567 rtqp
->current
->frp
= sp
->frp
;
568 rtqp
->current
->lno
= sp
->lno
;
569 rtqp
->current
->cno
= sp
->cno
;
571 rtqp
->current
->frp
= frp
;
572 rtqp
->current
->lno
= lno
;
573 rtqp
->current
->cno
= cno
;
588 * Build a cscope command, creating and initializing the base TAGQ.
591 create_cs_cmd(SCR
*sp
, const char *pattern
, size_t *searchp
)
599 * Cscope supports a "change pattern" command which we never use,
600 * cscope command 5. Set CSCOPE_QUERIES[5] to " " since the user
601 * can't pass " " as the first character of pattern. That way the
602 * user can't ask for pattern 5 so we don't need any special-case
605 #define CSCOPE_QUERIES "sgdct efi"
610 /* Skip leading blanks, check for command character. */
611 for (; isblank((unsigned char)pattern
[0]); ++pattern
);
612 if (pattern
[0] == '\0' || !isblank((unsigned char)pattern
[1]))
614 for (*searchp
= 0, p
= CSCOPE_QUERIES
;
615 *p
!= '\0' && *p
!= pattern
[0]; ++*searchp
, ++p
);
618 "311|%s: unknown search type: use one of %s",
619 KEY_NAME(sp
, pattern
[0]), CSCOPE_QUERIES
);
623 /* Skip <blank> characters to the pattern. */
624 for (p
= pattern
+ 1; *p
!= '\0' && isblank((unsigned char)*p
); ++p
);
626 usage
: (void)csc_help(sp
, "find");
630 /* The user can specify the contents of a buffer as the pattern. */
632 if (p
[0] == '"' && p
[1] != '\0' && p
[2] == '\0')
633 CBNAME(sp
, cbp
, p
[1]);
635 TEXT
*t
= TAILQ_FIRST(&cbp
->textq
);
636 INT2CHAR(sp
, t
->lb
, t
->len
, p
, tlen
);
640 /* Allocate and initialize the TAGQ structure. */
641 CALLOC(sp
, tqp
, TAGQ
*, 1, sizeof(TAGQ
) + tlen
+ 3);
644 TAILQ_INIT(&tqp
->tagq
);
646 tqp
->tag
[0] = pattern
[0];
648 tqp
->tlen
= tlen
+ 2;
649 memcpy(tqp
->tag
+ 2, p
, tlen
);
650 tqp
->tag
[tlen
+ 2] = '\0';
651 F_SET(tqp
, TAG_CSCOPE
);
658 * Parse the cscope output.
661 parse(SCR
*sp
, CSC
*csc
, TAGQ
*tqp
, int *matchesp
)
665 size_t dlen
, nlen
= 0, slen
= 0;
666 int ch
, i
, isolder
= 0, nlines
;
667 char *dname
= NULL
, *name
= NULL
, *search
, *p
, *t
, dummy
[2], buf
[2048];
670 if (!fgets(buf
, sizeof(buf
), csc
->from_fp
))
674 * If the database is out of date, or there's some other
675 * problem, cscope will output error messages before the
676 * number-of-lines output. Display/discard any output
677 * that doesn't match what we want.
679 #define CSCOPE_NLINES_FMT "cscope: %d lines%1[\n]"
680 if (sscanf(buf
, CSCOPE_NLINES_FMT
, &nlines
, dummy
) == 2)
682 if ((p
= strchr(buf
, '\n')) != NULL
)
684 msgq(sp
, M_ERR
, "%s: \"%s\"", csc
->dname
, buf
);
688 if (fgets(buf
, sizeof(buf
), csc
->from_fp
) == NULL
)
691 /* If the line's too long for the buffer, discard it. */
692 if ((p
= strchr(buf
, '\n')) == NULL
) {
693 while ((ch
= getc(csc
->from_fp
)) != EOF
&& ch
!= '\n');
699 * The cscope output is in the following format:
701 * <filename> <context> <line number> <pattern>
703 * Figure out how long everything is so we can allocate in one
704 * swell foop, but discard anything that looks wrong.
707 i
< 3 && (t
= strsep(&p
, "\t ")) != NULL
; ++i
)
709 case 0: /* Filename. */
713 case 1: /* Context. */
715 case 2: /* Line number. */
716 slno
= (db_recno_t
)atol(t
);
719 if (i
!= 3 || p
== NULL
|| t
== NULL
)
722 /* The rest of the string is the search pattern. */
726 /* Resolve the file name. */
727 csc_file(sp
, csc
, name
, &dname
, &dlen
, &isolder
);
730 * If the file is older than the cscope database, that is,
731 * the database was built since the file was last modified,
732 * or there wasn't a search string, use the line number.
734 if (isolder
|| strcmp(search
, "<unknown>") == 0) {
740 * Allocate and initialize a tag structure plus the variable
741 * length cscope information that follows it.
744 TAG
*, 1, sizeof(TAG
) + dlen
+ 2 + nlen
+ 1 + slen
+ 1);
745 tp
->fname
= (char *)tp
->buf
;
747 memcpy(tp
->fname
, dname
, dlen
);
748 tp
->fname
[dlen
] = '/';
751 memcpy(tp
->fname
+ dlen
, name
, nlen
+ 1);
752 tp
->fnlen
= dlen
+ nlen
;
755 tp
->search
= (CHAR_T
*)(tp
->fname
+ tp
->fnlen
+ 1);
756 MEMCPYW(tp
->search
, search
, (tp
->slen
= slen
) + 1);
758 TAILQ_INSERT_TAIL(&tqp
->tagq
, tp
, q
);
763 return read_prompt(sp
, csc
);
765 io_err
: if (feof(csc
->from_fp
))
767 msgq_str(sp
, M_SYSERR
, "%s", csc
->dname
);
768 terminate(sp
, csc
, 0);
774 * Search for the right path to this file.
777 csc_file(SCR
*sp
, CSC
*csc
, char *name
, char **dirp
, size_t *dlenp
, int *isolderp
)
780 char **pp
, buf
[MAXPATHLEN
];
783 * Check for the file in all of the listed paths. If we don't
784 * find it, we simply return it unchanged. We have to do this
785 * now, even though it's expensive, because if the user changes
786 * directories, we can't change our minds as to where the file
789 for (pp
= csc
->paths
; *pp
!= NULL
; ++pp
) {
790 (void)snprintf(buf
, sizeof(buf
), "%s/%s", *pp
, name
);
791 if (stat(buf
, &sb
) == 0) {
793 *dlenp
= strlen(*pp
);
794 *isolderp
= sb
.st_mtime
< csc
->mtime
;
803 * The cscope help command.
806 cscope_help(SCR
*sp
, EXCMD
*cmdp
, const CHAR_T
*subcmd
)
811 INT2CHAR(sp
, subcmd
, STRLEN(subcmd
) + 1, np
, nlen
);
812 return (csc_help(sp
, np
));
817 * Display help/usage messages.
820 csc_help(SCR
*sp
, const char *cmd
)
824 if (cmd
!= NULL
&& *cmd
!= '\0') {
825 if ((ccp
= lookup_ccmd(cmd
)) == NULL
) {
827 "%s doesn't match any cscope command\n", cmd
);
831 "Command: %s (%s)\n", ccp
->name
, ccp
->help_msg
);
832 ex_printf(sp
, " Usage: %s\n", ccp
->usage_msg
);
837 ex_printf(sp
, "cscope commands:\n");
838 for (ccp
= cscope_cmds
; ccp
->name
!= NULL
; ++ccp
)
839 ex_printf(sp
, " %*s: %s\n", 5, ccp
->name
, ccp
->help_msg
);
845 * The cscope kill command.
848 cscope_kill(SCR
*sp
, EXCMD
*cmdp
, const CHAR_T
*cn
)
853 INT2CHAR(sp
, cn
, STRLEN(cn
) + 1, np
, nlen
);
854 return (terminate(sp
, NULL
, atoi(np
)));
859 * Detach from a cscope process.
862 terminate(SCR
*sp
, CSC
*csc
, int n
)
870 * We either get a csc structure or a number. If not provided a
871 * csc structure, find the right one.
877 LIST_FOREACH(csc
, &exp
->cscq
, q
)
881 badno
: msgq(sp
, M_ERR
, "312|%d: no such cscope session", n
);
888 * Theoretically, we have the only file descriptors to the process,
889 * so closing them should let it exit gracefully, deleting temporary
890 * files, etc. The original vi cscope integration sent the cscope
891 * connection a SIGTERM signal, so I'm not sure if closing the file
892 * descriptors is sufficient.
894 if (csc
->from_fp
!= NULL
)
895 (void)fclose(csc
->from_fp
);
896 if (csc
->to_fp
!= NULL
)
897 (void)fclose(csc
->to_fp
);
898 (void)waitpid(csc
->pid
, &pstat
, 0);
900 /* Discard cscope connection information. */
902 if (csc
->pbuf
!= NULL
)
904 if (csc
->paths
!= NULL
)
912 * The cscope reset command.
915 cscope_reset(SCR
*sp
, EXCMD
*cmdp
, const CHAR_T
*notusedp
)
919 for (exp
= EXP(sp
); !LIST_EMPTY(&exp
->cscq
);) {
920 static CHAR_T one
[] = {'1', 0};
921 if (cscope_kill(sp
, cmdp
, one
))
929 * Display current connections.
931 * PUBLIC: int cscope_display __P((SCR *));
934 cscope_display(SCR
*sp
)
941 if (LIST_EMPTY(&exp
->cscq
)) {
942 ex_printf(sp
, "No cscope connections.\n");
946 LIST_FOREACH(csc
, &exp
->cscq
, q
)
948 "%2d %s (process %lu)\n", i
++, csc
->dname
, (u_long
)csc
->pid
);
954 * Search a file for a cscope entry.
956 * PUBLIC: int cscope_search __P((SCR *, TAGQ *, TAG *));
959 cscope_search(SCR
*sp
, TAGQ
*tqp
, TAG
*tp
)
963 /* If we don't have a search pattern, use the line number. */
964 if (tp
->search
== NULL
) {
965 if (!db_exist(sp
, tp
->slno
)) {
966 tag_msg(sp
, TAG_BADLNO
, tqp
->tag
);
972 * Search for the tag; cheap fallback for C functions
973 * if the name is the same but the arguments have changed.
977 if (f_search(sp
, &m
, &m
,
978 tp
->search
, tp
->slen
, NULL
, SEARCH_CSCOPE
| SEARCH_FIRST
)) {
979 tag_msg(sp
, TAG_SEARCH
, tqp
->tag
);
985 * Historically, tags set the search direction if it wasn't
988 if (sp
->searchdir
== NOTSET
)
989 sp
->searchdir
= FORWARD
;
994 * Tags move to the first non-blank, NOT the search pattern start.
998 (void)nonblank(sp
, sp
->lno
, &sp
->cno
);
1005 * Return a pointer to the command structure.
1008 lookup_ccmd(const char *name
)
1014 for (ccp
= cscope_cmds
; ccp
->name
!= NULL
; ++ccp
)
1015 if (strncmp(name
, ccp
->name
, len
) == 0)
1022 * Read a prompt from cscope.
1025 read_prompt(SCR
*sp
, CSC
*csc
)
1029 #define CSCOPE_PROMPT ">> "
1032 getc(csc
->from_fp
)) != EOF
&& ch
!= CSCOPE_PROMPT
[0]);
1034 terminate(sp
, csc
, 0);
1037 if (getc(csc
->from_fp
) != CSCOPE_PROMPT
[1])
1039 if (getc(csc
->from_fp
) != CSCOPE_PROMPT
[2])