1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate * CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate *
4*7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate * with the License.
8*7c478bd9Sstevel@tonic-gate *
9*7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate * and limitations under the License.
13*7c478bd9Sstevel@tonic-gate *
14*7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate *
20*7c478bd9Sstevel@tonic-gate * CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate */
22*7c478bd9Sstevel@tonic-gate /* Copyright (c) 1988 AT&T */
23*7c478bd9Sstevel@tonic-gate /* All Rights Reserved */
24*7c478bd9Sstevel@tonic-gate
25*7c478bd9Sstevel@tonic-gate
26*7c478bd9Sstevel@tonic-gate /*
27*7c478bd9Sstevel@tonic-gate * Copyright (c) 1999 by Sun Microsystems, Inc.
28*7c478bd9Sstevel@tonic-gate * All rights reserved.
29*7c478bd9Sstevel@tonic-gate */
30*7c478bd9Sstevel@tonic-gate
31*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI"
32*7c478bd9Sstevel@tonic-gate
33*7c478bd9Sstevel@tonic-gate /*
34*7c478bd9Sstevel@tonic-gate * cscope - interactive C symbol cross-reference
35*7c478bd9Sstevel@tonic-gate *
36*7c478bd9Sstevel@tonic-gate * file editing functions
37*7c478bd9Sstevel@tonic-gate */
38*7c478bd9Sstevel@tonic-gate
39*7c478bd9Sstevel@tonic-gate #include <curses.h> /* KEY_BREAK and refresh */
40*7c478bd9Sstevel@tonic-gate #include <libgen.h>
41*7c478bd9Sstevel@tonic-gate #include <stdio.h>
42*7c478bd9Sstevel@tonic-gate #include "global.h"
43*7c478bd9Sstevel@tonic-gate
44*7c478bd9Sstevel@tonic-gate
45*7c478bd9Sstevel@tonic-gate /* edit this displayed reference */
46*7c478bd9Sstevel@tonic-gate
47*7c478bd9Sstevel@tonic-gate void
editref(int i)48*7c478bd9Sstevel@tonic-gate editref(int i)
49*7c478bd9Sstevel@tonic-gate {
50*7c478bd9Sstevel@tonic-gate char file[PATHLEN + 1]; /* file name */
51*7c478bd9Sstevel@tonic-gate char linenum[NUMLEN + 1]; /* line number */
52*7c478bd9Sstevel@tonic-gate
53*7c478bd9Sstevel@tonic-gate /* verify that there is a references found file */
54*7c478bd9Sstevel@tonic-gate if (refsfound == NULL) {
55*7c478bd9Sstevel@tonic-gate return;
56*7c478bd9Sstevel@tonic-gate }
57*7c478bd9Sstevel@tonic-gate /* get the selected line */
58*7c478bd9Sstevel@tonic-gate seekline(i + topline);
59*7c478bd9Sstevel@tonic-gate
60*7c478bd9Sstevel@tonic-gate /* get the file name and line number */
61*7c478bd9Sstevel@tonic-gate if (fscanf(refsfound, "%s%*s%s", file, linenum) == 2) {
62*7c478bd9Sstevel@tonic-gate edit(file, linenum); /* edit it */
63*7c478bd9Sstevel@tonic-gate }
64*7c478bd9Sstevel@tonic-gate seekline(topline); /* restore the line pointer */
65*7c478bd9Sstevel@tonic-gate }
66*7c478bd9Sstevel@tonic-gate
67*7c478bd9Sstevel@tonic-gate /* edit all references */
68*7c478bd9Sstevel@tonic-gate
69*7c478bd9Sstevel@tonic-gate void
editall(void)70*7c478bd9Sstevel@tonic-gate editall(void)
71*7c478bd9Sstevel@tonic-gate {
72*7c478bd9Sstevel@tonic-gate char file[PATHLEN + 1]; /* file name */
73*7c478bd9Sstevel@tonic-gate char linenum[NUMLEN + 1]; /* line number */
74*7c478bd9Sstevel@tonic-gate int c;
75*7c478bd9Sstevel@tonic-gate
76*7c478bd9Sstevel@tonic-gate /* verify that there is a references found file */
77*7c478bd9Sstevel@tonic-gate if (refsfound == NULL) {
78*7c478bd9Sstevel@tonic-gate return;
79*7c478bd9Sstevel@tonic-gate }
80*7c478bd9Sstevel@tonic-gate /* get the first line */
81*7c478bd9Sstevel@tonic-gate seekline(1);
82*7c478bd9Sstevel@tonic-gate
83*7c478bd9Sstevel@tonic-gate /* get each file name and line number */
84*7c478bd9Sstevel@tonic-gate while (fscanf(refsfound, "%s%*s%s%*[^\n]", file, linenum) == 2) {
85*7c478bd9Sstevel@tonic-gate edit(file, linenum); /* edit it */
86*7c478bd9Sstevel@tonic-gate if (editallprompt == YES) {
87*7c478bd9Sstevel@tonic-gate putmsg("Type ^D to stop editing all lines, "
88*7c478bd9Sstevel@tonic-gate "or any other character to continue: ");
89*7c478bd9Sstevel@tonic-gate if ((c = mygetch()) == EOF || c == ctrl('D') ||
90*7c478bd9Sstevel@tonic-gate c == ctrl('Z') || c == KEY_BREAK) {
91*7c478bd9Sstevel@tonic-gate /* needed for interrupt on first time */
92*7c478bd9Sstevel@tonic-gate (void) refresh();
93*7c478bd9Sstevel@tonic-gate break;
94*7c478bd9Sstevel@tonic-gate }
95*7c478bd9Sstevel@tonic-gate }
96*7c478bd9Sstevel@tonic-gate }
97*7c478bd9Sstevel@tonic-gate seekline(topline);
98*7c478bd9Sstevel@tonic-gate }
99*7c478bd9Sstevel@tonic-gate
100*7c478bd9Sstevel@tonic-gate /* call the editor */
101*7c478bd9Sstevel@tonic-gate
102*7c478bd9Sstevel@tonic-gate void
edit(char * file,char * linenum)103*7c478bd9Sstevel@tonic-gate edit(char *file, char *linenum)
104*7c478bd9Sstevel@tonic-gate {
105*7c478bd9Sstevel@tonic-gate char msg[MSGLEN + 1]; /* message */
106*7c478bd9Sstevel@tonic-gate char plusnum[NUMLEN + 2]; /* line number option */
107*7c478bd9Sstevel@tonic-gate char *s;
108*7c478bd9Sstevel@tonic-gate
109*7c478bd9Sstevel@tonic-gate (void) sprintf(msg, "%s +%s %s", editor, linenum, file);
110*7c478bd9Sstevel@tonic-gate putmsg(msg);
111*7c478bd9Sstevel@tonic-gate (void) sprintf(plusnum, "+%s", linenum);
112*7c478bd9Sstevel@tonic-gate
113*7c478bd9Sstevel@tonic-gate /* if this is the more or page commands */
114*7c478bd9Sstevel@tonic-gate if (strcmp(s = basename(editor), "more") == 0 ||
115*7c478bd9Sstevel@tonic-gate strcmp(s, "page") == 0) {
116*7c478bd9Sstevel@tonic-gate /*
117*7c478bd9Sstevel@tonic-gate * get it to pause after displaying a file smaller
118*7c478bd9Sstevel@tonic-gate * than the screen length
119*7c478bd9Sstevel@tonic-gate */
120*7c478bd9Sstevel@tonic-gate (void) execute(editor, editor, plusnum, file, "/dev/null",
121*7c478bd9Sstevel@tonic-gate (char *)NULL);
122*7c478bd9Sstevel@tonic-gate } else {
123*7c478bd9Sstevel@tonic-gate (void) execute(editor, editor, plusnum, file, (char *)NULL);
124*7c478bd9Sstevel@tonic-gate }
125*7c478bd9Sstevel@tonic-gate }
126