Speed up text drawing by caching the parameters
[pysize.git] / pysize / main.py
blob502ed6169deb1c46d3e92cc904e3ae8263f39059
1 # This program is free software; you can redistribute it and/or modify
2 # it under the terms of the GNU General Public License as published by
3 # the Free Software Foundation; either version 2 of the License, or
4 # (at your option) any later version.
6 # This program is distributed in the hope that it will be useful,
7 # but WITHOUT ANY WARRANTY; without even the implied warranty of
8 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 # GNU Library General Public License for more details.
11 # You should have received a copy of the GNU General Public License
12 # along with this program; if not, write to the Free Software
13 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15 # See the COPYING file for license information.
17 # Copyright (c) 2006, 2007 Guillaume Chazarain <guichaz@yahoo.fr>
19 import sys
20 import os
21 import optparse
22 import locale
24 if sys.hexversion < 0x02040000:
25 print >> sys.stderr, 'Your python version is too old (%s)' % \
26 (sys.version.split()[0])
27 print >> sys.stderr, 'You need at least Python 2.4'
28 sys.exit(1)
30 from pysize.ui.ascii import ui_ascii
31 from pysize.ui.curses import ui_curses
32 from pysize.ui.gtk import ui_gtk
33 from pysize.ui.utils import UINotAvailableException
34 from pysize.core.sigquit_traceback import install_sigquit_traceback
35 from pysize.version import VERSION
37 def _ui_auto(options, args):
38 """Automatically choose the best available UI."""
39 for ui_run in ui_gtk.run, ui_curses.run, ui_ascii.run:
40 try:
41 ui_run(options, args)
42 return
43 except UINotAvailableException:
44 pass
46 raise UINotAvailableException
48 UI = {'ascii': ui_ascii.run, 'curses': ui_curses.run,
49 'gtk': ui_gtk.run, 'auto': _ui_auto}
51 def _profile(continuation):
52 prof_file = 'pysize.prof'
53 try:
54 import cProfile
55 import pstats
56 print 'Profiling using cProfile'
57 cProfile.runctx('continuation()', globals(), locals(), prof_file)
58 stats = pstats.Stats(prof_file)
59 except ImportError:
60 import hotshot
61 import hotshot.stats
62 prof = hotshot.Profile(prof_file)
63 print 'Profiling using hotshot'
64 prof.runcall(continuation)
65 prof.close()
66 stats = hotshot.stats.load(prof_file)
67 stats.strip_dirs()
68 stats.sort_stats('time', 'calls')
69 stats.print_stats(40)
70 os.remove(prof_file)
72 def _try_psyco():
73 try:
74 # Try to use psyco if available
75 import psyco
76 psyco.full()
77 except ImportError:
78 pass
80 def main():
81 install_sigquit_traceback()
82 _try_psyco()
83 locale.setlocale(locale.LC_ALL, '')
84 usage = '%s [OPTIONS] [DIRECTORIES...]' % (sys.argv[0])
85 parser = optparse.OptionParser(usage=usage, version='pysize ' + VERSION)
86 parser.add_option('--ui', type='choice', choices=UI.keys(), default='auto',
87 help='choose the ui between: [auto], gtk, curses, ascii')
88 parser.add_option('--xdev', action='store_false', dest='cross_device',
89 default=True,
90 help='ignore directories on other filesystems')
91 parser.add_option('--max-depth', type='int', dest='max_depth', default=6,
92 metavar='DEPTH',
93 help='maximum depth of the displayed tree [6]')
94 parser.add_option('--min-size', type='str', dest='min_size', default='auto',
95 metavar='SIZE',
96 help='minimum size to consider drawing [auto]')
97 parser.add_option('--fast-drawing', action='store_true', dest='fast',
98 default=False, help='faster but simpler drawing with GTK')
99 parser.add_option('--profile', action='store_true', dest='profile',
100 default=False, help=optparse.SUPPRESS_HELP)
101 options, args = parser.parse_args()
103 if options.max_depth < 2:
104 parser.error('maximum depth must be at least 2')
106 args = map(os.path.realpath, args)
107 def continuation():
108 try:
109 UI[options.ui](options, args)
110 except UINotAvailableException:
111 print 'The interface "%s" is not available' % (options.ui)
113 if options.profile:
114 _profile(continuation)
115 else:
116 continuation()