making note of my changes.
[oweals/busybox.git] / cp.c
1 /*
2  * Mini cp implementation for busybox
3  *
4  *
5  * Copyright (C) 1999 by Lineo, inc.
6  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #include "internal.h"
25 #include <stdio.h>
26 #include <time.h>
27 #include <utime.h>
28 #include <dirent.h>
29
30 static const char cp_usage[] = "cp [OPTION]... SOURCE DEST\n"
31     "   or: cp [OPTION]... SOURCE... DIRECTORY\n\n"
32     "Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n"
33     "\n"
34     "\t-a\tsame as -dpR\n"
35     "\t-d\tpreserve links\n"
36     "\t-p\tpreserve file attributes if possible\n"
37     "\t-R\tcopy directories recursively\n";
38
39
40 static int recursiveFlag = FALSE;
41 static int followLinks = FALSE;
42 static int preserveFlag = FALSE;
43 static const char *srcName;
44 static const char *destName;
45 static int destDirFlag = FALSE;
46 static int srcDirFlag = FALSE;
47
48 static int fileAction(const char *fileName, struct stat* statbuf)
49 {
50     char newdestName[NAME_MAX];
51
52     strcpy(newdestName, destName);
53     if ( srcDirFlag == TRUE ) {
54         if (recursiveFlag!=TRUE ) {
55             fprintf(stderr, "cp: %s: omitting directory\n", srcName);
56             return( TRUE);
57         }
58         strcat(newdestName, strstr(fileName, srcName) + strlen(srcName));
59     } 
60     
61     if (destDirFlag==TRUE && srcDirFlag == FALSE) {
62         if (newdestName[strlen(newdestName)-1] != '/' ) {
63             strcat(newdestName, "/");
64         }
65         strcat(newdestName, srcName);
66     }
67     
68     return (copyFile(fileName, newdestName, preserveFlag, followLinks));
69 }
70
71 extern int cp_main(int argc, char **argv)
72 {
73     if (argc < 3) {
74         usage (cp_usage);
75     }
76     argc--;
77     argv++;
78
79     /* Parse any options */
80     while (**argv == '-') {
81         while (*++(*argv))
82             switch (**argv) {
83             case 'a':
84                 followLinks = TRUE;
85                 preserveFlag = TRUE;
86                 recursiveFlag = TRUE;
87                 break;
88             case 'd':
89                 followLinks = TRUE;
90                 break;
91             case 'p':
92                 preserveFlag = TRUE;
93                 break;
94             case 'R':
95                 recursiveFlag = TRUE;
96                 break;
97             default:
98                 usage (cp_usage);
99             }
100         argc--;
101         argv++;
102     }
103
104
105     destName = argv[argc - 1];
106     destDirFlag = isDirectory(destName);
107
108     if ((argc > 3) && destDirFlag==FALSE) {
109         fprintf(stderr, "%s: not a directory\n", destName);
110         exit (FALSE);
111     }
112
113     while (argc-- > 1) {
114         srcName = *(argv++);
115         srcDirFlag = isDirectory(srcName);
116         if (recursiveAction(srcName, recursiveFlag, followLinks, FALSE,
117                                fileAction, fileAction) == FALSE) {
118             exit( FALSE);
119         }
120     }
121     exit( TRUE);
122 }