Ned Deily | 5c86701 | 2014-06-26 23:40:06 -0700 | [diff] [blame] | 1 | r"""OS routines for NT or Posix depending on what system we're on. |
Guido van Rossum | 31104f4 | 1992-01-14 18:28:36 +0000 | [diff] [blame] | 2 | |
Guido van Rossum | 54f22ed | 2000-02-04 15:10:34 +0000 | [diff] [blame] | 3 | This exports: |
Larry Hastings | 10108a7 | 2016-09-05 15:11:23 -0700 | [diff] [blame] | 4 | - all functions from posix or nt, e.g. unlink, stat, etc. |
Alexandre Vassalotti | eca20b6 | 2008-05-16 02:54:33 +0000 | [diff] [blame] | 5 | - os.path is either posixpath or ntpath |
Larry Hastings | 10108a7 | 2016-09-05 15:11:23 -0700 | [diff] [blame] | 6 | - os.name is either 'posix' or 'nt' |
Ned Deily | bf090e3 | 2016-10-01 21:12:35 -0400 | [diff] [blame] | 7 | - os.curdir is a string representing the current directory (always '.') |
| 8 | - os.pardir is a string representing the parent directory (always '..') |
| 9 | - os.sep is the (or a most common) pathname separator ('/' or '\\') |
Georg Brandl | ed5b9b3 | 2008-12-05 07:45:54 +0000 | [diff] [blame] | 10 | - os.extsep is the extension separator (always '.') |
Guido van Rossum | 4b8c6ea | 2000-02-04 15:39:30 +0000 | [diff] [blame] | 11 | - os.altsep is the alternate pathname separator (None or '/') |
Guido van Rossum | 54f22ed | 2000-02-04 15:10:34 +0000 | [diff] [blame] | 12 | - os.pathsep is the component separator used in $PATH etc |
Guido van Rossum | 4b8c6ea | 2000-02-04 15:39:30 +0000 | [diff] [blame] | 13 | - os.linesep is the line separator in text files ('\r' or '\n' or '\r\n') |
Guido van Rossum | 54f22ed | 2000-02-04 15:10:34 +0000 | [diff] [blame] | 14 | - os.defpath is the default search path for executables |
Martin v. Löwis | bdec50f | 2004-06-08 08:29:33 +0000 | [diff] [blame] | 15 | - os.devnull is the file path of the null device ('/dev/null', etc.) |
Guido van Rossum | 31104f4 | 1992-01-14 18:28:36 +0000 | [diff] [blame] | 16 | |
Guido van Rossum | 54f22ed | 2000-02-04 15:10:34 +0000 | [diff] [blame] | 17 | Programs that import and use 'os' stand a better chance of being |
| 18 | portable between different platforms. Of course, they must then |
| 19 | only use functions that are defined by all platforms (e.g., unlink |
| 20 | and opendir), and leave all pathname manipulation to os.path |
| 21 | (e.g., split and join). |
| 22 | """ |
Guido van Rossum | 31104f4 | 1992-01-14 18:28:36 +0000 | [diff] [blame] | 23 | |
Skip Montanaro | 269b83b | 2001-02-06 01:07:02 +0000 | [diff] [blame] | 24 | #' |
Ethan Furman | 958b3e4 | 2016-06-04 12:49:35 -0700 | [diff] [blame] | 25 | import abc |
Serhiy Storchaka | 8110837 | 2017-09-26 00:55:55 +0300 | [diff] [blame] | 26 | import sys |
Charles-François Natali | 7372b06 | 2012-02-05 15:15:38 +0100 | [diff] [blame] | 27 | import stat as st |
Guido van Rossum | a28dab5 | 1997-08-29 22:36:47 +0000 | [diff] [blame] | 28 | |
Bar Harel | eae87e3 | 2019-12-22 11:57:27 +0200 | [diff] [blame] | 29 | from _collections_abc import _check_methods |
| 30 | |
Guido van Rossum | a28dab5 | 1997-08-29 22:36:47 +0000 | [diff] [blame] | 31 | _names = sys.builtin_module_names |
| 32 | |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 33 | # Note: more names are added to __all__ later. |
Brett Cannon | 13962fc | 2008-08-18 01:45:29 +0000 | [diff] [blame] | 34 | __all__ = ["altsep", "curdir", "pardir", "sep", "pathsep", "linesep", |
Petri Lehtinen | 3bc37f2 | 2012-05-23 21:36:16 +0300 | [diff] [blame] | 35 | "defpath", "name", "path", "devnull", "SEEK_SET", "SEEK_CUR", |
| 36 | "SEEK_END", "fsencode", "fsdecode", "get_exec_path", "fdopen", |
| 37 | "popen", "extsep"] |
Skip Montanaro | 269b83b | 2001-02-06 01:07:02 +0000 | [diff] [blame] | 38 | |
Charles-François Natali | 7372b06 | 2012-02-05 15:15:38 +0100 | [diff] [blame] | 39 | def _exists(name): |
| 40 | return name in globals() |
| 41 | |
Skip Montanaro | 269b83b | 2001-02-06 01:07:02 +0000 | [diff] [blame] | 42 | def _get_exports_list(module): |
| 43 | try: |
| 44 | return list(module.__all__) |
| 45 | except AttributeError: |
| 46 | return [n for n in dir(module) if n[0] != '_'] |
| 47 | |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 48 | # Any new dependencies of the os module and/or changes in path separator |
| 49 | # requires updating importlib as well. |
Guido van Rossum | a28dab5 | 1997-08-29 22:36:47 +0000 | [diff] [blame] | 50 | if 'posix' in _names: |
Guido van Rossum | 61de0ac | 1997-12-05 21:24:30 +0000 | [diff] [blame] | 51 | name = 'posix' |
Guido van Rossum | e9387ea | 1998-05-22 15:26:04 +0000 | [diff] [blame] | 52 | linesep = '\n' |
Guido van Rossum | 61de0ac | 1997-12-05 21:24:30 +0000 | [diff] [blame] | 53 | from posix import * |
| 54 | try: |
| 55 | from posix import _exit |
Petri Lehtinen | 3bc37f2 | 2012-05-23 21:36:16 +0300 | [diff] [blame] | 56 | __all__.append('_exit') |
Brett Cannon | cd171c8 | 2013-07-04 17:43:24 -0400 | [diff] [blame] | 57 | except ImportError: |
Guido van Rossum | 61de0ac | 1997-12-05 21:24:30 +0000 | [diff] [blame] | 58 | pass |
Skip Montanaro | 117910d | 2003-02-14 19:35:31 +0000 | [diff] [blame] | 59 | import posixpath as path |
Tim Peters | f2715e0 | 2003-02-19 02:35:07 +0000 | [diff] [blame] | 60 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 61 | try: |
| 62 | from posix import _have_functions |
Brett Cannon | cd171c8 | 2013-07-04 17:43:24 -0400 | [diff] [blame] | 63 | except ImportError: |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 64 | pass |
Skip Montanaro | 269b83b | 2001-02-06 01:07:02 +0000 | [diff] [blame] | 65 | |
Yury Selivanov | 97e2e06 | 2014-09-26 12:33:06 -0400 | [diff] [blame] | 66 | import posix |
| 67 | __all__.extend(_get_exports_list(posix)) |
| 68 | del posix |
| 69 | |
Guido van Rossum | a28dab5 | 1997-08-29 22:36:47 +0000 | [diff] [blame] | 70 | elif 'nt' in _names: |
Guido van Rossum | 61de0ac | 1997-12-05 21:24:30 +0000 | [diff] [blame] | 71 | name = 'nt' |
Guido van Rossum | e9387ea | 1998-05-22 15:26:04 +0000 | [diff] [blame] | 72 | linesep = '\r\n' |
Guido van Rossum | 61de0ac | 1997-12-05 21:24:30 +0000 | [diff] [blame] | 73 | from nt import * |
Tim Peters | 6757c1e | 2003-01-08 21:20:57 +0000 | [diff] [blame] | 74 | try: |
| 75 | from nt import _exit |
Petri Lehtinen | 3bc37f2 | 2012-05-23 21:36:16 +0300 | [diff] [blame] | 76 | __all__.append('_exit') |
Brett Cannon | cd171c8 | 2013-07-04 17:43:24 -0400 | [diff] [blame] | 77 | except ImportError: |
Tim Peters | 6757c1e | 2003-01-08 21:20:57 +0000 | [diff] [blame] | 78 | pass |
Skip Montanaro | 117910d | 2003-02-14 19:35:31 +0000 | [diff] [blame] | 79 | import ntpath as path |
Tim Peters | f2715e0 | 2003-02-19 02:35:07 +0000 | [diff] [blame] | 80 | |
Skip Montanaro | 269b83b | 2001-02-06 01:07:02 +0000 | [diff] [blame] | 81 | import nt |
| 82 | __all__.extend(_get_exports_list(nt)) |
| 83 | del nt |
| 84 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 85 | try: |
| 86 | from nt import _have_functions |
Brett Cannon | cd171c8 | 2013-07-04 17:43:24 -0400 | [diff] [blame] | 87 | except ImportError: |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 88 | pass |
| 89 | |
Guido van Rossum | 2979b01 | 1994-08-01 11:18:30 +0000 | [diff] [blame] | 90 | else: |
Brett Cannon | cd171c8 | 2013-07-04 17:43:24 -0400 | [diff] [blame] | 91 | raise ImportError('no os specific module found') |
Guido van Rossum | e65cce5 | 1993-11-08 15:05:21 +0000 | [diff] [blame] | 92 | |
Skip Montanaro | 117910d | 2003-02-14 19:35:31 +0000 | [diff] [blame] | 93 | sys.modules['os.path'] = path |
Georg Brandl | ed5b9b3 | 2008-12-05 07:45:54 +0000 | [diff] [blame] | 94 | from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep, |
| 95 | devnull) |
Skip Montanaro | 269b83b | 2001-02-06 01:07:02 +0000 | [diff] [blame] | 96 | |
Guido van Rossum | a28dab5 | 1997-08-29 22:36:47 +0000 | [diff] [blame] | 97 | del _names |
| 98 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 99 | |
| 100 | if _exists("_have_functions"): |
| 101 | _globals = globals() |
| 102 | def _add(str, fn): |
| 103 | if (fn in _globals) and (str in _have_functions): |
| 104 | _set.add(_globals[fn]) |
| 105 | |
| 106 | _set = set() |
| 107 | _add("HAVE_FACCESSAT", "access") |
| 108 | _add("HAVE_FCHMODAT", "chmod") |
| 109 | _add("HAVE_FCHOWNAT", "chown") |
| 110 | _add("HAVE_FSTATAT", "stat") |
| 111 | _add("HAVE_FUTIMESAT", "utime") |
| 112 | _add("HAVE_LINKAT", "link") |
| 113 | _add("HAVE_MKDIRAT", "mkdir") |
| 114 | _add("HAVE_MKFIFOAT", "mkfifo") |
| 115 | _add("HAVE_MKNODAT", "mknod") |
| 116 | _add("HAVE_OPENAT", "open") |
| 117 | _add("HAVE_READLINKAT", "readlink") |
| 118 | _add("HAVE_RENAMEAT", "rename") |
| 119 | _add("HAVE_SYMLINKAT", "symlink") |
| 120 | _add("HAVE_UNLINKAT", "unlink") |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 121 | _add("HAVE_UNLINKAT", "rmdir") |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 122 | _add("HAVE_UTIMENSAT", "utime") |
| 123 | supports_dir_fd = _set |
| 124 | |
| 125 | _set = set() |
| 126 | _add("HAVE_FACCESSAT", "access") |
| 127 | supports_effective_ids = _set |
| 128 | |
| 129 | _set = set() |
| 130 | _add("HAVE_FCHDIR", "chdir") |
| 131 | _add("HAVE_FCHMOD", "chmod") |
| 132 | _add("HAVE_FCHOWN", "chown") |
| 133 | _add("HAVE_FDOPENDIR", "listdir") |
Serhiy Storchaka | ea720fe | 2017-03-30 09:12:31 +0300 | [diff] [blame] | 134 | _add("HAVE_FDOPENDIR", "scandir") |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 135 | _add("HAVE_FEXECVE", "execve") |
| 136 | _set.add(stat) # fstat always works |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 137 | _add("HAVE_FTRUNCATE", "truncate") |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 138 | _add("HAVE_FUTIMENS", "utime") |
| 139 | _add("HAVE_FUTIMES", "utime") |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 140 | _add("HAVE_FPATHCONF", "pathconf") |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 141 | if _exists("statvfs") and _exists("fstatvfs"): # mac os x10.3 |
| 142 | _add("HAVE_FSTATVFS", "statvfs") |
| 143 | supports_fd = _set |
| 144 | |
| 145 | _set = set() |
| 146 | _add("HAVE_FACCESSAT", "access") |
Larry Hastings | dbbc0c8 | 2012-06-22 19:50:21 -0700 | [diff] [blame] | 147 | # Some platforms don't support lchmod(). Often the function exists |
| 148 | # anyway, as a stub that always returns ENOSUP or perhaps EOPNOTSUPP. |
| 149 | # (No, I don't know why that's a good design.) ./configure will detect |
| 150 | # this and reject it--so HAVE_LCHMOD still won't be defined on such |
| 151 | # platforms. This is Very Helpful. |
| 152 | # |
| 153 | # However, sometimes platforms without a working lchmod() *do* have |
| 154 | # fchmodat(). (Examples: Linux kernel 3.2 with glibc 2.15, |
| 155 | # OpenIndiana 3.x.) And fchmodat() has a flag that theoretically makes |
| 156 | # it behave like lchmod(). So in theory it would be a suitable |
| 157 | # replacement for lchmod(). But when lchmod() doesn't work, fchmodat()'s |
| 158 | # flag doesn't work *either*. Sadly ./configure isn't sophisticated |
| 159 | # enough to detect this condition--it only determines whether or not |
| 160 | # fchmodat() minimally works. |
| 161 | # |
| 162 | # Therefore we simply ignore fchmodat() when deciding whether or not |
| 163 | # os.chmod supports follow_symlinks. Just checking lchmod() is |
| 164 | # sufficient. After all--if you have a working fchmodat(), your |
| 165 | # lchmod() almost certainly works too. |
| 166 | # |
| 167 | # _add("HAVE_FCHMODAT", "chmod") |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 168 | _add("HAVE_FCHOWNAT", "chown") |
| 169 | _add("HAVE_FSTATAT", "stat") |
| 170 | _add("HAVE_LCHFLAGS", "chflags") |
| 171 | _add("HAVE_LCHMOD", "chmod") |
| 172 | if _exists("lchown"): # mac os x10.3 |
| 173 | _add("HAVE_LCHOWN", "chown") |
| 174 | _add("HAVE_LINKAT", "link") |
| 175 | _add("HAVE_LUTIMES", "utime") |
| 176 | _add("HAVE_LSTAT", "stat") |
| 177 | _add("HAVE_FSTATAT", "stat") |
| 178 | _add("HAVE_UTIMENSAT", "utime") |
| 179 | _add("MS_WINDOWS", "stat") |
| 180 | supports_follow_symlinks = _set |
| 181 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 182 | del _set |
| 183 | del _have_functions |
| 184 | del _globals |
| 185 | del _add |
| 186 | |
| 187 | |
Martin v. Löwis | 22b457e | 2005-01-16 08:40:58 +0000 | [diff] [blame] | 188 | # Python uses fixed values for the SEEK_ constants; they are mapped |
| 189 | # to native constants if necessary in posixmodule.c |
Jesus Cea | 9436361 | 2012-06-22 18:32:07 +0200 | [diff] [blame] | 190 | # Other possible SEEK values are directly imported from posixmodule.c |
Martin v. Löwis | 22b457e | 2005-01-16 08:40:58 +0000 | [diff] [blame] | 191 | SEEK_SET = 0 |
| 192 | SEEK_CUR = 1 |
| 193 | SEEK_END = 2 |
| 194 | |
Guido van Rossum | 4def7de | 1998-07-24 20:48:03 +0000 | [diff] [blame] | 195 | # Super directory utilities. |
| 196 | # (Inspired by Eric Raymond; the doc strings are mostly his) |
| 197 | |
Terry Reedy | 5a22b65 | 2010-12-02 07:05:56 +0000 | [diff] [blame] | 198 | def makedirs(name, mode=0o777, exist_ok=False): |
Zachary Ware | a22ae21 | 2014-03-20 09:42:01 -0500 | [diff] [blame] | 199 | """makedirs(name [, mode=0o777][, exist_ok=False]) |
Guido van Rossum | 4def7de | 1998-07-24 20:48:03 +0000 | [diff] [blame] | 200 | |
Benjamin Peterson | ee5f1c1 | 2014-04-01 19:13:18 -0400 | [diff] [blame] | 201 | Super-mkdir; create a leaf directory and all intermediate ones. Works like |
| 202 | mkdir, except that any intermediate path segment (not just the rightmost) |
| 203 | will be created if it does not exist. If the target directory already |
| 204 | exists, raise an OSError if exist_ok is False. Otherwise no exception is |
Terry Reedy | 5a22b65 | 2010-12-02 07:05:56 +0000 | [diff] [blame] | 205 | raised. This is recursive. |
Guido van Rossum | 4def7de | 1998-07-24 20:48:03 +0000 | [diff] [blame] | 206 | |
| 207 | """ |
| 208 | head, tail = path.split(name) |
Fred Drake | 9f2550f | 2000-07-25 15:16:40 +0000 | [diff] [blame] | 209 | if not tail: |
| 210 | head, tail = path.split(head) |
Guido van Rossum | 4def7de | 1998-07-24 20:48:03 +0000 | [diff] [blame] | 211 | if head and tail and not path.exists(head): |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 212 | try: |
Serhiy Storchaka | e304e33 | 2017-03-24 13:27:42 +0200 | [diff] [blame] | 213 | makedirs(head, exist_ok=exist_ok) |
Giampaolo Rodola' | 0166a28 | 2013-02-12 15:14:17 +0100 | [diff] [blame] | 214 | except FileExistsError: |
Martin Panter | a82642f | 2015-11-19 04:48:44 +0000 | [diff] [blame] | 215 | # Defeats race condition when another thread created the path |
Giampaolo Rodola' | 0166a28 | 2013-02-12 15:14:17 +0100 | [diff] [blame] | 216 | pass |
Serhiy Storchaka | 4ab23bf | 2013-01-08 11:32:58 +0200 | [diff] [blame] | 217 | cdir = curdir |
| 218 | if isinstance(tail, bytes): |
| 219 | cdir = bytes(curdir, 'ASCII') |
| 220 | if tail == cdir: # xxx/newdir/. exists if xxx/newdir exists |
Andrew M. Kuchling | 6fccc8a | 2003-12-23 16:33:28 +0000 | [diff] [blame] | 221 | return |
Terry Reedy | 5a22b65 | 2010-12-02 07:05:56 +0000 | [diff] [blame] | 222 | try: |
| 223 | mkdir(name, mode) |
Martin Panter | a82642f | 2015-11-19 04:48:44 +0000 | [diff] [blame] | 224 | except OSError: |
| 225 | # Cannot rely on checking for EEXIST, since the operating system |
| 226 | # could give priority to other errors like EACCES or EROFS |
| 227 | if not exist_ok or not path.isdir(name): |
Terry Reedy | 5a22b65 | 2010-12-02 07:05:56 +0000 | [diff] [blame] | 228 | raise |
Guido van Rossum | 4def7de | 1998-07-24 20:48:03 +0000 | [diff] [blame] | 229 | |
| 230 | def removedirs(name): |
Zachary Ware | a22ae21 | 2014-03-20 09:42:01 -0500 | [diff] [blame] | 231 | """removedirs(name) |
Guido van Rossum | 4def7de | 1998-07-24 20:48:03 +0000 | [diff] [blame] | 232 | |
Fredrik Lundh | 96c1c7a | 2005-11-12 15:55:04 +0000 | [diff] [blame] | 233 | Super-rmdir; remove a leaf directory and all empty intermediate |
Guido van Rossum | 4def7de | 1998-07-24 20:48:03 +0000 | [diff] [blame] | 234 | ones. Works like rmdir except that, if the leaf directory is |
| 235 | successfully removed, directories corresponding to rightmost path |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 236 | segments will be pruned away until either the whole path is |
Guido van Rossum | 4def7de | 1998-07-24 20:48:03 +0000 | [diff] [blame] | 237 | consumed or an error occurs. Errors during this latter phase are |
| 238 | ignored -- they generally mean that a directory was not empty. |
| 239 | |
| 240 | """ |
| 241 | rmdir(name) |
| 242 | head, tail = path.split(name) |
Fred Drake | 9f2550f | 2000-07-25 15:16:40 +0000 | [diff] [blame] | 243 | if not tail: |
| 244 | head, tail = path.split(head) |
Guido van Rossum | 4def7de | 1998-07-24 20:48:03 +0000 | [diff] [blame] | 245 | while head and tail: |
| 246 | try: |
| 247 | rmdir(head) |
Andrew Svetlov | 2552bc0 | 2012-12-24 21:47:24 +0200 | [diff] [blame] | 248 | except OSError: |
Guido van Rossum | 4def7de | 1998-07-24 20:48:03 +0000 | [diff] [blame] | 249 | break |
| 250 | head, tail = path.split(head) |
| 251 | |
| 252 | def renames(old, new): |
Fred Drake | cadb9eb | 2002-07-02 21:28:04 +0000 | [diff] [blame] | 253 | """renames(old, new) |
Guido van Rossum | 4def7de | 1998-07-24 20:48:03 +0000 | [diff] [blame] | 254 | |
| 255 | Super-rename; create directories as necessary and delete any left |
| 256 | empty. Works like rename, except creation of any intermediate |
| 257 | directories needed to make the new pathname good is attempted |
| 258 | first. After the rename, directories corresponding to rightmost |
Benjamin Peterson | 52a3b74 | 2015-04-13 20:24:10 -0400 | [diff] [blame] | 259 | path segments of the old name will be pruned until either the |
Guido van Rossum | 4def7de | 1998-07-24 20:48:03 +0000 | [diff] [blame] | 260 | whole path is consumed or a nonempty directory is found. |
| 261 | |
| 262 | Note: this function can fail with the new directory structure made |
| 263 | if you lack permissions needed to unlink the leaf directory or |
| 264 | file. |
| 265 | |
| 266 | """ |
| 267 | head, tail = path.split(new) |
| 268 | if head and tail and not path.exists(head): |
| 269 | makedirs(head) |
| 270 | rename(old, new) |
| 271 | head, tail = path.split(old) |
| 272 | if head and tail: |
| 273 | try: |
| 274 | removedirs(head) |
Andrew Svetlov | 8b33dd8 | 2012-12-24 19:58:48 +0200 | [diff] [blame] | 275 | except OSError: |
Guido van Rossum | 4def7de | 1998-07-24 20:48:03 +0000 | [diff] [blame] | 276 | pass |
| 277 | |
Skip Montanaro | 269b83b | 2001-02-06 01:07:02 +0000 | [diff] [blame] | 278 | __all__.extend(["makedirs", "removedirs", "renames"]) |
| 279 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 280 | def walk(top, topdown=True, onerror=None, followlinks=False): |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 281 | """Directory tree generator. |
| 282 | |
| 283 | For each directory in the directory tree rooted at top (including top |
| 284 | itself, but excluding '.' and '..'), yields a 3-tuple |
| 285 | |
| 286 | dirpath, dirnames, filenames |
| 287 | |
| 288 | dirpath is a string, the path to the directory. dirnames is a list of |
| 289 | the names of the subdirectories in dirpath (excluding '.' and '..'). |
| 290 | filenames is a list of the names of the non-directory files in dirpath. |
| 291 | Note that the names in the lists are just names, with no path components. |
| 292 | To get a full path (which begins with top) to a file or directory in |
| 293 | dirpath, do os.path.join(dirpath, name). |
| 294 | |
| 295 | If optional arg 'topdown' is true or not specified, the triple for a |
| 296 | directory is generated before the triples for any of its subdirectories |
| 297 | (directories are generated top down). If topdown is false, the triple |
| 298 | for a directory is generated after the triples for all of its |
| 299 | subdirectories (directories are generated bottom up). |
| 300 | |
| 301 | When topdown is true, the caller can modify the dirnames list in-place |
| 302 | (e.g., via del or slice assignment), and walk will only recurse into the |
Benjamin Peterson | e58e0c7 | 2014-06-15 20:51:12 -0700 | [diff] [blame] | 303 | subdirectories whose names remain in dirnames; this can be used to prune the |
| 304 | search, or to impose a specific order of visiting. Modifying dirnames when |
Bernt Røskar Brenna | 734f120 | 2019-09-10 14:43:58 +0200 | [diff] [blame] | 305 | topdown is false has no effect on the behavior of os.walk(), since the |
| 306 | directories in dirnames have already been generated by the time dirnames |
| 307 | itself is generated. No matter the value of topdown, the list of |
| 308 | subdirectories is retrieved before the tuples for the directory and its |
| 309 | subdirectories are generated. |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 310 | |
Victor Stinner | 524a5ba | 2015-03-10 13:20:34 +0100 | [diff] [blame] | 311 | By default errors from the os.scandir() call are ignored. If |
Guido van Rossum | bf1bef8 | 2003-05-13 18:01:19 +0000 | [diff] [blame] | 312 | optional arg 'onerror' is specified, it should be a function; it |
Andrew Svetlov | ad28c7f | 2012-12-18 22:02:39 +0200 | [diff] [blame] | 313 | will be called with one argument, an OSError instance. It can |
Guido van Rossum | bf1bef8 | 2003-05-13 18:01:19 +0000 | [diff] [blame] | 314 | report the error to continue with the walk, or raise the exception |
| 315 | to abort the walk. Note that the filename is available as the |
| 316 | filename attribute of the exception object. |
| 317 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 318 | By default, os.walk does not follow symbolic links to subdirectories on |
| 319 | systems that support them. In order to get this functionality, set the |
| 320 | optional argument 'followlinks' to true. |
| 321 | |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 322 | Caution: if you pass a relative pathname for top, don't change the |
| 323 | current working directory between resumptions of walk. walk never |
| 324 | changes the current directory, and assumes that the client doesn't |
| 325 | either. |
| 326 | |
| 327 | Example: |
| 328 | |
Christian Heimes | 5d8da20 | 2008-05-06 13:58:24 +0000 | [diff] [blame] | 329 | import os |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 330 | from os.path import join, getsize |
Christian Heimes | 5d8da20 | 2008-05-06 13:58:24 +0000 | [diff] [blame] | 331 | for root, dirs, files in os.walk('python/Lib/email'): |
Neal Norwitz | 752abd0 | 2008-05-13 04:55:24 +0000 | [diff] [blame] | 332 | print(root, "consumes", end="") |
Recursing | 3ce3dea | 2018-12-23 04:48:14 +0100 | [diff] [blame] | 333 | print(sum(getsize(join(root, name)) for name in files), end="") |
Neal Norwitz | 752abd0 | 2008-05-13 04:55:24 +0000 | [diff] [blame] | 334 | print("bytes in", len(files), "non-directory files") |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 335 | if 'CVS' in dirs: |
| 336 | dirs.remove('CVS') # don't visit CVS directories |
Benjamin Peterson | e58e0c7 | 2014-06-15 20:51:12 -0700 | [diff] [blame] | 337 | |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 338 | """ |
Serhiy Storchaka | f4f445b | 2020-02-12 12:11:34 +0200 | [diff] [blame] | 339 | sys.audit("os.walk", top, topdown, onerror, followlinks) |
| 340 | return _walk(fspath(top), topdown, onerror, followlinks) |
| 341 | |
| 342 | def _walk(top, topdown, onerror, followlinks): |
Victor Stinner | 524a5ba | 2015-03-10 13:20:34 +0100 | [diff] [blame] | 343 | dirs = [] |
| 344 | nondirs = [] |
Serhiy Storchaka | 7c90a82 | 2016-02-11 13:31:00 +0200 | [diff] [blame] | 345 | walk_dirs = [] |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 346 | |
| 347 | # We may not have read permission for top, in which case we can't |
Alexandre Vassalotti | 4e6531e | 2008-05-09 20:00:17 +0000 | [diff] [blame] | 348 | # get a list of the files the directory contains. os.walk |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 349 | # always suppressed the exception then, rather than blow up for a |
| 350 | # minor reason when (say) a thousand readable directories are still |
| 351 | # left to visit. That logic is copied here. |
| 352 | try: |
Serhiy Storchaka | 3ae4155 | 2016-10-05 23:17:10 +0300 | [diff] [blame] | 353 | # Note that scandir is global in this module due |
| 354 | # to earlier import-*. |
| 355 | scandir_it = scandir(top) |
Victor Stinner | 7fea974 | 2015-03-18 11:29:47 +0100 | [diff] [blame] | 356 | except OSError as error: |
| 357 | if onerror is not None: |
| 358 | onerror(error) |
| 359 | return |
| 360 | |
Serhiy Storchaka | ffe96ae | 2016-02-11 13:21:30 +0200 | [diff] [blame] | 361 | with scandir_it: |
| 362 | while True: |
Victor Stinner | 524a5ba | 2015-03-10 13:20:34 +0100 | [diff] [blame] | 363 | try: |
Victor Stinner | 524a5ba | 2015-03-10 13:20:34 +0100 | [diff] [blame] | 364 | try: |
Serhiy Storchaka | ffe96ae | 2016-02-11 13:21:30 +0200 | [diff] [blame] | 365 | entry = next(scandir_it) |
| 366 | except StopIteration: |
| 367 | break |
| 368 | except OSError as error: |
| 369 | if onerror is not None: |
| 370 | onerror(error) |
| 371 | return |
Victor Stinner | 7fea974 | 2015-03-18 11:29:47 +0100 | [diff] [blame] | 372 | |
Serhiy Storchaka | ffe96ae | 2016-02-11 13:21:30 +0200 | [diff] [blame] | 373 | try: |
| 374 | is_dir = entry.is_dir() |
| 375 | except OSError: |
| 376 | # If is_dir() raises an OSError, consider that the entry is not |
| 377 | # a directory, same behaviour than os.path.isdir(). |
| 378 | is_dir = False |
| 379 | |
| 380 | if is_dir: |
| 381 | dirs.append(entry.name) |
| 382 | else: |
| 383 | nondirs.append(entry.name) |
| 384 | |
| 385 | if not topdown and is_dir: |
| 386 | # Bottom-up: recurse into sub-directory, but exclude symlinks to |
| 387 | # directories if followlinks is False |
| 388 | if followlinks: |
| 389 | walk_into = True |
| 390 | else: |
| 391 | try: |
| 392 | is_symlink = entry.is_symlink() |
| 393 | except OSError: |
| 394 | # If is_symlink() raises an OSError, consider that the |
| 395 | # entry is not a symbolic link, same behaviour than |
| 396 | # os.path.islink(). |
| 397 | is_symlink = False |
| 398 | walk_into = not is_symlink |
| 399 | |
| 400 | if walk_into: |
Serhiy Storchaka | 7c90a82 | 2016-02-11 13:31:00 +0200 | [diff] [blame] | 401 | walk_dirs.append(entry.path) |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 402 | |
Victor Stinner | 524a5ba | 2015-03-10 13:20:34 +0100 | [diff] [blame] | 403 | # Yield before recursion if going top down |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 404 | if topdown: |
| 405 | yield top, dirs, nondirs |
Victor Stinner | 524a5ba | 2015-03-10 13:20:34 +0100 | [diff] [blame] | 406 | |
Victor Stinner | 7fea974 | 2015-03-18 11:29:47 +0100 | [diff] [blame] | 407 | # Recurse into sub-directories |
| 408 | islink, join = path.islink, path.join |
Serhiy Storchaka | 5f6a0b4 | 2016-02-08 16:23:28 +0200 | [diff] [blame] | 409 | for dirname in dirs: |
| 410 | new_path = join(top, dirname) |
Victor Stinner | 7fea974 | 2015-03-18 11:29:47 +0100 | [diff] [blame] | 411 | # Issue #23605: os.path.islink() is used instead of caching |
| 412 | # entry.is_symlink() result during the loop on os.scandir() because |
| 413 | # the caller can replace the directory entry during the "yield" |
| 414 | # above. |
| 415 | if followlinks or not islink(new_path): |
Serhiy Storchaka | f4f445b | 2020-02-12 12:11:34 +0200 | [diff] [blame] | 416 | yield from _walk(new_path, topdown, onerror, followlinks) |
Victor Stinner | 7fea974 | 2015-03-18 11:29:47 +0100 | [diff] [blame] | 417 | else: |
Serhiy Storchaka | 7c90a82 | 2016-02-11 13:31:00 +0200 | [diff] [blame] | 418 | # Recurse into sub-directories |
| 419 | for new_path in walk_dirs: |
Serhiy Storchaka | f4f445b | 2020-02-12 12:11:34 +0200 | [diff] [blame] | 420 | yield from _walk(new_path, topdown, onerror, followlinks) |
Victor Stinner | 7fea974 | 2015-03-18 11:29:47 +0100 | [diff] [blame] | 421 | # Yield after recursion if going bottom up |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 422 | yield top, dirs, nondirs |
| 423 | |
| 424 | __all__.append("walk") |
| 425 | |
Serhiy Storchaka | ea720fe | 2017-03-30 09:12:31 +0300 | [diff] [blame] | 426 | if {open, stat} <= supports_dir_fd and {scandir, stat} <= supports_fd: |
Charles-François Natali | 7372b06 | 2012-02-05 15:15:38 +0100 | [diff] [blame] | 427 | |
Larry Hastings | b403806 | 2012-07-15 10:57:38 -0700 | [diff] [blame] | 428 | def fwalk(top=".", topdown=True, onerror=None, *, follow_symlinks=False, dir_fd=None): |
Charles-François Natali | 7372b06 | 2012-02-05 15:15:38 +0100 | [diff] [blame] | 429 | """Directory tree generator. |
| 430 | |
| 431 | This behaves exactly like walk(), except that it yields a 4-tuple |
| 432 | |
| 433 | dirpath, dirnames, filenames, dirfd |
| 434 | |
| 435 | `dirpath`, `dirnames` and `filenames` are identical to walk() output, |
| 436 | and `dirfd` is a file descriptor referring to the directory `dirpath`. |
| 437 | |
Larry Hastings | c48fe98 | 2012-06-25 04:49:05 -0700 | [diff] [blame] | 438 | The advantage of fwalk() over walk() is that it's safe against symlink |
Larry Hastings | b403806 | 2012-07-15 10:57:38 -0700 | [diff] [blame] | 439 | races (when follow_symlinks is False). |
Charles-François Natali | 7372b06 | 2012-02-05 15:15:38 +0100 | [diff] [blame] | 440 | |
Larry Hastings | c48fe98 | 2012-06-25 04:49:05 -0700 | [diff] [blame] | 441 | If dir_fd is not None, it should be a file descriptor open to a directory, |
| 442 | and top should be relative; top will then be relative to that directory. |
| 443 | (dir_fd is always supported for fwalk.) |
| 444 | |
Charles-François Natali | 7372b06 | 2012-02-05 15:15:38 +0100 | [diff] [blame] | 445 | Caution: |
| 446 | Since fwalk() yields file descriptors, those are only valid until the |
| 447 | next iteration step, so you should dup() them if you want to keep them |
| 448 | for a longer period. |
| 449 | |
| 450 | Example: |
| 451 | |
| 452 | import os |
| 453 | for root, dirs, files, rootfd in os.fwalk('python/Lib/email'): |
| 454 | print(root, "consumes", end="") |
Recursing | 3ce3dea | 2018-12-23 04:48:14 +0100 | [diff] [blame] | 455 | print(sum(os.stat(name, dir_fd=rootfd).st_size for name in files), |
Charles-François Natali | 7372b06 | 2012-02-05 15:15:38 +0100 | [diff] [blame] | 456 | end="") |
| 457 | print("bytes in", len(files), "non-directory files") |
| 458 | if 'CVS' in dirs: |
| 459 | dirs.remove('CVS') # don't visit CVS directories |
| 460 | """ |
Serhiy Storchaka | f4f445b | 2020-02-12 12:11:34 +0200 | [diff] [blame] | 461 | sys.audit("os.fwalk", top, topdown, onerror, follow_symlinks, dir_fd) |
Brett Cannon | 3f9183b | 2016-08-26 14:44:48 -0700 | [diff] [blame] | 462 | if not isinstance(top, int) or not hasattr(top, '__index__'): |
| 463 | top = fspath(top) |
Charles-François Natali | 7372b06 | 2012-02-05 15:15:38 +0100 | [diff] [blame] | 464 | # Note: To guard against symlink races, we use the standard |
| 465 | # lstat()/open()/fstat() trick. |
Serhiy Storchaka | ea720fe | 2017-03-30 09:12:31 +0300 | [diff] [blame] | 466 | if not follow_symlinks: |
| 467 | orig_st = stat(top, follow_symlinks=False, dir_fd=dir_fd) |
Larry Hastings | c48fe98 | 2012-06-25 04:49:05 -0700 | [diff] [blame] | 468 | topfd = open(top, O_RDONLY, dir_fd=dir_fd) |
Charles-François Natali | 7372b06 | 2012-02-05 15:15:38 +0100 | [diff] [blame] | 469 | try: |
Larry Hastings | b403806 | 2012-07-15 10:57:38 -0700 | [diff] [blame] | 470 | if (follow_symlinks or (st.S_ISDIR(orig_st.st_mode) and |
| 471 | path.samestat(orig_st, stat(topfd)))): |
Serhiy Storchaka | 8f6b344 | 2017-03-07 14:33:21 +0200 | [diff] [blame] | 472 | yield from _fwalk(topfd, top, isinstance(top, bytes), |
| 473 | topdown, onerror, follow_symlinks) |
Charles-François Natali | 7372b06 | 2012-02-05 15:15:38 +0100 | [diff] [blame] | 474 | finally: |
| 475 | close(topfd) |
| 476 | |
Serhiy Storchaka | 8f6b344 | 2017-03-07 14:33:21 +0200 | [diff] [blame] | 477 | def _fwalk(topfd, toppath, isbytes, topdown, onerror, follow_symlinks): |
Charles-François Natali | 7372b06 | 2012-02-05 15:15:38 +0100 | [diff] [blame] | 478 | # Note: This uses O(depth of the directory tree) file descriptors: if |
| 479 | # necessary, it can be adapted to only require O(1) FDs, see issue |
| 480 | # #13734. |
| 481 | |
Serhiy Storchaka | ea720fe | 2017-03-30 09:12:31 +0300 | [diff] [blame] | 482 | scandir_it = scandir(topfd) |
| 483 | dirs = [] |
| 484 | nondirs = [] |
| 485 | entries = None if topdown or follow_symlinks else [] |
| 486 | for entry in scandir_it: |
| 487 | name = entry.name |
| 488 | if isbytes: |
| 489 | name = fsencode(name) |
Hynek Schlawack | 66bfcc1 | 2012-05-15 16:32:21 +0200 | [diff] [blame] | 490 | try: |
Serhiy Storchaka | ea720fe | 2017-03-30 09:12:31 +0300 | [diff] [blame] | 491 | if entry.is_dir(): |
Hynek Schlawack | 66bfcc1 | 2012-05-15 16:32:21 +0200 | [diff] [blame] | 492 | dirs.append(name) |
Serhiy Storchaka | ea720fe | 2017-03-30 09:12:31 +0300 | [diff] [blame] | 493 | if entries is not None: |
| 494 | entries.append(entry) |
Hynek Schlawack | 66bfcc1 | 2012-05-15 16:32:21 +0200 | [diff] [blame] | 495 | else: |
| 496 | nondirs.append(name) |
Serhiy Storchaka | 42babab | 2016-10-25 14:28:38 +0300 | [diff] [blame] | 497 | except OSError: |
Hynek Schlawack | 66bfcc1 | 2012-05-15 16:32:21 +0200 | [diff] [blame] | 498 | try: |
| 499 | # Add dangling symlinks, ignore disappeared files |
Serhiy Storchaka | ea720fe | 2017-03-30 09:12:31 +0300 | [diff] [blame] | 500 | if entry.is_symlink(): |
Hynek Schlawack | 66bfcc1 | 2012-05-15 16:32:21 +0200 | [diff] [blame] | 501 | nondirs.append(name) |
Serhiy Storchaka | 42babab | 2016-10-25 14:28:38 +0300 | [diff] [blame] | 502 | except OSError: |
Serhiy Storchaka | ea720fe | 2017-03-30 09:12:31 +0300 | [diff] [blame] | 503 | pass |
Charles-François Natali | 7372b06 | 2012-02-05 15:15:38 +0100 | [diff] [blame] | 504 | |
| 505 | if topdown: |
| 506 | yield toppath, dirs, nondirs, topfd |
| 507 | |
Serhiy Storchaka | ea720fe | 2017-03-30 09:12:31 +0300 | [diff] [blame] | 508 | for name in dirs if entries is None else zip(dirs, entries): |
Charles-François Natali | 7372b06 | 2012-02-05 15:15:38 +0100 | [diff] [blame] | 509 | try: |
Serhiy Storchaka | ea720fe | 2017-03-30 09:12:31 +0300 | [diff] [blame] | 510 | if not follow_symlinks: |
| 511 | if topdown: |
| 512 | orig_st = stat(name, dir_fd=topfd, follow_symlinks=False) |
| 513 | else: |
| 514 | assert entries is not None |
| 515 | name, entry = name |
| 516 | orig_st = entry.stat(follow_symlinks=False) |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 517 | dirfd = open(name, O_RDONLY, dir_fd=topfd) |
Andrew Svetlov | 8b33dd8 | 2012-12-24 19:58:48 +0200 | [diff] [blame] | 518 | except OSError as err: |
Charles-François Natali | 7372b06 | 2012-02-05 15:15:38 +0100 | [diff] [blame] | 519 | if onerror is not None: |
| 520 | onerror(err) |
Serhiy Storchaka | 0bddc9e | 2015-12-23 00:08:24 +0200 | [diff] [blame] | 521 | continue |
Charles-François Natali | 7372b06 | 2012-02-05 15:15:38 +0100 | [diff] [blame] | 522 | try: |
Larry Hastings | b403806 | 2012-07-15 10:57:38 -0700 | [diff] [blame] | 523 | if follow_symlinks or path.samestat(orig_st, stat(dirfd)): |
Charles-François Natali | 7372b06 | 2012-02-05 15:15:38 +0100 | [diff] [blame] | 524 | dirpath = path.join(toppath, name) |
Serhiy Storchaka | 8f6b344 | 2017-03-07 14:33:21 +0200 | [diff] [blame] | 525 | yield from _fwalk(dirfd, dirpath, isbytes, |
| 526 | topdown, onerror, follow_symlinks) |
Charles-François Natali | 7372b06 | 2012-02-05 15:15:38 +0100 | [diff] [blame] | 527 | finally: |
| 528 | close(dirfd) |
| 529 | |
| 530 | if not topdown: |
| 531 | yield toppath, dirs, nondirs, topfd |
| 532 | |
| 533 | __all__.append("fwalk") |
| 534 | |
Guido van Rossum | e65cce5 | 1993-11-08 15:05:21 +0000 | [diff] [blame] | 535 | def execl(file, *args): |
Guido van Rossum | 7da3cc5 | 2000-04-25 10:53:22 +0000 | [diff] [blame] | 536 | """execl(file, *args) |
| 537 | |
| 538 | Execute the executable file with argument list args, replacing the |
| 539 | current process. """ |
Guido van Rossum | 61de0ac | 1997-12-05 21:24:30 +0000 | [diff] [blame] | 540 | execv(file, args) |
Guido van Rossum | e65cce5 | 1993-11-08 15:05:21 +0000 | [diff] [blame] | 541 | |
| 542 | def execle(file, *args): |
Guido van Rossum | 7da3cc5 | 2000-04-25 10:53:22 +0000 | [diff] [blame] | 543 | """execle(file, *args, env) |
| 544 | |
| 545 | Execute the executable file with argument list args and |
| 546 | environment env, replacing the current process. """ |
Guido van Rossum | 61de0ac | 1997-12-05 21:24:30 +0000 | [diff] [blame] | 547 | env = args[-1] |
| 548 | execve(file, args[:-1], env) |
Guido van Rossum | e65cce5 | 1993-11-08 15:05:21 +0000 | [diff] [blame] | 549 | |
| 550 | def execlp(file, *args): |
Guido van Rossum | 7da3cc5 | 2000-04-25 10:53:22 +0000 | [diff] [blame] | 551 | """execlp(file, *args) |
| 552 | |
| 553 | Execute the executable file (which is searched for along $PATH) |
| 554 | with argument list args, replacing the current process. """ |
Guido van Rossum | 61de0ac | 1997-12-05 21:24:30 +0000 | [diff] [blame] | 555 | execvp(file, args) |
Guido van Rossum | e65cce5 | 1993-11-08 15:05:21 +0000 | [diff] [blame] | 556 | |
Guido van Rossum | 030afb1 | 1995-03-14 17:27:18 +0000 | [diff] [blame] | 557 | def execlpe(file, *args): |
Guido van Rossum | 7da3cc5 | 2000-04-25 10:53:22 +0000 | [diff] [blame] | 558 | """execlpe(file, *args, env) |
| 559 | |
| 560 | Execute the executable file (which is searched for along $PATH) |
| 561 | with argument list args and environment env, replacing the current |
Tim Peters | 2344fae | 2001-01-15 00:50:52 +0000 | [diff] [blame] | 562 | process. """ |
Guido van Rossum | 61de0ac | 1997-12-05 21:24:30 +0000 | [diff] [blame] | 563 | env = args[-1] |
| 564 | execvpe(file, args[:-1], env) |
Guido van Rossum | 030afb1 | 1995-03-14 17:27:18 +0000 | [diff] [blame] | 565 | |
Guido van Rossum | e65cce5 | 1993-11-08 15:05:21 +0000 | [diff] [blame] | 566 | def execvp(file, args): |
Matthias Klose | a09c54f | 2010-01-31 16:48:44 +0000 | [diff] [blame] | 567 | """execvp(file, args) |
Guido van Rossum | 7da3cc5 | 2000-04-25 10:53:22 +0000 | [diff] [blame] | 568 | |
| 569 | Execute the executable file (which is searched for along $PATH) |
| 570 | with argument list args, replacing the current process. |
Thomas Wouters | 7e47402 | 2000-07-16 12:04:32 +0000 | [diff] [blame] | 571 | args may be a list or tuple of strings. """ |
Guido van Rossum | 61de0ac | 1997-12-05 21:24:30 +0000 | [diff] [blame] | 572 | _execvpe(file, args) |
Guido van Rossum | 030afb1 | 1995-03-14 17:27:18 +0000 | [diff] [blame] | 573 | |
| 574 | def execvpe(file, args, env): |
Guido van Rossum | 683c0fe | 2002-09-03 16:36:17 +0000 | [diff] [blame] | 575 | """execvpe(file, args, env) |
Guido van Rossum | 7da3cc5 | 2000-04-25 10:53:22 +0000 | [diff] [blame] | 576 | |
| 577 | Execute the executable file (which is searched for along $PATH) |
Hasan Ramezani | fb6807b | 2019-09-09 17:58:21 +0200 | [diff] [blame] | 578 | with argument list args and environment env, replacing the |
Guido van Rossum | 7da3cc5 | 2000-04-25 10:53:22 +0000 | [diff] [blame] | 579 | current process. |
Tim Peters | 2344fae | 2001-01-15 00:50:52 +0000 | [diff] [blame] | 580 | args may be a list or tuple of strings. """ |
Guido van Rossum | 61de0ac | 1997-12-05 21:24:30 +0000 | [diff] [blame] | 581 | _execvpe(file, args, env) |
Guido van Rossum | 030afb1 | 1995-03-14 17:27:18 +0000 | [diff] [blame] | 582 | |
Skip Montanaro | 269b83b | 2001-02-06 01:07:02 +0000 | [diff] [blame] | 583 | __all__.extend(["execl","execle","execlp","execlpe","execvp","execvpe"]) |
| 584 | |
Guido van Rossum | 5a2ca93 | 1999-11-02 13:27:32 +0000 | [diff] [blame] | 585 | def _execvpe(file, args, env=None): |
| 586 | if env is not None: |
Gregory P. Smith | b6e8c7e | 2010-02-27 07:22:22 +0000 | [diff] [blame] | 587 | exec_func = execve |
Guido van Rossum | 61de0ac | 1997-12-05 21:24:30 +0000 | [diff] [blame] | 588 | argrest = (args, env) |
| 589 | else: |
Gregory P. Smith | b6e8c7e | 2010-02-27 07:22:22 +0000 | [diff] [blame] | 590 | exec_func = execv |
Guido van Rossum | 61de0ac | 1997-12-05 21:24:30 +0000 | [diff] [blame] | 591 | argrest = (args,) |
| 592 | env = environ |
Guido van Rossum | aed51d8 | 2002-08-05 16:13:24 +0000 | [diff] [blame] | 593 | |
Serhiy Storchaka | 8110837 | 2017-09-26 00:55:55 +0300 | [diff] [blame] | 594 | if path.dirname(file): |
Gregory P. Smith | b6e8c7e | 2010-02-27 07:22:22 +0000 | [diff] [blame] | 595 | exec_func(file, *argrest) |
Guido van Rossum | 61de0ac | 1997-12-05 21:24:30 +0000 | [diff] [blame] | 596 | return |
Serhiy Storchaka | 8110837 | 2017-09-26 00:55:55 +0300 | [diff] [blame] | 597 | saved_exc = None |
Victor Stinner | b745a74 | 2010-05-18 17:17:23 +0000 | [diff] [blame] | 598 | path_list = get_exec_path(env) |
| 599 | if name != 'nt': |
| 600 | file = fsencode(file) |
| 601 | path_list = map(fsencode, path_list) |
| 602 | for dir in path_list: |
Guido van Rossum | 61de0ac | 1997-12-05 21:24:30 +0000 | [diff] [blame] | 603 | fullname = path.join(dir, file) |
| 604 | try: |
Gregory P. Smith | b6e8c7e | 2010-02-27 07:22:22 +0000 | [diff] [blame] | 605 | exec_func(fullname, *argrest) |
Serhiy Storchaka | 8110837 | 2017-09-26 00:55:55 +0300 | [diff] [blame] | 606 | except (FileNotFoundError, NotADirectoryError) as e: |
| 607 | last_exc = e |
Andrew Svetlov | 8b33dd8 | 2012-12-24 19:58:48 +0200 | [diff] [blame] | 608 | except OSError as e: |
Guido van Rossum | e7ba495 | 2007-06-06 23:52:48 +0000 | [diff] [blame] | 609 | last_exc = e |
Serhiy Storchaka | 8110837 | 2017-09-26 00:55:55 +0300 | [diff] [blame] | 610 | if saved_exc is None: |
Guido van Rossum | 683c0fe | 2002-09-03 16:36:17 +0000 | [diff] [blame] | 611 | saved_exc = e |
Serhiy Storchaka | 8110837 | 2017-09-26 00:55:55 +0300 | [diff] [blame] | 612 | if saved_exc is not None: |
| 613 | raise saved_exc |
| 614 | raise last_exc |
Guido van Rossum | d74fb6b | 2001-03-02 06:43:49 +0000 | [diff] [blame] | 615 | |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 616 | |
Gregory P. Smith | b6e8c7e | 2010-02-27 07:22:22 +0000 | [diff] [blame] | 617 | def get_exec_path(env=None): |
| 618 | """Returns the sequence of directories that will be searched for the |
| 619 | named executable (similar to a shell) when launching a process. |
| 620 | |
| 621 | *env* must be an environment variable dict or None. If *env* is None, |
| 622 | os.environ will be used. |
| 623 | """ |
Victor Stinner | 273b766 | 2010-11-06 12:59:33 +0000 | [diff] [blame] | 624 | # Use a local import instead of a global import to limit the number of |
| 625 | # modules loaded at startup: the os module is always loaded at startup by |
| 626 | # Python. It may also avoid a bootstrap issue. |
Victor Stinner | 6f35eda | 2010-10-29 00:38:58 +0000 | [diff] [blame] | 627 | import warnings |
| 628 | |
Gregory P. Smith | b6e8c7e | 2010-02-27 07:22:22 +0000 | [diff] [blame] | 629 | if env is None: |
| 630 | env = environ |
Victor Stinner | b745a74 | 2010-05-18 17:17:23 +0000 | [diff] [blame] | 631 | |
Victor Stinner | bb4f218 | 2010-11-07 15:43:39 +0000 | [diff] [blame] | 632 | # {b'PATH': ...}.get('PATH') and {'PATH': ...}.get(b'PATH') emit a |
| 633 | # BytesWarning when using python -b or python -bb: ignore the warning |
Victor Stinner | 273b766 | 2010-11-06 12:59:33 +0000 | [diff] [blame] | 634 | with warnings.catch_warnings(): |
| 635 | warnings.simplefilter("ignore", BytesWarning) |
Victor Stinner | b745a74 | 2010-05-18 17:17:23 +0000 | [diff] [blame] | 636 | |
Victor Stinner | b745a74 | 2010-05-18 17:17:23 +0000 | [diff] [blame] | 637 | try: |
Victor Stinner | 273b766 | 2010-11-06 12:59:33 +0000 | [diff] [blame] | 638 | path_list = env.get('PATH') |
| 639 | except TypeError: |
| 640 | path_list = None |
Victor Stinner | b745a74 | 2010-05-18 17:17:23 +0000 | [diff] [blame] | 641 | |
Victor Stinner | 273b766 | 2010-11-06 12:59:33 +0000 | [diff] [blame] | 642 | if supports_bytes_environ: |
| 643 | try: |
| 644 | path_listb = env[b'PATH'] |
| 645 | except (KeyError, TypeError): |
| 646 | pass |
| 647 | else: |
| 648 | if path_list is not None: |
| 649 | raise ValueError( |
| 650 | "env cannot contain 'PATH' and b'PATH' keys") |
| 651 | path_list = path_listb |
| 652 | |
| 653 | if path_list is not None and isinstance(path_list, bytes): |
| 654 | path_list = fsdecode(path_list) |
Victor Stinner | b745a74 | 2010-05-18 17:17:23 +0000 | [diff] [blame] | 655 | |
| 656 | if path_list is None: |
| 657 | path_list = defpath |
| 658 | return path_list.split(pathsep) |
Gregory P. Smith | b6e8c7e | 2010-02-27 07:22:22 +0000 | [diff] [blame] | 659 | |
| 660 | |
Victor Stinner | b8d1262 | 2020-01-24 14:05:48 +0100 | [diff] [blame] | 661 | # Change environ to automatically call putenv() and unsetenv() |
Christian Heimes | f1dc3ee | 2013-10-13 02:04:20 +0200 | [diff] [blame] | 662 | from _collections_abc import MutableMapping |
Skip Montanaro | 289bc05 | 2007-08-17 02:30:27 +0000 | [diff] [blame] | 663 | |
| 664 | class _Environ(MutableMapping): |
Victor Stinner | b8d1262 | 2020-01-24 14:05:48 +0100 | [diff] [blame] | 665 | def __init__(self, data, encodekey, decodekey, encodevalue, decodevalue): |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 666 | self.encodekey = encodekey |
| 667 | self.decodekey = decodekey |
| 668 | self.encodevalue = encodevalue |
| 669 | self.decodevalue = decodevalue |
Victor Stinner | 3d75d0c | 2010-09-10 22:18:16 +0000 | [diff] [blame] | 670 | self._data = data |
Ezio Melotti | 19e4acf | 2010-02-22 15:59:01 +0000 | [diff] [blame] | 671 | |
Skip Montanaro | 289bc05 | 2007-08-17 02:30:27 +0000 | [diff] [blame] | 672 | def __getitem__(self, key): |
Victor Stinner | 6d10139 | 2013-04-14 16:35:04 +0200 | [diff] [blame] | 673 | try: |
| 674 | value = self._data[self.encodekey(key)] |
| 675 | except KeyError: |
| 676 | # raise KeyError with the original key value |
Victor Stinner | 0c2dd0c | 2013-08-23 19:19:15 +0200 | [diff] [blame] | 677 | raise KeyError(key) from None |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 678 | return self.decodevalue(value) |
Ezio Melotti | 19e4acf | 2010-02-22 15:59:01 +0000 | [diff] [blame] | 679 | |
Skip Montanaro | 289bc05 | 2007-08-17 02:30:27 +0000 | [diff] [blame] | 680 | def __setitem__(self, key, value): |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 681 | key = self.encodekey(key) |
| 682 | value = self.encodevalue(value) |
Victor Stinner | b8d1262 | 2020-01-24 14:05:48 +0100 | [diff] [blame] | 683 | putenv(key, value) |
Victor Stinner | 3d75d0c | 2010-09-10 22:18:16 +0000 | [diff] [blame] | 684 | self._data[key] = value |
Ezio Melotti | 19e4acf | 2010-02-22 15:59:01 +0000 | [diff] [blame] | 685 | |
Skip Montanaro | 289bc05 | 2007-08-17 02:30:27 +0000 | [diff] [blame] | 686 | def __delitem__(self, key): |
Victor Stinner | 6d10139 | 2013-04-14 16:35:04 +0200 | [diff] [blame] | 687 | encodedkey = self.encodekey(key) |
Victor Stinner | b8d1262 | 2020-01-24 14:05:48 +0100 | [diff] [blame] | 688 | unsetenv(encodedkey) |
Victor Stinner | 6d10139 | 2013-04-14 16:35:04 +0200 | [diff] [blame] | 689 | try: |
| 690 | del self._data[encodedkey] |
| 691 | except KeyError: |
| 692 | # raise KeyError with the original key value |
Victor Stinner | 0c2dd0c | 2013-08-23 19:19:15 +0200 | [diff] [blame] | 693 | raise KeyError(key) from None |
Ezio Melotti | 19e4acf | 2010-02-22 15:59:01 +0000 | [diff] [blame] | 694 | |
Skip Montanaro | 289bc05 | 2007-08-17 02:30:27 +0000 | [diff] [blame] | 695 | def __iter__(self): |
Osvaldo Santana Neto | 8a8d285 | 2017-07-01 14:34:45 -0300 | [diff] [blame] | 696 | # list() from dict object is an atomic operation |
| 697 | keys = list(self._data) |
| 698 | for key in keys: |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 699 | yield self.decodekey(key) |
Ezio Melotti | 19e4acf | 2010-02-22 15:59:01 +0000 | [diff] [blame] | 700 | |
Skip Montanaro | 289bc05 | 2007-08-17 02:30:27 +0000 | [diff] [blame] | 701 | def __len__(self): |
Victor Stinner | 3d75d0c | 2010-09-10 22:18:16 +0000 | [diff] [blame] | 702 | return len(self._data) |
Ezio Melotti | 19e4acf | 2010-02-22 15:59:01 +0000 | [diff] [blame] | 703 | |
| 704 | def __repr__(self): |
Victor Stinner | bed7117 | 2010-07-28 21:25:42 +0000 | [diff] [blame] | 705 | return 'environ({{{}}})'.format(', '.join( |
Victor Stinner | d73c1a3 | 2010-07-28 21:23:23 +0000 | [diff] [blame] | 706 | ('{!r}: {!r}'.format(self.decodekey(key), self.decodevalue(value)) |
Victor Stinner | 3d75d0c | 2010-09-10 22:18:16 +0000 | [diff] [blame] | 707 | for key, value in self._data.items()))) |
Ezio Melotti | 19e4acf | 2010-02-22 15:59:01 +0000 | [diff] [blame] | 708 | |
Skip Montanaro | 289bc05 | 2007-08-17 02:30:27 +0000 | [diff] [blame] | 709 | def copy(self): |
| 710 | return dict(self) |
Ezio Melotti | 19e4acf | 2010-02-22 15:59:01 +0000 | [diff] [blame] | 711 | |
Skip Montanaro | 289bc05 | 2007-08-17 02:30:27 +0000 | [diff] [blame] | 712 | def setdefault(self, key, value): |
| 713 | if key not in self: |
| 714 | self[key] = value |
| 715 | return self[key] |
| 716 | |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 717 | def _createenviron(): |
Jesus Cea | 4791a24 | 2012-10-05 03:15:39 +0200 | [diff] [blame] | 718 | if name == 'nt': |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 719 | # Where Env Var Names Must Be UPPERCASE |
| 720 | def check_str(value): |
| 721 | if not isinstance(value, str): |
| 722 | raise TypeError("str expected, not %s" % type(value).__name__) |
| 723 | return value |
| 724 | encode = check_str |
| 725 | decode = str |
| 726 | def encodekey(key): |
| 727 | return encode(key).upper() |
| 728 | data = {} |
| 729 | for key, value in environ.items(): |
| 730 | data[encodekey(key)] = value |
| 731 | else: |
| 732 | # Where Env Var Names Can Be Mixed Case |
Victor Stinner | df6d6cb | 2010-10-24 20:32:26 +0000 | [diff] [blame] | 733 | encoding = sys.getfilesystemencoding() |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 734 | def encode(value): |
| 735 | if not isinstance(value, str): |
| 736 | raise TypeError("str expected, not %s" % type(value).__name__) |
Victor Stinner | df6d6cb | 2010-10-24 20:32:26 +0000 | [diff] [blame] | 737 | return value.encode(encoding, 'surrogateescape') |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 738 | def decode(value): |
Victor Stinner | df6d6cb | 2010-10-24 20:32:26 +0000 | [diff] [blame] | 739 | return value.decode(encoding, 'surrogateescape') |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 740 | encodekey = encode |
| 741 | data = environ |
| 742 | return _Environ(data, |
| 743 | encodekey, decode, |
Victor Stinner | b8d1262 | 2020-01-24 14:05:48 +0100 | [diff] [blame] | 744 | encode, decode) |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 745 | |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 746 | # unicode environ |
| 747 | environ = _createenviron() |
| 748 | del _createenviron |
Guido van Rossum | 61de0ac | 1997-12-05 21:24:30 +0000 | [diff] [blame] | 749 | |
Guido van Rossum | 5a2ca93 | 1999-11-02 13:27:32 +0000 | [diff] [blame] | 750 | |
Jack Jansen | b11ce9b | 2003-01-08 16:33:40 +0000 | [diff] [blame] | 751 | def getenv(key, default=None): |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 752 | """Get an environment variable, return None if it doesn't exist. |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 753 | The optional second argument can specify an alternate default. |
| 754 | key, default and the result are str.""" |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 755 | return environ.get(key, default) |
Guido van Rossum | 5a2ca93 | 1999-11-02 13:27:32 +0000 | [diff] [blame] | 756 | |
Jesus Cea | 4791a24 | 2012-10-05 03:15:39 +0200 | [diff] [blame] | 757 | supports_bytes_environ = (name != 'nt') |
Victor Stinner | b745a74 | 2010-05-18 17:17:23 +0000 | [diff] [blame] | 758 | __all__.extend(("getenv", "supports_bytes_environ")) |
| 759 | |
| 760 | if supports_bytes_environ: |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 761 | def _check_bytes(value): |
| 762 | if not isinstance(value, bytes): |
| 763 | raise TypeError("bytes expected, not %s" % type(value).__name__) |
| 764 | return value |
| 765 | |
| 766 | # bytes environ |
Victor Stinner | 3d75d0c | 2010-09-10 22:18:16 +0000 | [diff] [blame] | 767 | environb = _Environ(environ._data, |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 768 | _check_bytes, bytes, |
Victor Stinner | b8d1262 | 2020-01-24 14:05:48 +0100 | [diff] [blame] | 769 | _check_bytes, bytes) |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 770 | del _check_bytes |
| 771 | |
| 772 | def getenvb(key, default=None): |
| 773 | """Get an environment variable, return None if it doesn't exist. |
| 774 | The optional second argument can specify an alternate default. |
| 775 | key, default and the result are bytes.""" |
| 776 | return environb.get(key, default) |
Victor Stinner | 70120e2 | 2010-07-29 17:19:38 +0000 | [diff] [blame] | 777 | |
| 778 | __all__.extend(("environb", "getenvb")) |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 779 | |
Victor Stinner | df6d6cb | 2010-10-24 20:32:26 +0000 | [diff] [blame] | 780 | def _fscodec(): |
| 781 | encoding = sys.getfilesystemencoding() |
Steve Dower | cc16be8 | 2016-09-08 10:35:16 -0700 | [diff] [blame] | 782 | errors = sys.getfilesystemencodeerrors() |
Victor Stinner | e8d5145 | 2010-08-19 01:05:19 +0000 | [diff] [blame] | 783 | |
Victor Stinner | df6d6cb | 2010-10-24 20:32:26 +0000 | [diff] [blame] | 784 | def fsencode(filename): |
Brett Cannon | 5f74ebc | 2016-06-09 14:29:25 -0700 | [diff] [blame] | 785 | """Encode filename (an os.PathLike, bytes, or str) to the filesystem |
Ethan Furman | c1cbeed | 2016-06-04 10:19:27 -0700 | [diff] [blame] | 786 | encoding with 'surrogateescape' error handler, return bytes unchanged. |
| 787 | On Windows, use 'strict' error handler if the file system encoding is |
| 788 | 'mbcs' (which is the default encoding). |
Victor Stinner | df6d6cb | 2010-10-24 20:32:26 +0000 | [diff] [blame] | 789 | """ |
Brett Cannon | c78ca1e | 2016-06-24 12:03:43 -0700 | [diff] [blame] | 790 | filename = fspath(filename) # Does type-checking of `filename`. |
| 791 | if isinstance(filename, str): |
Victor Stinner | df6d6cb | 2010-10-24 20:32:26 +0000 | [diff] [blame] | 792 | return filename.encode(encoding, errors) |
Victor Stinner | e8d5145 | 2010-08-19 01:05:19 +0000 | [diff] [blame] | 793 | else: |
Brett Cannon | c78ca1e | 2016-06-24 12:03:43 -0700 | [diff] [blame] | 794 | return filename |
Victor Stinner | df6d6cb | 2010-10-24 20:32:26 +0000 | [diff] [blame] | 795 | |
| 796 | def fsdecode(filename): |
Brett Cannon | 5f74ebc | 2016-06-09 14:29:25 -0700 | [diff] [blame] | 797 | """Decode filename (an os.PathLike, bytes, or str) from the filesystem |
Ethan Furman | c1cbeed | 2016-06-04 10:19:27 -0700 | [diff] [blame] | 798 | encoding with 'surrogateescape' error handler, return str unchanged. On |
| 799 | Windows, use 'strict' error handler if the file system encoding is |
| 800 | 'mbcs' (which is the default encoding). |
Victor Stinner | df6d6cb | 2010-10-24 20:32:26 +0000 | [diff] [blame] | 801 | """ |
Brett Cannon | c78ca1e | 2016-06-24 12:03:43 -0700 | [diff] [blame] | 802 | filename = fspath(filename) # Does type-checking of `filename`. |
| 803 | if isinstance(filename, bytes): |
Victor Stinner | df6d6cb | 2010-10-24 20:32:26 +0000 | [diff] [blame] | 804 | return filename.decode(encoding, errors) |
| 805 | else: |
Brett Cannon | c78ca1e | 2016-06-24 12:03:43 -0700 | [diff] [blame] | 806 | return filename |
Victor Stinner | df6d6cb | 2010-10-24 20:32:26 +0000 | [diff] [blame] | 807 | |
| 808 | return fsencode, fsdecode |
| 809 | |
| 810 | fsencode, fsdecode = _fscodec() |
| 811 | del _fscodec |
Victor Stinner | 449c466 | 2010-05-08 11:10:09 +0000 | [diff] [blame] | 812 | |
Guido van Rossum | 5a2ca93 | 1999-11-02 13:27:32 +0000 | [diff] [blame] | 813 | # Supply spawn*() (probably only for Unix) |
| 814 | if _exists("fork") and not _exists("spawnv") and _exists("execv"): |
| 815 | |
| 816 | P_WAIT = 0 |
| 817 | P_NOWAIT = P_NOWAITO = 1 |
| 818 | |
Petri Lehtinen | 3bc37f2 | 2012-05-23 21:36:16 +0300 | [diff] [blame] | 819 | __all__.extend(["P_WAIT", "P_NOWAIT", "P_NOWAITO"]) |
| 820 | |
Guido van Rossum | 5a2ca93 | 1999-11-02 13:27:32 +0000 | [diff] [blame] | 821 | # XXX Should we support P_DETACH? I suppose it could fork()**2 |
| 822 | # and close the std I/O streams. Also, P_OVERLAY is the same |
| 823 | # as execv*()? |
| 824 | |
| 825 | def _spawnvef(mode, file, args, env, func): |
| 826 | # Internal helper; func is the exec*() function to use |
Steve Dower | eccaa06 | 2016-11-19 20:11:56 -0800 | [diff] [blame] | 827 | if not isinstance(args, (tuple, list)): |
| 828 | raise TypeError('argv must be a tuple or a list') |
Steve Dower | bb08db4 | 2016-11-19 21:14:27 -0800 | [diff] [blame] | 829 | if not args or not args[0]: |
Steve Dower | eccaa06 | 2016-11-19 20:11:56 -0800 | [diff] [blame] | 830 | raise ValueError('argv first element cannot be empty') |
Guido van Rossum | 5a2ca93 | 1999-11-02 13:27:32 +0000 | [diff] [blame] | 831 | pid = fork() |
| 832 | if not pid: |
| 833 | # Child |
| 834 | try: |
| 835 | if env is None: |
| 836 | func(file, args) |
| 837 | else: |
| 838 | func(file, args, env) |
| 839 | except: |
| 840 | _exit(127) |
| 841 | else: |
| 842 | # Parent |
| 843 | if mode == P_NOWAIT: |
| 844 | return pid # Caller is responsible for waiting! |
| 845 | while 1: |
| 846 | wpid, sts = waitpid(pid, 0) |
| 847 | if WIFSTOPPED(sts): |
| 848 | continue |
| 849 | elif WIFSIGNALED(sts): |
| 850 | return -WTERMSIG(sts) |
| 851 | elif WIFEXITED(sts): |
| 852 | return WEXITSTATUS(sts) |
| 853 | else: |
Andrew Svetlov | 8b33dd8 | 2012-12-24 19:58:48 +0200 | [diff] [blame] | 854 | raise OSError("Not stopped, signaled or exited???") |
Guido van Rossum | 5a2ca93 | 1999-11-02 13:27:32 +0000 | [diff] [blame] | 855 | |
| 856 | def spawnv(mode, file, args): |
Guido van Rossum | e0cd291 | 2000-04-21 18:35:36 +0000 | [diff] [blame] | 857 | """spawnv(mode, file, args) -> integer |
| 858 | |
| 859 | Execute file with arguments from args in a subprocess. |
| 860 | If mode == P_NOWAIT return the pid of the process. |
| 861 | If mode == P_WAIT return the process's exit code if it exits normally; |
Tim Peters | 2344fae | 2001-01-15 00:50:52 +0000 | [diff] [blame] | 862 | otherwise return -SIG, where SIG is the signal that killed it. """ |
Guido van Rossum | 5a2ca93 | 1999-11-02 13:27:32 +0000 | [diff] [blame] | 863 | return _spawnvef(mode, file, args, None, execv) |
| 864 | |
| 865 | def spawnve(mode, file, args, env): |
Guido van Rossum | e0cd291 | 2000-04-21 18:35:36 +0000 | [diff] [blame] | 866 | """spawnve(mode, file, args, env) -> integer |
| 867 | |
| 868 | Execute file with arguments from args in a subprocess with the |
| 869 | specified environment. |
| 870 | If mode == P_NOWAIT return the pid of the process. |
| 871 | If mode == P_WAIT return the process's exit code if it exits normally; |
| 872 | otherwise return -SIG, where SIG is the signal that killed it. """ |
Guido van Rossum | 5a2ca93 | 1999-11-02 13:27:32 +0000 | [diff] [blame] | 873 | return _spawnvef(mode, file, args, env, execve) |
| 874 | |
Mike | 53f7a7c | 2017-12-14 14:04:53 +0300 | [diff] [blame] | 875 | # Note: spawnvp[e] isn't currently supported on Windows |
Guido van Rossum | dd7cbbf | 1999-11-02 20:44:07 +0000 | [diff] [blame] | 876 | |
| 877 | def spawnvp(mode, file, args): |
Guido van Rossum | e0cd291 | 2000-04-21 18:35:36 +0000 | [diff] [blame] | 878 | """spawnvp(mode, file, args) -> integer |
| 879 | |
| 880 | Execute file (which is looked for along $PATH) with arguments from |
| 881 | args in a subprocess. |
| 882 | If mode == P_NOWAIT return the pid of the process. |
| 883 | If mode == P_WAIT return the process's exit code if it exits normally; |
| 884 | otherwise return -SIG, where SIG is the signal that killed it. """ |
Guido van Rossum | dd7cbbf | 1999-11-02 20:44:07 +0000 | [diff] [blame] | 885 | return _spawnvef(mode, file, args, None, execvp) |
| 886 | |
| 887 | def spawnvpe(mode, file, args, env): |
Guido van Rossum | e0cd291 | 2000-04-21 18:35:36 +0000 | [diff] [blame] | 888 | """spawnvpe(mode, file, args, env) -> integer |
| 889 | |
| 890 | Execute file (which is looked for along $PATH) with arguments from |
| 891 | args in a subprocess with the supplied environment. |
| 892 | If mode == P_NOWAIT return the pid of the process. |
| 893 | If mode == P_WAIT return the process's exit code if it exits normally; |
| 894 | otherwise return -SIG, where SIG is the signal that killed it. """ |
Guido van Rossum | dd7cbbf | 1999-11-02 20:44:07 +0000 | [diff] [blame] | 895 | return _spawnvef(mode, file, args, env, execvpe) |
| 896 | |
Richard Oudkerk | ad34ef8 | 2013-05-07 14:23:42 +0100 | [diff] [blame] | 897 | |
| 898 | __all__.extend(["spawnv", "spawnve", "spawnvp", "spawnvpe"]) |
| 899 | |
| 900 | |
Guido van Rossum | dd7cbbf | 1999-11-02 20:44:07 +0000 | [diff] [blame] | 901 | if _exists("spawnv"): |
| 902 | # These aren't supplied by the basic Windows code |
| 903 | # but can be easily implemented in Python |
Guido van Rossum | 5a2ca93 | 1999-11-02 13:27:32 +0000 | [diff] [blame] | 904 | |
| 905 | def spawnl(mode, file, *args): |
Guido van Rossum | e0cd291 | 2000-04-21 18:35:36 +0000 | [diff] [blame] | 906 | """spawnl(mode, file, *args) -> integer |
| 907 | |
| 908 | Execute file with arguments from args in a subprocess. |
| 909 | If mode == P_NOWAIT return the pid of the process. |
| 910 | If mode == P_WAIT return the process's exit code if it exits normally; |
| 911 | otherwise return -SIG, where SIG is the signal that killed it. """ |
Guido van Rossum | 5a2ca93 | 1999-11-02 13:27:32 +0000 | [diff] [blame] | 912 | return spawnv(mode, file, args) |
| 913 | |
| 914 | def spawnle(mode, file, *args): |
Guido van Rossum | e0cd291 | 2000-04-21 18:35:36 +0000 | [diff] [blame] | 915 | """spawnle(mode, file, *args, env) -> integer |
| 916 | |
| 917 | Execute file with arguments from args in a subprocess with the |
| 918 | supplied environment. |
| 919 | If mode == P_NOWAIT return the pid of the process. |
| 920 | If mode == P_WAIT return the process's exit code if it exits normally; |
| 921 | otherwise return -SIG, where SIG is the signal that killed it. """ |
Guido van Rossum | 5a2ca93 | 1999-11-02 13:27:32 +0000 | [diff] [blame] | 922 | env = args[-1] |
| 923 | return spawnve(mode, file, args[:-1], env) |
| 924 | |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 925 | |
Richard Oudkerk | ad34ef8 | 2013-05-07 14:23:42 +0100 | [diff] [blame] | 926 | __all__.extend(["spawnl", "spawnle"]) |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 927 | |
| 928 | |
Guido van Rossum | dd7cbbf | 1999-11-02 20:44:07 +0000 | [diff] [blame] | 929 | if _exists("spawnvp"): |
| 930 | # At the moment, Windows doesn't implement spawnvp[e], |
| 931 | # so it won't have spawnlp[e] either. |
Guido van Rossum | 5a2ca93 | 1999-11-02 13:27:32 +0000 | [diff] [blame] | 932 | def spawnlp(mode, file, *args): |
Neal Norwitz | b7f6810 | 2003-07-02 02:49:33 +0000 | [diff] [blame] | 933 | """spawnlp(mode, file, *args) -> integer |
Guido van Rossum | e0cd291 | 2000-04-21 18:35:36 +0000 | [diff] [blame] | 934 | |
| 935 | Execute file (which is looked for along $PATH) with arguments from |
| 936 | args in a subprocess with the supplied environment. |
| 937 | If mode == P_NOWAIT return the pid of the process. |
| 938 | If mode == P_WAIT return the process's exit code if it exits normally; |
| 939 | otherwise return -SIG, where SIG is the signal that killed it. """ |
Guido van Rossum | 5a2ca93 | 1999-11-02 13:27:32 +0000 | [diff] [blame] | 940 | return spawnvp(mode, file, args) |
| 941 | |
| 942 | def spawnlpe(mode, file, *args): |
Guido van Rossum | e0cd291 | 2000-04-21 18:35:36 +0000 | [diff] [blame] | 943 | """spawnlpe(mode, file, *args, env) -> integer |
| 944 | |
| 945 | Execute file (which is looked for along $PATH) with arguments from |
| 946 | args in a subprocess with the supplied environment. |
| 947 | If mode == P_NOWAIT return the pid of the process. |
| 948 | If mode == P_WAIT return the process's exit code if it exits normally; |
| 949 | otherwise return -SIG, where SIG is the signal that killed it. """ |
Guido van Rossum | 5a2ca93 | 1999-11-02 13:27:32 +0000 | [diff] [blame] | 950 | env = args[-1] |
| 951 | return spawnvpe(mode, file, args[:-1], env) |
Guido van Rossum | e0cd291 | 2000-04-21 18:35:36 +0000 | [diff] [blame] | 952 | |
| 953 | |
Richard Oudkerk | ad34ef8 | 2013-05-07 14:23:42 +0100 | [diff] [blame] | 954 | __all__.extend(["spawnlp", "spawnlpe"]) |
| 955 | |
Skip Montanaro | 269b83b | 2001-02-06 01:07:02 +0000 | [diff] [blame] | 956 | |
Guido van Rossum | c2f93dc | 2007-05-24 00:50:02 +0000 | [diff] [blame] | 957 | # Supply os.popen() |
Antoine Pitrou | 877766d | 2011-03-19 17:00:37 +0100 | [diff] [blame] | 958 | def popen(cmd, mode="r", buffering=-1): |
Guido van Rossum | 3172c5d | 2007-10-16 18:12:55 +0000 | [diff] [blame] | 959 | if not isinstance(cmd, str): |
Guido van Rossum | c2f93dc | 2007-05-24 00:50:02 +0000 | [diff] [blame] | 960 | raise TypeError("invalid cmd type (%s, expected string)" % type(cmd)) |
| 961 | if mode not in ("r", "w"): |
| 962 | raise ValueError("invalid mode %r" % mode) |
Benjamin Peterson | b29614e | 2012-10-09 11:16:03 -0400 | [diff] [blame] | 963 | if buffering == 0 or buffering is None: |
Antoine Pitrou | 877766d | 2011-03-19 17:00:37 +0100 | [diff] [blame] | 964 | raise ValueError("popen() does not support unbuffered streams") |
Guido van Rossum | c2f93dc | 2007-05-24 00:50:02 +0000 | [diff] [blame] | 965 | import subprocess, io |
| 966 | if mode == "r": |
| 967 | proc = subprocess.Popen(cmd, |
| 968 | shell=True, |
| 969 | stdout=subprocess.PIPE, |
| 970 | bufsize=buffering) |
| 971 | return _wrap_close(io.TextIOWrapper(proc.stdout), proc) |
| 972 | else: |
| 973 | proc = subprocess.Popen(cmd, |
| 974 | shell=True, |
| 975 | stdin=subprocess.PIPE, |
| 976 | bufsize=buffering) |
| 977 | return _wrap_close(io.TextIOWrapper(proc.stdin), proc) |
| 978 | |
| 979 | # Helper for popen() -- a proxy for a file whose close waits for the process |
| 980 | class _wrap_close: |
| 981 | def __init__(self, stream, proc): |
| 982 | self._stream = stream |
| 983 | self._proc = proc |
| 984 | def close(self): |
| 985 | self._stream.close() |
Amaury Forgeot d'Arc | 97e5f28 | 2009-07-11 09:35:13 +0000 | [diff] [blame] | 986 | returncode = self._proc.wait() |
| 987 | if returncode == 0: |
| 988 | return None |
| 989 | if name == 'nt': |
| 990 | return returncode |
| 991 | else: |
| 992 | return returncode << 8 # Shift left to match old behavior |
Antoine Pitrou | ac62535 | 2009-12-09 00:01:27 +0000 | [diff] [blame] | 993 | def __enter__(self): |
| 994 | return self |
| 995 | def __exit__(self, *args): |
| 996 | self.close() |
Guido van Rossum | c2f93dc | 2007-05-24 00:50:02 +0000 | [diff] [blame] | 997 | def __getattr__(self, name): |
| 998 | return getattr(self._stream, name) |
Thomas Heller | 476157b | 2007-09-04 11:27:47 +0000 | [diff] [blame] | 999 | def __iter__(self): |
| 1000 | return iter(self._stream) |
Guido van Rossum | c2f93dc | 2007-05-24 00:50:02 +0000 | [diff] [blame] | 1001 | |
Amaury Forgeot d'Arc | bdbddf8 | 2008-08-01 00:06:49 +0000 | [diff] [blame] | 1002 | # Supply os.fdopen() |
| 1003 | def fdopen(fd, *args, **kwargs): |
Guido van Rossum | c2f93dc | 2007-05-24 00:50:02 +0000 | [diff] [blame] | 1004 | if not isinstance(fd, int): |
| 1005 | raise TypeError("invalid fd type (%s, expected integer)" % type(fd)) |
| 1006 | import io |
Amaury Forgeot d'Arc | bdbddf8 | 2008-08-01 00:06:49 +0000 | [diff] [blame] | 1007 | return io.open(fd, *args, **kwargs) |
Ethan Furman | cdc0879 | 2016-06-02 15:06:09 -0700 | [diff] [blame] | 1008 | |
Brett Cannon | c78ca1e | 2016-06-24 12:03:43 -0700 | [diff] [blame] | 1009 | |
| 1010 | # For testing purposes, make sure the function is available when the C |
| 1011 | # implementation exists. |
| 1012 | def _fspath(path): |
| 1013 | """Return the path representation of a path-like object. |
| 1014 | |
| 1015 | If str or bytes is passed in, it is returned unchanged. Otherwise the |
| 1016 | os.PathLike interface is used to get the path representation. If the |
| 1017 | path representation is not str or bytes, TypeError is raised. If the |
| 1018 | provided path is not str, bytes, or os.PathLike, TypeError is raised. |
| 1019 | """ |
| 1020 | if isinstance(path, (str, bytes)): |
| 1021 | return path |
| 1022 | |
| 1023 | # Work from the object's type to match method resolution of other magic |
| 1024 | # methods. |
| 1025 | path_type = type(path) |
| 1026 | try: |
| 1027 | path_repr = path_type.__fspath__(path) |
| 1028 | except AttributeError: |
| 1029 | if hasattr(path_type, '__fspath__'): |
| 1030 | raise |
| 1031 | else: |
| 1032 | raise TypeError("expected str, bytes or os.PathLike object, " |
| 1033 | "not " + path_type.__name__) |
| 1034 | if isinstance(path_repr, (str, bytes)): |
| 1035 | return path_repr |
| 1036 | else: |
| 1037 | raise TypeError("expected {}.__fspath__() to return str or bytes, " |
| 1038 | "not {}".format(path_type.__name__, |
| 1039 | type(path_repr).__name__)) |
| 1040 | |
| 1041 | # If there is no C implementation, make the pure Python version the |
| 1042 | # implementation as transparently as possible. |
Ethan Furman | 410ef8e | 2016-06-04 12:06:26 -0700 | [diff] [blame] | 1043 | if not _exists('fspath'): |
Brett Cannon | c78ca1e | 2016-06-24 12:03:43 -0700 | [diff] [blame] | 1044 | fspath = _fspath |
| 1045 | fspath.__name__ = "fspath" |
Ethan Furman | cdc0879 | 2016-06-02 15:06:09 -0700 | [diff] [blame] | 1046 | |
Ethan Furman | 958b3e4 | 2016-06-04 12:49:35 -0700 | [diff] [blame] | 1047 | |
| 1048 | class PathLike(abc.ABC): |
Brett Cannon | 5f74ebc | 2016-06-09 14:29:25 -0700 | [diff] [blame] | 1049 | |
| 1050 | """Abstract base class for implementing the file system path protocol.""" |
| 1051 | |
Ethan Furman | 958b3e4 | 2016-06-04 12:49:35 -0700 | [diff] [blame] | 1052 | @abc.abstractmethod |
| 1053 | def __fspath__(self): |
Brett Cannon | 5f74ebc | 2016-06-09 14:29:25 -0700 | [diff] [blame] | 1054 | """Return the file system path representation of the object.""" |
Ethan Furman | 958b3e4 | 2016-06-04 12:49:35 -0700 | [diff] [blame] | 1055 | raise NotImplementedError |
| 1056 | |
| 1057 | @classmethod |
| 1058 | def __subclasshook__(cls, subclass): |
Bar Harel | eae87e3 | 2019-12-22 11:57:27 +0200 | [diff] [blame] | 1059 | if cls is PathLike: |
| 1060 | return _check_methods(subclass, '__fspath__') |
| 1061 | return NotImplemented |
Steve Dower | 2438cdf | 2019-03-29 16:37:16 -0700 | [diff] [blame] | 1062 | |
Batuhan Taşkaya | 526606b | 2019-12-08 23:31:15 +0300 | [diff] [blame] | 1063 | def __class_getitem__(cls, type): |
| 1064 | return cls |
| 1065 | |
Steve Dower | 2438cdf | 2019-03-29 16:37:16 -0700 | [diff] [blame] | 1066 | |
| 1067 | if name == 'nt': |
| 1068 | class _AddedDllDirectory: |
| 1069 | def __init__(self, path, cookie, remove_dll_directory): |
| 1070 | self.path = path |
| 1071 | self._cookie = cookie |
| 1072 | self._remove_dll_directory = remove_dll_directory |
| 1073 | def close(self): |
| 1074 | self._remove_dll_directory(self._cookie) |
| 1075 | self.path = None |
| 1076 | def __enter__(self): |
| 1077 | return self |
| 1078 | def __exit__(self, *args): |
| 1079 | self.close() |
| 1080 | def __repr__(self): |
| 1081 | if self.path: |
| 1082 | return "<AddedDllDirectory({!r})>".format(self.path) |
| 1083 | return "<AddedDllDirectory()>" |
| 1084 | |
| 1085 | def add_dll_directory(path): |
| 1086 | """Add a path to the DLL search path. |
| 1087 | |
| 1088 | This search path is used when resolving dependencies for imported |
| 1089 | extension modules (the module itself is resolved through sys.path), |
| 1090 | and also by ctypes. |
| 1091 | |
| 1092 | Remove the directory by calling close() on the returned object or |
| 1093 | using it in a with statement. |
| 1094 | """ |
| 1095 | import nt |
| 1096 | cookie = nt._add_dll_directory(path) |
| 1097 | return _AddedDllDirectory( |
| 1098 | path, |
| 1099 | cookie, |
| 1100 | nt._remove_dll_directory |
| 1101 | ) |