]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/xstr/xstr.1
This commit was generated by cvs2svn to compensate for changes in r171827,
[FreeBSD/FreeBSD.git] / usr.bin / xstr / xstr.1
1 .\" Copyright (c) 1980, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgement:
14 .\"     This product includes software developed by the University of
15 .\"     California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     @(#)xstr.1      8.2 (Berkeley) 12/30/93
33 .\" $FreeBSD$
34 .\"
35 .Dd December 30, 1993
36 .Dt XSTR 1
37 .Os
38 .Sh NAME
39 .Nm xstr
40 .Nd "extract strings from C programs to implement shared strings"
41 .Sh SYNOPSIS
42 .Nm
43 .Op Fl cv
44 .Op Fl
45 .Op Ar
46 .Sh DESCRIPTION
47 The
48 .Nm
49 utility maintains a file
50 .Pa strings
51 into which strings in component parts of a large program are hashed.
52 These strings are replaced with references to this common area.
53 This serves to implement shared constant strings, most useful if they
54 are also read-only.
55 .Pp
56 The following options are available:
57 .Bl -tag -width indent
58 .It Fl
59 Read from the standard input.
60 .It Fl c
61 Extract the strings from the C source
62 .Ar file
63 or the standard input
64 .Pq Fl ,
65 replacing
66 string references by expressions of the form (&xstr[number])
67 for some number.
68 An appropriate declaration of
69 .Nm
70 is prepended to the file.
71 The resulting C text is placed in the file
72 .Pa x.c ,
73 to then be compiled.
74 The strings from this file are placed in the
75 .Pa strings
76 data base if they are not there already.
77 Repeated strings and strings which are suffixes of existing strings
78 do not cause changes to the data base.
79 .It Fl v
80 Verbose mode.
81 .El
82 .Pp
83 After all components of a large program have been compiled a file
84 .Pa xs.c
85 declaring the common
86 .Nm
87 space can be created by a command of the form
88 .Bd -literal -offset indent
89 xstr
90 .Ed
91 .Pp
92 The file
93 .Pa xs.c
94 should then be compiled and loaded with the rest
95 of the program.
96 If possible, the array can be made read-only (shared) saving
97 space and swap overhead.
98 .Pp
99 The
100 .Nm
101 utility can also be used on a single file.
102 A command
103 .Bd -literal -offset indent
104 xstr name
105 .Ed
106 .Pp
107 creates files
108 .Pa x.c
109 and
110 .Pa xs.c
111 as before, without using or affecting any
112 .Pa strings
113 file in the same directory.
114 .Pp
115 It may be useful to run
116 .Nm
117 after the C preprocessor if any macro definitions yield strings
118 or if there is conditional code which contains strings
119 which may not, in fact, be needed.
120 An appropriate command sequence for running
121 .Nm
122 after the C preprocessor is:
123 .Pp
124 .Bd -literal -offset indent -compact
125 cc \-E name.c | xstr \-c \-
126 cc \-c x.c
127 mv x.o name.o
128 .Ed
129 .Pp
130 The
131 .Nm
132 utility does not touch the file
133 .Pa strings
134 unless new items are added, thus
135 .Xr make 1
136 can avoid remaking
137 .Pa xs.o
138 unless truly necessary.
139 .Sh FILES
140 .Bl -tag -width /tmp/xsxx* -compact
141 .It Pa strings
142 data base of strings
143 .It Pa x.c
144 massaged C source
145 .It Pa xs.c
146 C source for definition of array `xstr'
147 .It Pa /tmp/xs*
148 temp file when `xstr name' does not touch
149 .Pa strings
150 .El
151 .Sh SEE ALSO
152 .Xr mkstr 1
153 .Sh HISTORY
154 The
155 .Nm
156 command appeared in
157 .Bx 3.0 .
158 .Sh BUGS
159 If a string is a suffix of another string in the data base,
160 but the shorter string is seen first by
161 .Nm
162 both strings will be placed in the data base, when just
163 placing the longer one there will do.