2013-12-06 12:04:52 +01:00
|
|
|
/* $NetBSD: ex_display.c,v 1.3 2013/11/25 22:43:46 christos Exp $ */
|
2013-01-22 12:03:53 +01:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1992, 1993, 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
* Copyright (c) 1992, 1993, 1994, 1995, 1996
|
|
|
|
* Keith Bostic. All rights reserved.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for redistribution information.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#ifndef lint
|
2013-12-06 12:04:52 +01:00
|
|
|
static const char sccsid[] = "Id: ex_display.c,v 10.15 2001/06/25 15:19:15 skimo Exp (Berkeley) Date: 2001/06/25 15:19:15 ";
|
2013-01-22 12:03:53 +01:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/queue.h>
|
|
|
|
|
|
|
|
#include <bitstring.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "../common/common.h"
|
|
|
|
#include "tag.h"
|
|
|
|
|
2013-12-06 12:04:52 +01:00
|
|
|
static int is_prefix __P((ARGS *, const CHAR_T *));
|
2013-01-22 12:03:53 +01:00
|
|
|
static int bdisplay __P((SCR *));
|
|
|
|
static void db __P((SCR *, CB *, const char *));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ex_display -- :display b[uffers] | c[onnections] | s[creens] | t[ags]
|
|
|
|
*
|
|
|
|
* Display cscope connections, buffers, tags or screens.
|
|
|
|
*
|
|
|
|
* PUBLIC: int ex_display __P((SCR *, EXCMD *));
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
ex_display(SCR *sp, EXCMD *cmdp)
|
|
|
|
{
|
2013-12-06 12:04:52 +01:00
|
|
|
ARGS *arg;
|
|
|
|
|
|
|
|
arg = cmdp->argv[0];
|
|
|
|
|
|
|
|
switch (arg->bp[0]) {
|
|
|
|
case L('b'):
|
|
|
|
if (!is_prefix(arg, L("buffers")))
|
2013-01-22 12:03:53 +01:00
|
|
|
break;
|
|
|
|
return (bdisplay(sp));
|
2013-12-06 12:04:52 +01:00
|
|
|
case L('c'):
|
|
|
|
if (!is_prefix(arg, L("connections")))
|
2013-01-22 12:03:53 +01:00
|
|
|
break;
|
|
|
|
return (cscope_display(sp));
|
2013-12-06 12:04:52 +01:00
|
|
|
case L('s'):
|
|
|
|
if (!is_prefix(arg, L("screens")))
|
2013-01-22 12:03:53 +01:00
|
|
|
break;
|
|
|
|
return (ex_sdisplay(sp));
|
2013-12-06 12:04:52 +01:00
|
|
|
case L('t'):
|
|
|
|
if (!is_prefix(arg, L("tags")))
|
2013-01-22 12:03:53 +01:00
|
|
|
break;
|
|
|
|
return (ex_tag_display(sp));
|
|
|
|
}
|
|
|
|
ex_emsg(sp, cmdp->cmd->usage, EXM_USAGE);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
2013-12-06 12:04:52 +01:00
|
|
|
/*
|
|
|
|
* is_prefix --
|
|
|
|
*
|
|
|
|
* Check that a command argument matches a prefix of a given string.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
is_prefix(ARGS *arg, const CHAR_T *str)
|
|
|
|
{
|
|
|
|
return arg->len <= STRLEN(str) && !MEMCMP(arg->bp, str, arg->len);
|
|
|
|
}
|
|
|
|
|
2013-01-22 12:03:53 +01:00
|
|
|
/*
|
|
|
|
* bdisplay --
|
|
|
|
*
|
|
|
|
* Display buffers.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
bdisplay(SCR *sp)
|
|
|
|
{
|
|
|
|
CB *cbp;
|
|
|
|
|
2013-12-06 12:04:52 +01:00
|
|
|
if (LIST_EMPTY(&sp->wp->cutq) && sp->wp->dcbp == NULL) {
|
2013-01-22 12:03:53 +01:00
|
|
|
msgq(sp, M_INFO, "123|No cut buffers to display");
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Display regular cut buffers. */
|
2013-12-06 12:04:52 +01:00
|
|
|
LIST_FOREACH(cbp, &sp->wp->cutq, q) {
|
2013-01-22 12:03:53 +01:00
|
|
|
if (ISDIGIT(cbp->name))
|
|
|
|
continue;
|
2013-12-06 12:04:52 +01:00
|
|
|
if (!TAILQ_EMPTY(&cbp->textq))
|
2013-01-22 12:03:53 +01:00
|
|
|
db(sp, cbp, NULL);
|
|
|
|
if (INTERRUPTED(sp))
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
/* Display numbered buffers. */
|
2013-12-06 12:04:52 +01:00
|
|
|
LIST_FOREACH(cbp, &sp->wp->cutq, q) {
|
2013-01-22 12:03:53 +01:00
|
|
|
if (!ISDIGIT(cbp->name))
|
|
|
|
continue;
|
2013-12-06 12:04:52 +01:00
|
|
|
if (!TAILQ_EMPTY(&cbp->textq))
|
2013-01-22 12:03:53 +01:00
|
|
|
db(sp, cbp, NULL);
|
|
|
|
if (INTERRUPTED(sp))
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
/* Display default buffer. */
|
|
|
|
if ((cbp = sp->wp->dcbp) != NULL)
|
|
|
|
db(sp, cbp, "default buffer");
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* db --
|
|
|
|
* Display a buffer.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
db(SCR *sp, CB *cbp, const char *np)
|
|
|
|
{
|
|
|
|
CHAR_T *p;
|
|
|
|
TEXT *tp;
|
|
|
|
size_t len;
|
|
|
|
const unsigned char *name = (const void *)np;
|
|
|
|
|
|
|
|
(void)ex_printf(sp, "********** %s%s\n",
|
|
|
|
name == NULL ? KEY_NAME(sp, cbp->name) : name,
|
|
|
|
F_ISSET(cbp, CB_LMODE) ? " (line mode)" : " (character mode)");
|
2013-12-06 12:04:52 +01:00
|
|
|
TAILQ_FOREACH(tp, &cbp->textq, q) {
|
2013-01-22 12:03:53 +01:00
|
|
|
for (len = tp->len, p = tp->lb; len--; ++p) {
|
|
|
|
(void)ex_puts(sp, (char *)KEY_NAME(sp, *p));
|
|
|
|
if (INTERRUPTED(sp))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
(void)ex_puts(sp, "\n");
|
|
|
|
}
|
|
|
|
}
|