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.\" 34.Dd December 30, 1993 35.Dt XSTR 1 36.Os BSD 3 37.Sh NAME 38.Nm xstr 39.Nd "extract strings from C programs to implement shared strings" 40.Sh SYNOPSIS 41.Nm xstr 42.Op Fl c 43.Op Fl 44.Op Fl v 45.Op Ar file 46.Sh DESCRIPTION 47.Nm Xstr 48maintains a file 49.Pa strings 50into which strings in component parts of a large program are hashed. 51These strings are replaced with references to this common area. 52This serves to implement shared constant strings, most useful if they 53are also read-only. 54.Pp 55Available options: 56.Bl -tag -width Ds 57.It Fl 58.Nm Xstr 59reads from the standard input. 60.It Fl c 61.Nm Xstr 62will extract the strings from the C source 63.Ar file 64or the standard input 65.Pq Fl , 66replacing 67string references by expressions of the form (&xstr[number]) 68for some number. 69An appropriate declaration of 70.Nm 71is prepended to the file. 72The resulting C text is placed in the file 73.Pa x.c , 74to then be compiled. 75The strings from this file are placed in the 76.Pa strings 77data base if they are not there already. 78Repeated strings and strings which are suffixes of existing strings 79do not cause changes to the data base. 80.It Fl v 81Verbose mode. 82.El 83.Pp 84After all components of a large program have been compiled a file 85.Pa xs.c 86declaring the common 87.Nm xstr 88space can be created by a command of the form 89.Bd -literal -offset indent 90xstr 91.Ed 92.Pp 93The file 94.Pa xs.c 95should then be compiled and loaded with the rest 96of the program. 97If possible, the array can be made read-only (shared) saving 98space and swap overhead. 99.Pp 100.Nm Xstr 101can also be used on a single file. 102A command 103.Bd -literal -offset indent 104xstr name 105.Ed 106.Pp 107creates files 108.Pa x.c 109and 110.Pa xs.c 111as before, without using or affecting any 112.Pa strings 113file in the same directory. 114.Pp 115It may be useful to run 116.Nm 117after the C preprocessor if any macro definitions yield strings 118or if there is conditional code which contains strings 119which may not, in fact, be needed. 120An appropriate command sequence for running 121.Nm xstr 122after the C preprocessor is: 123.Pp 124.Bd -literal -offset indent -compact 125cc \-E name.c | xstr \-c \- 126cc \-c x.c 127mv x.o name.o 128.Ed 129.Pp 130.Nm Xstr 131does not touch the file 132.Pa strings 133unless new items are added, thus 134.Xr make 1 135can avoid remaking 136.Pa xs.o 137unless truly necessary. 138.Sh FILES 139.Bl -tag -width /tmp/xsxx* -compact 140.It Pa strings 141Data base of strings 142.It Pa x.c 143Massaged C source 144.It Pa xs.c 145C source for definition of array `xstr' 146.It Pa /tmp/xs* 147Temp file when `xstr name' doesn't touch 148.Pa strings 149.El 150.Sh SEE ALSO 151.Xr mkstr 1 152.Sh BUGS 153If a string is a suffix of another string in the data base, 154but the shorter string is seen first by 155.Nm 156both strings will be placed in the data base, when just 157placing the longer one there will do. 158.Sh HISTORY 159The 160.Nm 161command appeared in 162.Bx 3.0 . 163