-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcp.c
413 lines (348 loc) · 8.13 KB
/
cp.c
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
/*************************** CP.C COPIE DE FICHIERS OU REPERTOIRES *************************/
/****************************
*
* AUTEURS: BJÖRN GORIATCHEFF
* SACHA LENARTOWICTZ
*
* DATE: 04/2016
* LANGUAGE: C, UNIX
* TYPE: SYSTEME
*
********************************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <dirent.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <errno.h>
#define BUFFER_SIZE 1000
/* Fonction: copie_file
* Entree: - un pointeur vers une chaine de caractères
* - un pointeur vers une chaine de caractères
* Sortie: - un entier
*
* Effectue la copie du fichier source vers le fichier cible via un buffer.
*/
int copie_file(char* source, char* cible)
{
printf("fichier\n");
int test_in = 0,test_out = 0;
char temp[BUFFER_SIZE];
struct stat statSource;
if(source[0]=='.')
{
return 0;
}
// ouverture des deux fichiers
printf("open %s\n", source);
int original = open(source, O_RDONLY);
if (original == -1) // on vérifie que le fichier est bien ouvert
{
printf("Erreur : impossible d'ouvrir le fichier source\n");
if (errno == EACCES)
{
printf("EACESS");
}
if (errno == EAGAIN)
{
printf("EAGAIN");
}
if (errno == EFAULT)
{
printf("EFAULT");
}
if (errno == EISDIR)
{
printf("EISDIR");
}
if (errno == ENFILE)
{
printf("ENFILE");
}
return -1;
}
int target = open(cible, O_WRONLY | O_CREAT );
if (target == -1)
{
printf("Erreur : impossible d'ouvrir le fichier cible\n");
return -1;
}
// récupération du statut du fichier source
if (stat(source, &statSource) == -1)
{
printf("Erreur : récupération du statut du fichier source impossible\n");
return -1;
}
//printf("\nstat source : %lo\n", (unsigned long)statSource.st_mode);
//on remplace le statut du fichier destination par celui du fichier source
chmod(cible, statSource.st_mode);
test_in = read(original,&temp,BUFFER_SIZE);
if (test_in == -1)
{
printf("Erreur : lecture du fichier source impossible\n");
}
// Tant qu'il n'y a pas d'erreur, on lit le fichier source et on le recopie
// dans le buffer
while((test_in=read(original,&temp,BUFFER_SIZE))>0 )
{
test_out = write(target,&temp,(ssize_t)test_in);
if (test_out == -1)
{
printf("Erreur : écriture dans le fichier destination impossible\n");
return -1;
}
}
// on vérifie que les protections du fichier cible sont les mêmes
stat(cible, &statSource);
//printf("stat cible : %lo\n", (unsigned long)statSource.st_mode);
// fermeture des fichiers
close(original);
close(target);
// on arrive ici si aucune erreur n'a été retourné
// on retourne donc 0
return 0;
}
/* Fonction: concat_filename
* Entree: - un tableau de caractères.
* - un tableau de caractères
* Sortie: un tableau de caractères
*
* Effectue la concatenation de la chaine de caractères nom1 et nom2 et la déverse dans une nouvelle chaine.
*/
char* concat_filename(char* nom1, char* nom2)
{
int long1,long2;
long1=strlen(nom1);
long2=strlen(nom2);
char* resultat = malloc(long1+long2+1);
if(nom1[long1-1] != '/')
{
long1+=1;
strcpy(resultat,nom1);
strcat(resultat,"/");
strcat(resultat,nom2);
}
else
{
strcpy(resultat,nom1);
strcat(resultat,nom2);
}
return resultat;
}
/*
*
* Fonction: new_directory
* Entree: une chaîne de caractères
* Sortie: /
*
* Creation d'un nouveau repertoire au path indiqué
*
*/
char* new_directory(char* path, mode_t mode)
{
int pos=0, sizepath=0,sizename=0,taille=65;
char* newpath;
char* oldpath;
char* dirname;
oldpath=malloc(sizeof(char)*taille);
getcwd(oldpath, taille-1);
while(errno==ERANGE)
{
taille+=10;
free(oldpath);
oldpath=malloc(sizeof(char)*taille);
getcwd(oldpath,taille-1);
}
while(path[pos]!='/')
{
sizepath++;
pos++;
}
sizename=strlen(path)-sizepath-1;
newpath=malloc(sizeof(char)*sizepath);
dirname=malloc(sizeof(char)*(sizename+1));
for (int k=0; k<strlen(path);k++)
{
if(k<sizepath)
{
newpath[k]=path[k];
}
else if(k>sizepath)
{
dirname[k-sizename]=path[k];
}
}
dirname[sizename]='\0';
chdir(newpath);
mkdir(dirname,S_IRUSR | S_IWUSR);
/* modification des droits */
chmod(dirname,mode);
chdir(oldpath);
free(newpath);
free(oldpath);
return dirname;
}
/*
* Fonction: copiedir
* Entree: - une chaine de caracteres
* - une chaine de caracteres
* Sortie: un entier
*
* copiedir effectue une copie du repertoire source vers le repertoire cible
*
*/
int copiedir(char* source, char* cible)
{
DIR* reper = opendir(source);
DIR* dest=opendir(cible); // On suppose que le repertoire est deja créé
char *fich1,*fich2;
//struct stat statSource;
if (reper != NULL)
{
struct dirent* entier;
readdir(reper);
readdir(reper);
while((entier = readdir(reper)) != NULL)
{
printf("%s\n", entier->d_name);
fich1=concat_filename(source,entier->d_name);
fich2=concat_filename(cible,entier->d_name);
copie_file(fich1,fich2);
}
closedir(reper);
closedir(dest);
}
return 0;
}
/* Fonction: test_concat
* Entree: /
* Sortie: un entier
*
* Verifie que la concatenation des deux chaines de caractères fonctionne normalement
* Affiche le resultat
*/
int test_concat()
{
char*bob="chainedecaract";
char*bib=" concatenationreuissie";
char* conc=concat_filename(bob,bib);
printf("%s\n", conc);
return 0;
}
/*Fonction: copie_rec
* Entree: une chaine de caracteres
* une chaine de caracteres
* Sortie: un entier
*
* Copie reccursive avec parcours dans un repertoire
*
*/
int copie_rec(char* source, char* cible)
{
printf("source: %s", source);
if (source==NULL)
{
printf("copie terminée: la source est vide. Indiquer un fichier à copier");
return 0;
}
else
{
struct stat statSource;
stat(source, &statSource);
if(S_ISDIR(statSource.st_mode)!=0) // Si la source est un repertoire, S_ISDIR renvoit 0
{
DIR* reper = opendir(source);
DIR* dest = opendir(cible);
if( reper == NULL)
{
printf("ouverture source impossible");
}
else if( dest == NULL)
{
printf("\ncreation du repertoire");
new_directory(cible, statSource.st_mode);
//copie_rec(source, cible); // On relance copie_rec sur le repertoire cible créé (RECCURSIVITE)
}
else
{
printf("copie de l'interieur du repertoire\n");
struct dirent* addresse;
readdir(reper);
readdir(reper);
while((addresse=readdir(reper))!=NULL)
{
//Si l'adresse pointe vers un repertoire
if(addresse->d_type==DT_DIR)
{
copie_rec(concat_filename(source,addresse->d_name),concat_filename(cible,addresse->d_name));
}
else
{
copie_file(concat_filename(source,addresse->d_name),concat_filename(cible,addresse->d_name));
}
}
closedir(reper);
closedir(dest);
}
}
else if(S_ISREG(statSource.st_mode)!=0) // Si la source est un fichier
{
copie_file(source, cible);
}
else
{
printf("format de la source non usuel");
}
}
return 0;
}
/* Fonction: main
* Entree: - via console
* Sortie: - un entier
*/
int cp(int argc, char* argv[])
{
printf("debut!\n");
if (argc != 3)
printf("Erreur : nombre d'arguments incorrect\n");
else
if (copie_rec(argv[1],argv[2]) == -1)
{
printf("Erreur : la copie du fichier a échoué\n");
}
else
{
printf("copie reussie\n");
}
return 0;
}
/* Fonction: concat_filename
* Entree: - un tableau de caractères.
* - un tableau de caractères
* Sortie: un tableau de caractères
*
* Effectue la concatenation de deux chaines de caractères et la déverse dans une nouvelle chaine.
*/
char* concat_filename_simple(char* nom1, char* nom2)
{
int long1,long2;
long1=strlen(nom1);
long2=strlen(nom2);
char* resultat = malloc(long1+long2);
if(nom1[long1-1] != '-')
{
long1+=1;
strcpy(resultat,nom1);
strcat(resultat,"-");
strcat(resultat,nom2);
}
else
{
strcpy(resultat,nom1);
strcat(resultat,nom2);
}
return resultat;
}