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