1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
/* trunc.c: Set the size of an existing file, or create a file of a
* specified size.
*
* Copyright (C) 2008 Micah J. Cowan
*
* Copying and distribution of this file, with or without modification,
* are permitted in any medium without royalty provided the copyright
* notice and this notice are preserved. */
#include <errno.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#define PROGRAM_NAME "trunc"
void
usage (FILE *f)
{
fputs (
PROGRAM_NAME " [-c] file sz\n\
\n\
Set the filesize of FILE to SIZE.\n\
\n\
-c: create FILE if it doesn't exist.\n\
\n\
Multiplier suffixes for SIZE (case-insensitive):\n\
k: SIZE * 1024\n\
m: SIZE * 1024 * 1024\n", f);
}
off_t
get_size (const char str[])
{
unsigned long val;
int suffix;
char *end;
errno = 0;
val = strtoul(str, &end, 10);
if (end == str)
{
fputs (PROGRAM_NAME ": size is not a number.\n", stderr);
usage (stderr);
exit (EXIT_FAILURE);
}
else if (errno == ERANGE
|| (unsigned long)(off_t)val != val)
{
fputs (PROGRAM_NAME ": size is out of range.\n", stderr);
exit (EXIT_FAILURE);
}
suffix = tolower ((unsigned char) end[0]);
if (suffix == 'k')
{
val *= 1024;
}
else if (suffix == 'm')
{
val *= 1024 * 1024;
}
return val;
}
int
main (int argc, char *argv[])
{
const char *fname;
const char *szstr;
off_t sz;
int create = 0;
int option;
int fd;
#ifdef ENABLE_NLS
/* Set the current locale. */
setlocale (LC_ALL, "");
/* Set the text message domain. */
bindtextdomain ("wget", LOCALEDIR);
textdomain ("wget");
#endif /* ENABLE_NLS */
/* Parse options. */
while ((option = getopt (argc, argv, "c")) != -1)
{
switch (option) {
case 'c':
create = 1;
break;
case '?':
fprintf (stderr, PROGRAM_NAME ": Unrecognized option `%c'.\n\n",
optopt);
usage (stderr);
exit (EXIT_FAILURE);
default:
/* We shouldn't reach here. */
abort();
}
}
if (argv[optind] == NULL
|| argv[optind+1] == NULL
|| argv[optind+2] != NULL)
{
usage (stderr);
exit (EXIT_FAILURE);
}
fname = argv[optind];
szstr = argv[optind+1];
sz = get_size(szstr);
if (create)
{
mode_t mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH;
fd = open(fname, O_WRONLY | O_CREAT, mode);
}
else
{
fd = open(fname, O_WRONLY);
}
if (fd == -1)
{
perror (PROGRAM_NAME ": open");
exit (EXIT_FAILURE);
}
if (ftruncate(fd, sz) == -1)
{
perror (PROGRAM_NAME ": truncate");
exit (EXIT_FAILURE);
}
if (close (fd) < 0)
{
perror (PROGRAM_NAME ": close");
exit (EXIT_FAILURE);
}
return 0;
}
|