75832dca67d8469eaebb754ca8e1d5ace82ea5e7
[xfstests-dev.git] / src / fill.c
1 /*
2  * Copyright (c) 2000-2001 Silicon Graphics, Inc.  All Rights Reserved.
3  * 
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms of version 2 of the GNU General Public License as
6  * published by the Free Software Foundation.
7  * 
8  * This program is distributed in the hope that it would be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11  * 
12  * Further, this software is distributed without any warranty that it is
13  * free of the rightful claim of any third person regarding infringement
14  * or the like.  Any license provided herein, whether implied or
15  * otherwise, applies only to this software file.  Patent licenses, if
16  * any, provided herein do not apply to combinations of this program with
17  * other software, or any other product whatsoever.
18  * 
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, write the Free Software Foundation, Inc., 59
21  * Temple Place - Suite 330, Boston MA 02111-1307, USA.
22  * 
23  * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24  * Mountain View, CA  94043, or:
25  * 
26  * http://www.sgi.com 
27  * 
28  * For further information regarding this notice, see: 
29  * 
30  * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
31  */
32
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <string.h>
36 #include <errno.h>
37
38 /*
39  * fill pathname key nbyte
40  *
41  * use key to seed random number generator so data is deterministic
42  *
43  * lines are at most 72 bytes long so diff(1) does not choke
44  */
45
46 int
47 main(int argc, char **argv)
48 {
49     FILE                *f;
50     unsigned int        seed;
51     long                i;
52     int                 nbyte;
53     char                *hdr;
54     char                *hp;
55     char                c;
56
57     /* quick and dirty, no args checking */
58     if ((f = fopen(argv[1], "w")) == NULL) {
59         fprintf(stderr, "fill: cannot create \"%s\": %s\n", argv[1], strerror(errno));
60         exit(1);
61     }
62     seed = 0;
63     i = 0;
64     while (argv[2][i]) {
65         seed <<= 8;
66         seed |= argv[2][i];
67         i++;
68     }
69     srand(seed);
70
71     nbyte = atoi(argv[3]);
72
73     /*
74      * line format
75      *
76      * byte offset @ start of this line XXXXXXXXXXXX
77      * test iteration number XXXX
78      * key (usually file name) argv[2]
79      * random bytes to fill the line
80      */
81
82     hdr = (char *)malloc(12+1+4+1+strlen(argv[2])+1+1);
83     sprintf(hdr, "%012ld %04d %s ", (long int)0, 0, argv[2]);
84     hp = hdr;
85
86     for (i = 0; i < nbyte-1; i++) {
87         if (*hp) {
88             c = *hp;
89             hp++;
90         }
91         else if ((i % 72) == 71)
92             c = '\n';
93         else
94             c = 32+(rand() % (128-32));
95         fputc(c, f);
96         if (c == '\n') {
97             hp = hdr;
98             sprintf(hdr, "%012ld %04d %s ", i+1, 0, argv[2]);
99         }
100     }
101     fputc('\n', f);
102
103     exit(0);
104 }