Commit | Line | Data |
---|---|---|
c33820e5 DB |
1 | /* |
2 | * Copyright (c) 2007 Michael Niedermayer | |
3 | * | |
2912e87a | 4 | * This file is part of Libav. |
c33820e5 | 5 | * |
2912e87a | 6 | * Libav is free software; you can redistribute it and/or |
c33820e5 DB |
7 | * modify it under the terms of the GNU Lesser General Public |
8 | * License as published by the Free Software Foundation; either | |
9 | * version 2.1 of the License, or (at your option) any later version. | |
10 | * | |
2912e87a | 11 | * Libav is distributed in the hope that it will be useful, |
c33820e5 DB |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 | * Lesser General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU Lesser General Public | |
2912e87a | 17 | * License along with Libav; if not, write to the Free Software |
c33820e5 DB |
18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
19 | */ | |
0f340f8f MN |
20 | |
21 | #include <stdio.h> | |
f19a068e | 22 | #include <stdlib.h> |
0f340f8f MN |
23 | #include <inttypes.h> |
24 | ||
47cf98ef | 25 | static uint32_t state; |
4e81b5f5 DB |
26 | static uint32_t ran(void) |
27 | { | |
28 | return state = state * 1664525 + 1013904223; | |
47cf98ef MN |
29 | } |
30 | ||
4e81b5f5 | 31 | int main(int argc, char **argv) |
0f340f8f | 32 | { |
90527811 MM |
33 | FILE *f; |
34 | int count, maxburst, length; | |
35 | ||
4e81b5f5 | 36 | if (argc < 5) { |
47cf98ef | 37 | printf("USAGE: trasher <filename> <count> <maxburst> <seed>\n"); |
90527811 MM |
38 | return 1; |
39 | } | |
40 | ||
4e81b5f5 DB |
41 | f = fopen(argv[1], "rb+"); |
42 | if (!f) { | |
90527811 MM |
43 | perror(argv[1]); |
44 | return 2; | |
45 | } | |
4e81b5f5 DB |
46 | count = atoi(argv[2]); |
47 | maxburst = atoi(argv[3]); | |
48 | state = atoi(argv[4]); | |
0f340f8f MN |
49 | |
50 | fseek(f, 0, SEEK_END); | |
4e81b5f5 | 51 | length = ftell(f); |
0f340f8f MN |
52 | fseek(f, 0, SEEK_SET); |
53 | ||
4e81b5f5 DB |
54 | while (count--) { |
55 | int burst = 1 + ran() * (uint64_t) (abs(maxburst) - 1) / UINT32_MAX; | |
56 | int pos = ran() * (uint64_t) length / UINT32_MAX; | |
0f340f8f MN |
57 | fseek(f, pos, SEEK_SET); |
58 | ||
4e81b5f5 DB |
59 | if (maxburst < 0) |
60 | burst = -maxburst; | |
0f340f8f | 61 | |
4e81b5f5 | 62 | if (pos + burst > length) |
0f340f8f MN |
63 | continue; |
64 | ||
4e81b5f5 DB |
65 | while (burst--) { |
66 | int val = ran() * 256ULL / UINT32_MAX; | |
0f340f8f | 67 | |
4e81b5f5 DB |
68 | if (maxburst < 0) |
69 | val = 0; | |
0f340f8f MN |
70 | |
71 | fwrite(&val, 1, 1, f); | |
72 | } | |
73 | } | |
74 | ||
75 | return 0; | |
76 | } |