/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#include "../file_common.h"
#include <libgen.h>
/*
* Writes (or appends) a given value to a file repeatedly.
* See header file for defaults.
*/
static void usage(void);
int
{
int bigfd;
int c;
int oflag = 0;
int err = 0;
int k;
long i;
/*
* Default Parameters
*/
int verbose = 0;
int rsync = 0;
int wsync = 0;
/*
* Process Arguments
*/
switch (c) {
case 'b':
break;
case 'c':
break;
case 'd':
break;
case 's':
break;
case 'f':
break;
case 'o':
break;
case 'v':
verbose = 1;
break;
case 'w':
wsync = 1;
break;
case 'r':
rsync = 1;
break;
case '?':
usage();
break;
}
}
/*
* Validate Parameters
*/
if (!filename) {
(void) printf("Filename not specified (-f <file>)\n");
err++;
}
if (!operation) {
(void) printf("Operation not specified (-o <operation>).\n");
err++;
}
if (block_size > BIGBUFFERSIZE) {
(void) printf("block_size is too large max==%d.\n",
err++;
}
/*
* Prepare the buffer and determine the requested operation
*/
k = 0;
for (i = 0; i < block_size; i++) {
bigbuffer[i] = nxtfillchar;
if (fillchar == 0) {
if ((k % DATA_RANGE) == 0) {
k = 0;
}
nxtfillchar = k++;
}
}
/*
* using the strncmp of operation will make the operation match the
* first shortest match - as the operations are unique from the first
* character this means that we match single character operations
*/
} else {
(void) printf("valid operations are <create|append> not '%s'\n",
usage();
}
if (rsync) {
}
if (wsync) {
}
/*
* accordingly and perform a write of the appropriate type.
*/
}
(void) printf("llseek %s (%lld/%lld) failed [%s]%d.Aborting!\n",
}
if (verbose) {
(void) printf("%s: block_size = %d, write_count = %d, "
}
for (i = 0; i < write_count; i++) {
ssize_t n;
(void) printf("write failed (%ld), good_writes = %lld, "
"error: %s[%d]\n", (long)n, good_writes,
errno);
}
good_writes++;
}
if (verbose) {
(void) printf("Success: good_writes = %lld (%lld)\n",
}
return (0);
}
static void
usage(void)
{
(void) printf("Usage: %s [-v] -o {create,overwrite,append} -f file_name"
" [-b block_size]\n"
"\t[-s offset] [-c write_count] [-d data]\n"
"\twhere [data] equal to zero causes chars "
if (exec) {
}
exit(1);
}