Guido van Rossum | b5e05e9 | 1991-01-01 18:10:40 +0000 | [diff] [blame] | 1 | # module 'macpath' -- pathname (or -related) operations for the Macintosh |
Guido van Rossum | 217a5fa | 1990-12-26 15:40:07 +0000 | [diff] [blame] | 2 | |
Guido van Rossum | 599f2ed | 1992-01-14 18:28:18 +0000 | [diff] [blame] | 3 | import string |
Guido van Rossum | 217a5fa | 1990-12-26 15:40:07 +0000 | [diff] [blame] | 4 | import mac |
Guido van Rossum | 217a5fa | 1990-12-26 15:40:07 +0000 | [diff] [blame] | 5 | from stat import * |
| 6 | |
Guido van Rossum | b5e05e9 | 1991-01-01 18:10:40 +0000 | [diff] [blame] | 7 | |
Guido van Rossum | 599f2ed | 1992-01-14 18:28:18 +0000 | [diff] [blame] | 8 | # Normalize the case of a pathname. Dummy in Posix, but string.lower here. |
| 9 | |
| 10 | normcase = string.lower |
| 11 | |
| 12 | |
Guido van Rossum | b5e05e9 | 1991-01-01 18:10:40 +0000 | [diff] [blame] | 13 | # Return true if a path is absolute. |
| 14 | # On the Mac, relative paths begin with a colon, |
| 15 | # but as a special case, paths with no colons at all are also relative. |
| 16 | # Anything else is absolute (the string up to the first colon is the |
| 17 | # volume name). |
| 18 | |
Guido van Rossum | 217a5fa | 1990-12-26 15:40:07 +0000 | [diff] [blame] | 19 | def isabs(s): |
| 20 | return ':' in s and s[0] <> ':' |
| 21 | |
Guido van Rossum | b5e05e9 | 1991-01-01 18:10:40 +0000 | [diff] [blame] | 22 | |
Guido van Rossum | fbe0a8e | 1991-08-16 13:27:45 +0000 | [diff] [blame] | 23 | # Join two pathnames. |
Guido van Rossum | b5e05e9 | 1991-01-01 18:10:40 +0000 | [diff] [blame] | 24 | # The result is equivalent to what the second pathname would refer to |
| 25 | # if the first pathname were the current directory. |
| 26 | |
Guido van Rossum | fbe0a8e | 1991-08-16 13:27:45 +0000 | [diff] [blame] | 27 | def join(s, t): |
Guido van Rossum | 217a5fa | 1990-12-26 15:40:07 +0000 | [diff] [blame] | 28 | if (not s) or isabs(t): return t |
Guido van Rossum | bdfcfcc | 1992-01-01 19:35:13 +0000 | [diff] [blame] | 29 | if t[:1] == ':': t = t[1:] |
Guido van Rossum | 217a5fa | 1990-12-26 15:40:07 +0000 | [diff] [blame] | 30 | if ':' not in s: |
| 31 | s = ':' + s |
| 32 | if s[-1:] <> ':': |
| 33 | s = s + ':' |
| 34 | return s + t |
| 35 | |
Guido van Rossum | b5e05e9 | 1991-01-01 18:10:40 +0000 | [diff] [blame] | 36 | |
| 37 | # Split a pathname in two parts: the directory leading up to the final bit, |
| 38 | # and the basename (the filename, without colons, in that directory). |
Guido van Rossum | fbe0a8e | 1991-08-16 13:27:45 +0000 | [diff] [blame] | 39 | # The result (s, t) is such that join(s, t) yields the original argument. |
Guido van Rossum | b5e05e9 | 1991-01-01 18:10:40 +0000 | [diff] [blame] | 40 | |
| 41 | def split(s): |
| 42 | if ':' not in s: return '', s |
| 43 | colon = 0 |
| 44 | for i in range(len(s)): |
Guido van Rossum | bdfcfcc | 1992-01-01 19:35:13 +0000 | [diff] [blame] | 45 | if s[i] == ':': colon = i+1 |
Guido van Rossum | 7aeb4b9 | 1994-08-23 13:32:20 +0000 | [diff] [blame] | 46 | return s[:colon-1], s[colon:] |
Guido van Rossum | b5e05e9 | 1991-01-01 18:10:40 +0000 | [diff] [blame] | 47 | |
| 48 | |
Guido van Rossum | 0ec3126 | 1995-08-10 18:09:16 +0000 | [diff] [blame] | 49 | # Split a pathname into a drive specification and the rest of the |
| 50 | # path. Useful on DOS/Windows/NT; on the Mac, the drive is always |
| 51 | # empty (don't use the volume name -- it doesn't have the same |
| 52 | # syntactic and semantic oddities as DOS drive letters, such as there |
| 53 | # being a separate current directory per drive). |
| 54 | |
| 55 | def splitdrive(p): |
| 56 | return '', p |
| 57 | |
| 58 | |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 59 | # Short interfaces to split() |
| 60 | |
| 61 | def dirname(s): return split(s)[0] |
| 62 | def basename(s): return split(s)[1] |
| 63 | |
| 64 | |
Guido van Rossum | b5e05e9 | 1991-01-01 18:10:40 +0000 | [diff] [blame] | 65 | # Return true if the pathname refers to an existing directory. |
| 66 | |
Guido van Rossum | 217a5fa | 1990-12-26 15:40:07 +0000 | [diff] [blame] | 67 | def isdir(s): |
| 68 | try: |
| 69 | st = mac.stat(s) |
| 70 | except mac.error: |
| 71 | return 0 |
| 72 | return S_ISDIR(st[ST_MODE]) |
| 73 | |
Guido van Rossum | b5e05e9 | 1991-01-01 18:10:40 +0000 | [diff] [blame] | 74 | |
Guido van Rossum | 7e4b2de | 1995-01-27 02:41:45 +0000 | [diff] [blame] | 75 | # Return true if the pathname refers to a symbolic link. |
| 76 | # (Always false on the Mac, until we understand Aliases.) |
| 77 | |
| 78 | def islink(s): |
| 79 | return 0 |
| 80 | |
| 81 | |
Guido van Rossum | b5e05e9 | 1991-01-01 18:10:40 +0000 | [diff] [blame] | 82 | # Return true if the pathname refers to an existing regular file. |
| 83 | |
Guido van Rossum | 217a5fa | 1990-12-26 15:40:07 +0000 | [diff] [blame] | 84 | def isfile(s): |
| 85 | try: |
| 86 | st = mac.stat(s) |
| 87 | except mac.error: |
| 88 | return 0 |
| 89 | return S_ISREG(st[ST_MODE]) |
| 90 | |
Guido van Rossum | b5e05e9 | 1991-01-01 18:10:40 +0000 | [diff] [blame] | 91 | |
| 92 | # Return true if the pathname refers to an existing file or directory. |
| 93 | |
Guido van Rossum | 217a5fa | 1990-12-26 15:40:07 +0000 | [diff] [blame] | 94 | def exists(s): |
| 95 | try: |
| 96 | st = mac.stat(s) |
| 97 | except mac.error: |
| 98 | return 0 |
| 99 | return 1 |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 100 | |
| 101 | |
Guido van Rossum | 0ec3126 | 1995-08-10 18:09:16 +0000 | [diff] [blame] | 102 | # Normalize a pathname: get rid of '::' sequences by backing up, |
| 103 | # e.g., 'foo:bar::bletch' becomes 'foo:bletch'. |
| 104 | # Raise the exception norm_error below if backing up is impossible, |
| 105 | # e.g., for '::foo'. |
| 106 | # XXX The Unix version doesn't raise an exception but simply |
| 107 | # returns an unnormalized path. Should do so here too. |
| 108 | |
| 109 | norm_error = 'macpath.norm_error: path cannot be normalized' |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 110 | |
| 111 | def normpath(s): |
Guido van Rossum | 0ec3126 | 1995-08-10 18:09:16 +0000 | [diff] [blame] | 112 | import string |
| 113 | if ':' not in s: |
| 114 | return ':' + s |
| 115 | f = string.splitfields(s, ':') |
| 116 | pre = [] |
| 117 | post = [] |
| 118 | if not f[0]: |
| 119 | pre = f[:1] |
| 120 | f = f[1:] |
| 121 | if not f[len(f)-1]: |
| 122 | post = f[-1:] |
| 123 | f = f[:-1] |
| 124 | res = [] |
| 125 | for seg in f: |
| 126 | if seg: |
| 127 | res.append(seg) |
| 128 | else: |
| 129 | if not res: raise norm_error, 'path starts with ::' |
| 130 | del res[len(res)-1] |
| 131 | if not (pre or res): |
| 132 | raise norm_error, 'path starts with volume::' |
| 133 | if pre: res = pre + res |
| 134 | if post: res = res + post |
| 135 | s = res[0] |
| 136 | for seg in res[1:]: |
| 137 | s = s + ':' + seg |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 138 | return s |
Jack Jansen | a68bfe2 | 1995-08-07 14:09:27 +0000 | [diff] [blame] | 139 | |
Guido van Rossum | 0ec3126 | 1995-08-10 18:09:16 +0000 | [diff] [blame] | 140 | |
Jack Jansen | a68bfe2 | 1995-08-07 14:09:27 +0000 | [diff] [blame] | 141 | # Directory tree walk. |
| 142 | # For each directory under top (including top itself), |
| 143 | # func(arg, dirname, filenames) is called, where |
| 144 | # dirname is the name of the directory and filenames is the list |
| 145 | # of files (and subdirectories etc.) in the directory. |
| 146 | # The func may modify the filenames list, to implement a filter, |
| 147 | # or to impose a different order of visiting. |
| 148 | |
| 149 | def walk(top, func, arg): |
| 150 | try: |
| 151 | names = mac.listdir(top) |
| 152 | except mac.error: |
| 153 | return |
| 154 | func(arg, top, names) |
| 155 | for name in names: |
| 156 | name = join(top, name) |
| 157 | if isdir(name): |
| 158 | walk(name, func, arg) |