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