macostools.py 3.94 KB
Newer Older
Jack Jansen's avatar
Jack Jansen committed
1 2 3 4 5 6
"""macostools - Various utility functions for MacOS.

mkalias(src, dst) - Create a finder alias 'dst' pointing to 'src'
copy(src, dst) - Full copy of 'src' to 'dst'
"""

7
from warnings import warnpy3k
Benjamin Peterson's avatar
Benjamin Peterson committed
8
warnpy3k("In 3.x, the macostools module is removed.", stacklevel=2)
9

10
from Carbon import Res
11
from Carbon import File, Files
Jack Jansen's avatar
Jack Jansen committed
12
import os
13 14
import MacOS
try:
15
    openrf = MacOS.openrf
16
except AttributeError:
Georg Brandl's avatar
Georg Brandl committed
17
    # Backward compatibility
18
    openrf = open
Jack Jansen's avatar
Jack Jansen committed
19 20 21

Error = 'macostools.Error'

22 23 24 25
BUFSIZ=0x80000      # Copy in 0.5Mb chunks

COPY_FLAGS = (Files.kIsStationary|Files.kNameLocked|Files.kHasBundle|
              Files.kIsInvisible|Files.kIsAlias)
Jack Jansen's avatar
Jack Jansen committed
26 27 28 29 30

#
# Not guaranteed to be correct or stay correct (Apple doesn't tell you
# how to do this), but it seems to work.
#
31
def mkalias(src, dst, relative=None):
32 33 34 35 36 37 38 39 40 41 42 43 44
    """Create a finder alias"""
    srcfsr = File.FSRef(src)
    # The next line will fail under unix-Python if the destination
    # doesn't exist yet. We should change this code to be fsref-based.
    dstdir, dstname = os.path.split(dst)
    if not dstdir: dstdir = os.curdir
    dstdirfsr = File.FSRef(dstdir)
    if relative:
        relativefsr = File.FSRef(relative)
        # ik mag er geen None in stoppen :-(
        alias = File.FSNewAlias(relativefsr, srcfsr)
    else:
        alias = srcfsr.FSNewAliasMinimal()
45 46

    dstfsr, dstfss = Res.FSCreateResourceFile(dstdirfsr, unicode(dstname),
47 48 49 50 51
        File.FSGetResourceForkName())
    h = Res.FSOpenResourceFile(dstfsr, File.FSGetResourceForkName(), 3)
    resource = Res.Resource(alias.data)
    resource.AddResource('alis', 0, '')
    Res.CloseResFile(h)
52

53 54 55
    dstfinfo = dstfss.FSpGetFInfo()
    dstfinfo.Flags = dstfinfo.Flags|0x8000    # Alias flag
    dstfss.FSpSetFInfo(dstfinfo)
56

57
def mkdirs(dst):
58 59 60 61 62 63 64
    """Make directories leading to 'dst' if they don't exist yet"""
    if dst == '' or os.path.exists(dst):
        return
    head, tail = os.path.split(dst)
    if os.sep == ':' and not ':' in head:
        head = head + ':'
    mkdirs(head)
Ronald Oussoren's avatar
Ronald Oussoren committed
65 66 67 68 69 70 71 72

    try:
        os.mkdir(dst, 0777)
    except OSError, e:
        # be happy if someone already created the path
        if e.errno != errno.EEXIST:
            raise

73

74
def touched(dst):
75
    """Tell the finder a file has changed. No-op on MacOSX."""
Jack Jansen's avatar
Jack Jansen committed
76
    import warnings
77 78
    warnings.warn("macostools.touched() has been deprecated",
                    DeprecationWarning, 2)
79

80
def touched_ae(dst):
81 82 83 84 85 86 87
    """Tell the finder a file has changed"""
    pardir = os.path.split(dst)[0]
    if not pardir:
        pardir = os.curdir
    import Finder
    f = Finder.Finder()
    f.update(File.FSRef(pardir))
88

89
def copy(src, dst, createpath=0, copydates=1, forcetype=None):
90 91 92 93 94
    """Copy a file, including finder info, resource fork, etc"""
    src = File.pathname(src)
    dst = File.pathname(dst)
    if createpath:
        mkdirs(os.path.split(dst)[0])
95

96 97 98 99 100 101 102 103
    ifp = open(src, 'rb')
    ofp = open(dst, 'wb')
    d = ifp.read(BUFSIZ)
    while d:
        ofp.write(d)
        d = ifp.read(BUFSIZ)
    ifp.close()
    ofp.close()
104

105 106 107 108 109 110 111 112
    ifp = openrf(src, '*rb')
    ofp = openrf(dst, '*wb')
    d = ifp.read(BUFSIZ)
    while d:
        ofp.write(d)
        d = ifp.read(BUFSIZ)
    ifp.close()
    ofp.close()
113

114 115 116 117 118
    srcfss = File.FSSpec(src)
    dstfss = File.FSSpec(dst)
    sf = srcfss.FSpGetFInfo()
    df = dstfss.FSpGetFInfo()
    df.Creator, df.Type = sf.Creator, sf.Type
119
    if forcetype is not None:
120 121 122 123 124 125 126 127
        df.Type = forcetype
    df.Flags = (sf.Flags & COPY_FLAGS)
    dstfss.FSpSetFInfo(df)
    if copydates:
        srcfsr = File.FSRef(src)
        dstfsr = File.FSRef(dst)
        catinfo, _, _, _ = srcfsr.FSGetCatalogInfo(Files.kFSCatInfoAllDates)
        dstfsr.FSSetCatalogInfo(Files.kFSCatInfoAllDates, catinfo)
128

129
def copytree(src, dst, copydates=1):
130 131 132 133 134 135 136 137
    """Copy a complete file tree to a new destination"""
    if os.path.isdir(src):
        mkdirs(dst)
        files = os.listdir(src)
        for f in files:
            copytree(os.path.join(src, f), os.path.join(dst, f), copydates)
    else:
        copy(src, dst, 1, copydates)