xref: /freebsd/usr.bin/xstr/xstr.1 (revision 46122f64a613f1ef232d4adbeeb4753d725e5102)
19b50d902SRodney W. Grimes.\" Copyright (c) 1980, 1993
29b50d902SRodney W. Grimes.\"	The Regents of the University of California.  All rights reserved.
39b50d902SRodney W. Grimes.\"
49b50d902SRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without
59b50d902SRodney W. Grimes.\" modification, are permitted provided that the following conditions
69b50d902SRodney W. Grimes.\" are met:
79b50d902SRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright
89b50d902SRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer.
99b50d902SRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright
109b50d902SRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer in the
119b50d902SRodney W. Grimes.\"    documentation and/or other materials provided with the distribution.
129b50d902SRodney W. Grimes.\" 3. All advertising materials mentioning features or use of this software
139b50d902SRodney W. Grimes.\"    must display the following acknowledgement:
149b50d902SRodney W. Grimes.\"	This product includes software developed by the University of
159b50d902SRodney W. Grimes.\"	California, Berkeley and its contributors.
169b50d902SRodney W. Grimes.\" 4. Neither the name of the University nor the names of its contributors
179b50d902SRodney W. Grimes.\"    may be used to endorse or promote products derived from this software
189b50d902SRodney W. Grimes.\"    without specific prior written permission.
199b50d902SRodney W. Grimes.\"
209b50d902SRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
219b50d902SRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
229b50d902SRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
239b50d902SRodney W. Grimes.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
249b50d902SRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
259b50d902SRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
269b50d902SRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
279b50d902SRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
289b50d902SRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
299b50d902SRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
309b50d902SRodney W. Grimes.\" SUCH DAMAGE.
319b50d902SRodney W. Grimes.\"
329b50d902SRodney W. Grimes.\"     @(#)xstr.1	8.2 (Berkeley) 12/30/93
33c3aac50fSPeter Wemm.\" $FreeBSD$
349b50d902SRodney W. Grimes.\"
359b50d902SRodney W. Grimes.Dd December 30, 1993
369b50d902SRodney W. Grimes.Dt XSTR 1
3762500372SRuslan Ermilov.Os
389b50d902SRodney W. Grimes.Sh NAME
399b50d902SRodney W. Grimes.Nm xstr
409b50d902SRodney W. Grimes.Nd "extract strings from C programs to implement shared strings"
419b50d902SRodney W. Grimes.Sh SYNOPSIS
428fe908efSRuslan Ermilov.Nm
43f682f10cSRuslan Ermilov.Op Fl cv
449b50d902SRodney W. Grimes.Op Fl
45f682f10cSRuslan Ermilov.Op Ar
469b50d902SRodney W. Grimes.Sh DESCRIPTION
47e8937ba0SPhilippe CharnierThe
48e8937ba0SPhilippe Charnier.Nm
49e8937ba0SPhilippe Charnierutility maintains a file
509b50d902SRodney W. Grimes.Pa strings
519b50d902SRodney W. Grimesinto which strings in component parts of a large program are hashed.
529b50d902SRodney W. GrimesThese strings are replaced with references to this common area.
539b50d902SRodney W. GrimesThis serves to implement shared constant strings, most useful if they
549b50d902SRodney W. Grimesare also read-only.
559b50d902SRodney W. Grimes.Pp
5623b03a12SPhilippe CharnierThe following options are available:
5723b03a12SPhilippe Charnier.Bl -tag -width indent
589b50d902SRodney W. Grimes.It Fl
59e8937ba0SPhilippe CharnierRead from the standard input.
609b50d902SRodney W. Grimes.It Fl c
61e8937ba0SPhilippe CharnierExtract the strings from the C source
629b50d902SRodney W. Grimes.Ar file
639b50d902SRodney W. Grimesor the standard input
649b50d902SRodney W. Grimes.Pq Fl ,
659b50d902SRodney W. Grimesreplacing
6646122f64SRuslan Ermilovstring references by expressions of the form
6746122f64SRuslan Ermilov.Li (&xstr[number])
6846122f64SRuslan Ermilovfor some
6946122f64SRuslan Ermilov.Ar number .
709b50d902SRodney W. GrimesAn appropriate declaration of
7146122f64SRuslan Ermilov.Va xstr
729b50d902SRodney W. Grimesis prepended to the file.
739b50d902SRodney W. GrimesThe resulting C text is placed in the file
749b50d902SRodney W. Grimes.Pa x.c ,
759b50d902SRodney W. Grimesto then be compiled.
769b50d902SRodney W. GrimesThe strings from this file are placed in the
779b50d902SRodney W. Grimes.Pa strings
789b50d902SRodney W. Grimesdata base if they are not there already.
799b50d902SRodney W. GrimesRepeated strings and strings which are suffixes of existing strings
809b50d902SRodney W. Grimesdo not cause changes to the data base.
817720a19dSPhilippe Charnier.It Fl v
827720a19dSPhilippe CharnierVerbose mode.
839b50d902SRodney W. Grimes.El
849b50d902SRodney W. Grimes.Pp
859b50d902SRodney W. GrimesAfter all components of a large program have been compiled a file
869b50d902SRodney W. Grimes.Pa xs.c
879b50d902SRodney W. Grimesdeclaring the common
8846122f64SRuslan Ermilov.Va xstr
899b50d902SRodney W. Grimesspace can be created by a command of the form
9046122f64SRuslan Ermilov.Pp
9146122f64SRuslan Ermilov.Dl xstr
929b50d902SRodney W. Grimes.Pp
939b50d902SRodney W. GrimesThe file
949b50d902SRodney W. Grimes.Pa xs.c
959b50d902SRodney W. Grimesshould then be compiled and loaded with the rest
969b50d902SRodney W. Grimesof the program.
979b50d902SRodney W. GrimesIf possible, the array can be made read-only (shared) saving
989b50d902SRodney W. Grimesspace and swap overhead.
999b50d902SRodney W. Grimes.Pp
100e8937ba0SPhilippe CharnierThe
101e8937ba0SPhilippe Charnier.Nm
102e8937ba0SPhilippe Charnierutility can also be used on a single file.
1039b50d902SRodney W. GrimesA command
1049b50d902SRodney W. Grimes.Bd -literal -offset indent
1059b50d902SRodney W. Grimesxstr name
1069b50d902SRodney W. Grimes.Ed
1079b50d902SRodney W. Grimes.Pp
1089b50d902SRodney W. Grimescreates files
1099b50d902SRodney W. Grimes.Pa x.c
1109b50d902SRodney W. Grimesand
1119b50d902SRodney W. Grimes.Pa xs.c
1129b50d902SRodney W. Grimesas before, without using or affecting any
1139b50d902SRodney W. Grimes.Pa strings
1149b50d902SRodney W. Grimesfile in the same directory.
1159b50d902SRodney W. Grimes.Pp
1169b50d902SRodney W. GrimesIt may be useful to run
1177720a19dSPhilippe Charnier.Nm
1189b50d902SRodney W. Grimesafter the C preprocessor if any macro definitions yield strings
1199b50d902SRodney W. Grimesor if there is conditional code which contains strings
1209b50d902SRodney W. Grimeswhich may not, in fact, be needed.
1219b50d902SRodney W. GrimesAn appropriate command sequence for running
1228fe908efSRuslan Ermilov.Nm
1239b50d902SRodney W. Grimesafter the C preprocessor is:
1249b50d902SRodney W. Grimes.Pp
1259b50d902SRodney W. Grimes.Bd -literal -offset indent -compact
12646122f64SRuslan Ermilovcc -E name.c | xstr -c -
12746122f64SRuslan Ermilovcc -c x.c
1289b50d902SRodney W. Grimesmv x.o name.o
1299b50d902SRodney W. Grimes.Ed
1309b50d902SRodney W. Grimes.Pp
131e8937ba0SPhilippe CharnierThe
132e8937ba0SPhilippe Charnier.Nm
133e8937ba0SPhilippe Charnierutility does not touch the file
1349b50d902SRodney W. Grimes.Pa strings
1359b50d902SRodney W. Grimesunless new items are added, thus
1369b50d902SRodney W. Grimes.Xr make 1
1379b50d902SRodney W. Grimescan avoid remaking
1389b50d902SRodney W. Grimes.Pa xs.o
1399b50d902SRodney W. Grimesunless truly necessary.
1409b50d902SRodney W. Grimes.Sh FILES
14146122f64SRuslan Ermilov.Bl -tag -width ".Pa /tmp/xs*" -compact
1429b50d902SRodney W. Grimes.It Pa strings
14323b03a12SPhilippe Charnierdata base of strings
1449b50d902SRodney W. Grimes.It Pa x.c
14523b03a12SPhilippe Charniermassaged C source
1469b50d902SRodney W. Grimes.It Pa xs.c
14746122f64SRuslan ErmilovC source for definition of array
14846122f64SRuslan Ermilov.Va xstr
1499b50d902SRodney W. Grimes.It Pa /tmp/xs*
15046122f64SRuslan Ermilovtemporary file when
15146122f64SRuslan Ermilov.Dq Li "xstr name"
15246122f64SRuslan Ermilovdoes not touch
1539b50d902SRodney W. Grimes.Pa strings
1549b50d902SRodney W. Grimes.El
1559b50d902SRodney W. Grimes.Sh SEE ALSO
1569b50d902SRodney W. Grimes.Xr mkstr 1
1576c7216dfSRuslan Ermilov.Sh HISTORY
1586c7216dfSRuslan ErmilovThe
1596c7216dfSRuslan Ermilov.Nm
1606c7216dfSRuslan Ermilovcommand appeared in
1616c7216dfSRuslan Ermilov.Bx 3.0 .
1629b50d902SRodney W. Grimes.Sh BUGS
1639b50d902SRodney W. GrimesIf a string is a suffix of another string in the data base,
1649b50d902SRodney W. Grimesbut the shorter string is seen first by
1657720a19dSPhilippe Charnier.Nm
1669b50d902SRodney W. Grimesboth strings will be placed in the data base, when just
1679b50d902SRodney W. Grimesplacing the longer one there will do.
168