-
Notifications
You must be signed in to change notification settings - Fork 0
/
copiar.cpp
282 lines (232 loc) · 7.4 KB
/
copiar.cpp
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
#include <fcntl.h>
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <time.h>
#include <unistd.h>
// Constantes
const char c = 'o';
const int b = 1;
const int Kb = 1024;
const int Mb = 1024 * 1024;
const int Gb = 1024 * 1024 * 1024;
struct timeval tempo1, tempo2;
struct timezone tzp;
// Protótipos
void copyFileFunction();
void copyFileSyscall();
void createFileFunction();
void createFileSyscall();
void fileFunctionCopier(int);
void fileSyscallCopier(int);
void fileFunctionCreator(int, int);
void fileSyscallCreator(int, int);
void fileCreator();
void menu();
// C++ stuff
using namespace std;
// The very beginning
int main() {
menu();
}
void copyFileFunction() {
printf("\nCopiando arquivos por função!\n\n");
for(int i=1; i<=4; i++) {
if(i == 1) { //b
printf("Copiando %iº arquivo de 1b.\n", i);
fileFunctionCopier(i);
printf("Arquivo file%i.in copiado!\n\n", i);
}
if (i == 2) { //Kb
printf("Copiando %iº arquivo de 1Kb.\n", i);
fileFunctionCopier(i);
printf("Arquivo file%i.in copiado!\n\n", i);
}
if (i == 3) { //Mb
printf("Copiando %iº arquivo de 1Mb.\n", i);
fileFunctionCopier(i);
printf("Arquivo file%i.in copiado!\n\n", i);
}
if (i == 4) { //Gb
printf("Copiando %iº arquivo de 1Gb (Vai demorar um pouco!).\n", i);
fileFunctionCopier(i);
printf("Arquivo file%i.in copiado!\n\n", i);
}
}
}
void copyFileSyscall() {
printf("\nCopiando arquivos por syscall!\n\n");
for(int i=1; i<=4; i++) { // (<=)Right
if(i == 1) { //b
printf("Copiando %iº arquivo de 1b.\n", i);
fileSyscallCopier(i);
printf("Arquivo file%i.in copiado!\n\n", i);
}
if (i == 2) { //Kb
printf("Copiando %iº arquivo de 1Kb.\n", i);
fileSyscallCopier(i);
printf("Arquivo file%i.in copiado!\n\n", i);
}
if (i == 3) { //Mb
printf("Copiando %iº arquivo de 1Mb.\n", i);
fileSyscallCopier(i);
printf("Arquivo file%i.in copiado!\n\n", i);
}
if (i == 4) { //Gb
printf("Copiando %iº arquivo de 1Gb (Vai demorar um pouco!).\n", i);
fileSyscallCopier(i);
printf("Arquivo file%i.in copiado!\n\n", i);
}
}
}
void createFileFunction() {
printf("\nCriando arquivos por função!\n\n");
for(int i=1; i<=4; i++) {
if(i == 1) { //b
printf("Criando %iº arquivo de 1b.\n", i);
fileFunctionCreator(i, b);
printf("Arquivo file%i.in criado!\n\n", i);
}
if (i == 2) { //Kb
printf("Criando %iº arquivo de 1Kb.\n", i);
fileFunctionCreator(i, Kb);
printf("Arquivo file%i.in criado!\n\n", i);
}
if (i == 3) { //Mb
printf("Criando %iº arquivo de 1Mb.\n", i);
fileFunctionCreator(i, Mb);
printf("Arquivo file%i.in criado!\n\n", i);
}
if (i == 4) { //Gb
printf("Criando %iº arquivo de 1Gb (Vai demorar um pouco!).\n", i);
fileFunctionCreator(i, Gb);
printf("Arquivo file%i.in criado!\n\n", i);
}
}
}
void createFileSyscall() {
printf("\nCriando arquivos por syscall!\n\n");
for(int i=1; i<=4; i++) { // (<=)Right
if(i == 1) { //b
printf("Criando %iº arquivo de 1b.\n", i);
fileSyscallCreator(i, b);
printf("Arquivo file%i.in criado!\n\n", i);
}
if (i == 2) { //Kb
printf("Criando %iº arquivo de 1Kb.\n", i);
fileSyscallCreator(i, Kb);
printf("Arquivo file%i.in criado!\n\n", i);
}
if (i == 3) { //Mb
printf("Criando %iº arquivo de 1Mb.\n", i);
fileSyscallCreator(i, Mb);
printf("Arquivo file%i.in criado!\n\n", i);
}
if (i == 4) { //Gb
printf("Criando %iº arquivo de 1Gb (Vai demorar um pouco!).\n", i);
fileSyscallCreator(i, Gb);
printf("Arquivo file%i.in criado!\n\n", i);
}
}
}
void fileFunctionCopier(int num) {
FILE* file;
FILE* fileCopied;
double tempo;
char ch;
char fileName1[64];
char fileName2[64];
sprintf(fileName1, "file%i.in", num);
sprintf(fileName2, "file%i.out", num);
// Openning file
file = fopen(fileName1, "r");
fileCopied = fopen(fileName2, "w");
gettimeofday(&tempo1, &tzp); // Start timing
while((ch = fgetc(file)) != EOF) fputc(ch, fileCopied);
gettimeofday(&tempo2, &tzp); // End timing
//Closing files
fclose(file);
// fclose(fileCopied);
tempo = (double) (tempo2.tv_sec - tempo1.tv_sec) + (((double) (tempo2.tv_usec - tempo1.tv_usec)) / 1000000);
printf("Tempo: %.30f\n", tempo);
}
void fileSyscallCopier(int num) {
int file, fileCopied;
double tempo;
char ch;
char fileName1[64];
char fileName2[64];
sprintf(fileName1, "SYSfile%i.in", num);
sprintf(fileName2, "SYSfile%i.out", num);
// Openning file
file = open(fileName1, O_RDONLY);
fileCopied = open(fileName2, O_WRONLY| O_CREAT,S_IRUSR|S_IWUSR);
gettimeofday(&tempo1, &tzp); // Start timing
while(read(file,&ch,1) == 1) write(fileCopied,&c,1);
gettimeofday(&tempo2, &tzp); // End timing
//Closing file
close(file);
close(fileCopied);
tempo = (double) (tempo2.tv_sec - tempo1.tv_sec) + (((double) (tempo2.tv_usec - tempo1.tv_usec)) / 1000000);
printf("Tempo: %.30f\n", tempo);
}
void fileFunctionCreator(int num, int size) {
FILE* file;
double tempo;
char fileName[64];
sprintf(fileName, "file%i.in", num);
// Openning file
file = fopen(fileName, "w");
gettimeofday(&tempo1, &tzp); // Start timing
for(int i=0; i < size; i++) fputc(c, file);
gettimeofday(&tempo2, &tzp); // End timing
//Closing file
fclose(file);
tempo = (double) (tempo2.tv_sec - tempo1.tv_sec) + (((double) (tempo2.tv_usec - tempo1.tv_usec)) / 1000000);
printf("Tempo: %.30f\n", tempo);
}
void fileSyscallCreator(int num, int size) {
int file;
double tempo;
char fileName[64];
sprintf(fileName, "SYSfile%i.in", num);
// Openning file
file = open(fileName, O_WRONLY| O_CREAT,S_IRUSR|S_IWUSR);
gettimeofday(&tempo1, &tzp); // Start timing
for(int i=0; i < size; i++) write(file, &c, 1);
gettimeofday(&tempo2, &tzp); // End timing
//Closing file
close(file);
tempo = (double) (tempo2.tv_sec - tempo1.tv_sec) + (((double) (tempo2.tv_usec - tempo1.tv_usec)) / 1000000);
printf("Tempo: %.30f\n", tempo);
}
void menu() {
int choice;
printf("1 - Criar os arquivos por FUNÇÃO\n");
printf("2 - Criar os arquivos por SYSCALL\n");
printf("3 - Copiar os arquivos por FUNÇÃO\n");
printf("4 - Copiar os arquivos por SYSCALL\n");
cin >> choice;
switch(choice) {
case 1:
createFileFunction();
break;
case 2:
createFileSyscall();
break;
case 3:
copyFileFunction();
break;
case 4:
copyFileSyscall();
break;
default:
printf("Mano, ajuda ai\n");
menu();
break;
}
}