macostools.py :  » Language-Interface » ChinesePython » chinesepython2.1.3-0.4 » Mac » Lib » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Language Interface » ChinesePython 
ChinesePython » chinesepython2.1.3 0.4 » Mac » Lib » macostools.py
"""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'
"""

import macfs
import Res
import os
from MACFS import *
import MacOS
import time
try:
  openrf = MacOS.openrf
except AttributeError:
  # Backward compatability
  openrf = open

Error = 'macostools.Error'

FSSpecType = type(macfs.FSSpec(':'))

BUFSIZ=0x80000    # Copy in 0.5Mb chunks

#
# Not guaranteed to be correct or stay correct (Apple doesn't tell you
# how to do this), but it seems to work.
#
def mkalias(src, dst, relative=None):
  """Create a finder alias"""
  srcfss = macfs.FSSpec(src)
  dstfss = macfs.FSSpec(dst)
  if relative:
    relativefss = macfs.FSSpec(relative)
    # ik mag er geen None in stoppen :-(
    alias = srcfss.NewAlias(relativefss)
  else:
    alias = srcfss.NewAlias()
  srcfinfo = srcfss.GetFInfo()

  Res.FSpCreateResFile(dstfss, srcfinfo.Creator, srcfinfo.Type, -1)
  h = Res.FSpOpenResFile(dstfss, 3)
  resource = Res.Resource(alias.data)
  resource.AddResource('alis', 0, '')
  Res.CloseResFile(h)
  
  dstfinfo = dstfss.GetFInfo()
  dstfinfo.Flags = dstfinfo.Flags|0x8000    # Alias flag
  dstfss.SetFInfo(dstfinfo)
  
def mkdirs(dst):
  """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 not ':' in head:
    head = head + ':'
  mkdirs(head)
  os.mkdir(dst, 0777)
  
def touched(dst):
  """Tell the finder a file has changed"""
  file_fss = macfs.FSSpec(dst)
  vRefNum, dirID, name = file_fss.as_tuple()
  dir_fss = macfs.FSSpec((vRefNum, dirID, ''))
  crdate, moddate, bkdate = dir_fss.GetDates()
  now = time.time()
  if now == moddate:
    now = now + 1
  dir_fss.SetDates(crdate, now, bkdate)
  
def touched_ae(dst):
  """Tell the finder a file has changed"""
  import Finder
  f = Finder.Finder()
  file_fss = macfs.FSSpec(dst)
  vRefNum, dirID, name = file_fss.as_tuple()
  dir_fss = macfs.FSSpec((vRefNum, dirID, ''))
  f.update(dir_fss)
  
def copy(src, dst, createpath=0, copydates=1, forcetype=None):
  """Copy a file, including finder info, resource fork, etc"""
  if createpath:
    mkdirs(os.path.split(dst)[0])
  srcfss = macfs.FSSpec(src)
  dstfss = macfs.FSSpec(dst)
  
  ifp = open(srcfss.as_pathname(), 'rb')
  ofp = open(dstfss.as_pathname(), 'wb')
  d = ifp.read(BUFSIZ)
  while d:
    ofp.write(d)
    d = ifp.read(BUFSIZ)
  ifp.close()
  ofp.close()
  
  ifp = openrf(srcfss.as_pathname(), '*rb')
  ofp = openrf(dstfss.as_pathname(), '*wb')
  d = ifp.read(BUFSIZ)
  while d:
    ofp.write(d)
    d = ifp.read(BUFSIZ)
  ifp.close()
  ofp.close()
  
  sf = srcfss.GetFInfo()
  df = dstfss.GetFInfo()
  df.Creator, df.Type = sf.Creator, sf.Type
  if forcetype != None:
    df.Type = forcetype
  df.Flags = (sf.Flags & (kIsStationary|kNameLocked|kHasBundle|kIsInvisible|kIsAlias))
  dstfss.SetFInfo(df)
  if copydates:
    crdate, mddate, bkdate = srcfss.GetDates()
    dstfss.SetDates(crdate, mddate, bkdate)
  touched(dstfss)
  
def copytree(src, dst, copydates=1):
  """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)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.