1 /* Return a string describing the type of a file.
3 Copyright (C) 1993-1994, 2001-2002, 2004-2006, 2009-2020 Free Software
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 3 of the License, or
9 (at your option) any later version.
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
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <https://www.gnu.org/licenses/>. */
19 /* Written by Paul Eggert. */
23 #include "file-type.h"
26 #define _(text) gettext (text)
29 file_type (struct stat
const *st
)
31 /* See POSIX 1003.1-2001 XCU Table 4-8 lines 17093-17107 for some of
34 To keep diagnostics grammatical in English, the returned string
35 must start with a consonant. */
37 /* Do these three first, as they're the most common. */
39 if (S_ISREG (st
->st_mode
))
40 return st
->st_size
== 0 ? _("regular empty file") : _("regular file");
42 if (S_ISDIR (st
->st_mode
))
43 return _("directory");
45 if (S_ISLNK (st
->st_mode
))
46 return _("symbolic link");
48 /* Do the S_TYPEIS* macros next, as they may be implemented in terms
49 of S_ISNAM, and we want the more-specialized interpretation. */
52 return _("message queue");
55 return _("semaphore");
58 return _("shared memory object");
61 return _("typed memory object");
63 /* The remaining are in alphabetical order. */
65 if (S_ISBLK (st
->st_mode
))
66 return _("block special file");
68 if (S_ISCHR (st
->st_mode
))
69 return _("character special file");
71 if (S_ISCTG (st
->st_mode
))
72 return _("contiguous data");
74 if (S_ISFIFO (st
->st_mode
))
77 if (S_ISDOOR (st
->st_mode
))
80 if (S_ISMPB (st
->st_mode
))
81 return _("multiplexed block special file");
83 if (S_ISMPC (st
->st_mode
))
84 return _("multiplexed character special file");
86 if (S_ISMPX (st
->st_mode
))
87 return _("multiplexed file");
89 if (S_ISNAM (st
->st_mode
))
90 return _("named file");
92 if (S_ISNWK (st
->st_mode
))
93 return _("network special file");
95 if (S_ISOFD (st
->st_mode
))
96 return _("migrated file with data");
98 if (S_ISOFL (st
->st_mode
))
99 return _("migrated file without data");
101 if (S_ISPORT (st
->st_mode
))
104 if (S_ISSOCK (st
->st_mode
))
107 if (S_ISWHT (st
->st_mode
))
108 return _("whiteout");
110 return _("weird file");