Include long-options.h
[platform/upstream/coreutils.git] / src / mkdir.c
1 /* mkdir -- make directories
2    Copyright (C) 90, 1995-1999 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17
18 /* David MacKenzie <djm@ai.mit.edu>  */
19
20 #include <config.h>
21 #include <stdio.h>
22 #include <getopt.h>
23 #include <sys/types.h>
24
25 #include "system.h"
26 #include "closeout.h"
27 #include "error.h"
28 #include "long-options.h"
29 #include "makepath.h"
30 #include "modechange.h"
31
32 /* The name this program was run with. */
33 char *program_name;
34
35 /* If nonzero, ensure that all parents of the specified directory exist.  */
36 static int path_mode;
37
38 static struct option const longopts[] =
39 {
40   {"mode", required_argument, NULL, 'm'},
41   {"parents", no_argument, NULL, 'p'},
42   {"verbose", no_argument, NULL, 2},
43   {NULL, 0, NULL, 0}
44 };
45
46 void
47 usage (int status)
48 {
49   if (status != 0)
50     fprintf (stderr, _("Try `%s --help' for more information.\n"),
51              program_name);
52   else
53     {
54       printf (_("Usage: %s [OPTION] DIRECTORY...\n"), program_name);
55       printf (_("\
56 Create the DIRECTORY(ies), if they do not already exist.\n\
57 \n\
58   -m, --mode=MODE   set permission mode (as in chmod), not rwxrwxrwx - umask\n\
59   -p, --parents     no error if existing, make parent directories as needed\n\
60       --verbose     print a message for each created directory\n\
61       --help        display this help and exit\n\
62       --version     output version information and exit\n\
63 "));
64       puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
65       close_stdout ();
66     }
67   exit (status);
68 }
69
70 int
71 main (int argc, char **argv)
72 {
73   unsigned int newmode;
74   unsigned int parent_mode;
75   char *symbolic_mode = NULL;
76   const char *verbose_fmt_string = NULL;
77   int errors = 0;
78   int optc;
79
80   program_name = argv[0];
81   setlocale (LC_ALL, "");
82   bindtextdomain (PACKAGE, LOCALEDIR);
83   textdomain (PACKAGE);
84
85   parse_long_options (argc, argv, "mkdir", GNU_PACKAGE, VERSION,
86                       "David MacKenzie", usage);
87
88   path_mode = 0;
89
90   while ((optc = getopt_long (argc, argv, "pm:", longopts, NULL)) != -1)
91     {
92       switch (optc)
93         {
94         case 0:                 /* Long option. */
95           break;
96         case 'p':
97           path_mode = 1;
98           break;
99         case 'm':
100           symbolic_mode = optarg;
101           break;
102         case 2: /* --verbose  */
103           verbose_fmt_string = _("created directory `%s'");
104           break;
105         default:
106           usage (1);
107         }
108     }
109
110   if (optind == argc)
111     {
112       error (0, 0, _("too few arguments"));
113       usage (1);
114     }
115
116   newmode = 0777 & ~umask (0);
117   parent_mode = newmode | 0300; /* u+wx */
118   if (symbolic_mode)
119     {
120       struct mode_change *change = mode_compile (symbolic_mode, 0);
121       if (change == MODE_INVALID)
122         error (1, 0, _("invalid mode `%s'"), symbolic_mode);
123       else if (change == MODE_MEMORY_EXHAUSTED)
124         error (1, 0, _("virtual memory exhausted"));
125       newmode = mode_adjust (newmode, change);
126     }
127
128   for (; optind < argc; ++optind)
129     {
130       if (path_mode)
131         {
132           errors |= make_path (argv[optind], newmode, parent_mode,
133                                -1, -1, 1, verbose_fmt_string);
134         }
135       else if (mkdir (argv[optind], newmode))
136         {
137           error (0, errno, _("cannot make directory `%s'"), argv[optind]);
138           errors = 1;
139         }
140       else if (verbose_fmt_string)
141         {
142           error (0, 0, verbose_fmt_string, argv[optind]);
143         }
144     }
145
146   exit (errors);
147 }