summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1997-05-13 15:42:26 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1997-05-13 15:42:26 (GMT)
commitaf647ddc5282e9642fff482c6709697d88f3f897 (patch)
tree65640b8c78b0825dd72a304ff45e8e8227671743 /Mac
parent450ae9f352d0ce77726b5b95ff31a80b0d75a457 (diff)
downloadcpython-af647ddc5282e9642fff482c6709697d88f3f897.zip
cpython-af647ddc5282e9642fff482c6709697d88f3f897.tar.gz
cpython-af647ddc5282e9642fff482c6709697d88f3f897.tar.bz2
Use ProgressBar to show progress in stead of print
Diffstat (limited to 'Mac')
-rw-r--r--Mac/scripts/BuildApplet.py44
1 files changed, 29 insertions, 15 deletions
diff --git a/Mac/scripts/BuildApplet.py b/Mac/scripts/BuildApplet.py
index a7e35f3..b51eef1 100644
--- a/Mac/scripts/BuildApplet.py
+++ b/Mac/scripts/BuildApplet.py
@@ -20,6 +20,7 @@ import MACFS
import MacOS
from Res import *
import macostools
+import EasyDialogs
# .pyc file (and 'PYC ' resource magic number)
MAGIC = imp.get_magic()
@@ -55,13 +56,13 @@ def findtemplate():
return template
def main():
+ global DEBUG
+ DEBUG=1
# Find the template
# (there's no point in proceeding if we can't find it)
template = findtemplate()
- if DEBUG:
- print 'Using template', template
# Ask for source text if not specified in sys.argv[1:]
@@ -87,7 +88,10 @@ def main():
def process(template, filename, output):
if DEBUG:
- print "Processing", `filename`, "..."
+ progress = EasyDialogs.ProgressBar("Processing %s..."%os.path.split(filename)[1], 120)
+ progress.label("Compiling...")
+ else:
+ progress = None
# Read the source and compile it
# (there's no point overwriting the destination if it has a syntax error)
@@ -127,6 +131,9 @@ def process(template, filename, output):
dest_fss = macfs.FSSpec(destname)
# Copy data (not resources, yet) from the template
+ if DEBUG:
+ progress.label("Copy data fork...")
+ progress.set(10)
tmpl = open(template, "rb")
dest = open(destname, "wb")
@@ -138,11 +145,12 @@ def process(template, filename, output):
# Open the output resource fork
+ if DEBUG:
+ progress.label("Copy resources...")
+ progress.set(20)
try:
output = FSpOpenResFile(dest_fss, WRITE)
except MacOS.Error:
- if DEBUG:
- print "Creating resource fork..."
CreateResFile(destname)
output = FSpOpenResFile(dest_fss, WRITE)
@@ -152,8 +160,10 @@ def process(template, filename, output):
input = FSpOpenResFile(rsrcname, READ)
except (MacOS.Error, ValueError):
pass
+ if DEBUG:
+ progress.inc(50)
else:
- typesfound, ownertype = copyres(input, output, [], 0)
+ typesfound, ownertype = copyres(input, output, [], 0, progress)
CloseResFile(input)
# Check which resource-types we should not copy from the template
@@ -166,7 +176,7 @@ def process(template, filename, output):
# Copy the resources from the template
input = FSpOpenResFile(template_fss, READ)
- dummy, tmplowner = copyres(input, output, skiptypes, skipowner)
+ dummy, tmplowner = copyres(input, output, skiptypes, skipowner, progress)
if ownertype == None:
ownertype = tmplowner
CloseResFile(input)
@@ -194,6 +204,9 @@ def process(template, filename, output):
pass
# Create the raw data for the resource from the code object
+ if DEBUG:
+ progress.label("Write PYC resource...")
+ progress.set(120)
data = marshal.dumps(code)
del code
@@ -215,24 +228,26 @@ def process(template, filename, output):
macostools.touched(dest_fss)
if DEBUG:
- print "Applet created:", destname
+ progress.label("Done.")
# Copy resources between two resource file descriptors.
# skip a resource named '__main__' or (if skipowner is set) 'Owner resource'.
# Also skip resources with a type listed in skiptypes.
#
-def copyres(input, output, skiptypes, skipowner):
+def copyres(input, output, skiptypes, skipowner, progress=None):
ctor = None
alltypes = []
UseResFile(input)
ntypes = Count1Types()
+ progress_type_inc = 50/ntypes
for itype in range(1, 1+ntypes):
type = Get1IndType(itype)
if type in skiptypes:
continue
alltypes.append(type)
nresources = Count1Resources(type)
+ progress_cur_inc = progress_type_inc/nresources
for ires in range(1, 1+nresources):
res = Get1IndResource(type, ires)
id, type, name = res.GetResInfo()
@@ -247,8 +262,9 @@ def copyres(input, output, skiptypes, skipowner):
ctor = type
size = res.size
attrs = res.GetResAttrs()
- if DEBUG:
- print id, type, name, size, hex(attrs)
+ if DEBUG and progress:
+ progress.label("Copy %s %d %s"%(type, id, name))
+ progress.inc(progress_cur_inc)
res.LoadResource()
res.DetachResource()
UseResFile(output)
@@ -257,14 +273,12 @@ def copyres(input, output, skiptypes, skipowner):
except MacOS.Error:
res2 = None
if res2:
- if DEBUG:
- print "Overwriting..."
+ if DEBUG and progress:
+ progress.label("Overwrite %s %d %s"%(type, id, name))
res2.RemoveResource()
res.AddResource(type, id, name)
res.WriteResource()
attrs = attrs | res.GetResAttrs()
- if DEBUG:
- print "New attrs =", hex(attrs)
res.SetResAttrs(attrs)
UseResFile(input)
return alltypes, ctor