macfreeze.py :  » Language-Interface » ChinesePython » chinesepython2.1.3-0.4 » Mac » Tools » macfreeze » 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 » Tools » macfreeze » macfreeze.py
"""macfreeze - Main program and GUI

macfreeze allows you to turn Python scripts into fully self-contained
Mac applications, by including all the Python and C code needed in a single
executable. Like unix/windows freeze it can produce a config.c allowing you
to build the application with a development environment (CodeWarrior, to be
precise), but unlike the standard freeze it is also possible to create frozen
applications without a development environment, by glueing all the
shared libraries and extension modules needed together in a single
executable, using some Code Fragment Manager tricks."""

import macfs
import sys
import EasyDialogs
import string

import macfreezegui
import macmodulefinder

#
# Here are the macfreeze directives, used when freezing macfreeze itself
# (see directives.py for an explanation)
#
# macfreeze: path ::::Tools:freeze
# macfreeze: exclude win32api
#

def main():
  if len(sys.argv) < 2:
    gentype, program, output, debug = macfreezegui.dialog()
  elif len(sys.argv) == 2:
    gentype, program, output, debug = macfreezegui.dialog(sys.argv[1])
  else:
    EasyDialog.Message(
      "Please pass a single script. Additional modules can be specified with directives")
    sys.exit(0)
  mustwait = process(gentype, program, output, debug=debug)
  if mustwait:
    sys.exit(1)

def process(gentype, program, output, modules=None, module_files=None, debug=0, with_ifdef=0):
  if modules is None:
    modules = []
  if module_files is None:
    module_files = []
  module_dict, missing = macmodulefinder.process(program, modules, module_files, debug)
  if missing:
    missing.sort()
    print '** Missing modules:', string.join(missing, ' ')
    sys.exit(1)
  #
  # And generate
  #
  if gentype == 'info':
    import macgen_info
    macgen_info.generate(output, module_dict)
    return 1    # So the user can inspect it
  elif gentype == 'source':
    import macgen_src
    warnings = macgen_src.generate(output, module_dict, debug, with_ifdef)
    return warnings
  elif gentype == 'resource':
    import macgen_rsrc
    macgen_rsrc.generate(output, module_dict, debug)
    warnings = macgen_rsrc.warnings(module_dict)
    return warnings
  elif gentype == 'applet':
    import macgen_bin
    architecture = 'fat' # user should choose
    macgen_bin.generate(program, output, module_dict, architecture, debug)
  else:
    raise 'unknown gentype', gentype

if __name__ == '__main__':
  main()
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.