我有一个基于 GUI 的项目。我想把它放到代码本身和 GUI 部分。
这是我的代码
Main.py
::
class NewerVersionWarning(Exception):
def __init__(self, newest, current=__version__):
self.newest = newest
self.current = current
def __str__(self):
return "Version v%s is the latest version. You have v%s." % (self.newest, self.current)
class NoResultsException(Exception):
pass
# ... and so on
def sanity_check():
"Sanity Check for script."
try:
newest_version = WebParser.WebServices.get_newestversion()
if newest_version > float(__version__):
raise NewerVersionWarning(newest_version)
except IOError as e:
log.error("Could not check for the newest version (%s)" % str(e))
if utils.get_free_space(config.temp_dir) < 200*1024**2: # 200 MB
drive = os.path.splitdrive(config.temp_dir)[0]
raise NoSpaceWarning(drive, utils.get_free_space(config.temp_dir))
# ... and so on
现在,在 GUI 部分,我只是在 try-except 块中调用该函数:
try:
Main.sanity_check()
except NoSpaceWarning, e:
s = tr("There are less than 200MB available in drive %s (%.2fMB left). Application may not function properly.") % (e.drive, e.space/1024.0**2)
log.warning(s)
QtGui.QMessageBox.warning(self, tr("Warning"), s, QtGui.QMessageBox.Ok)
except NewerVersionWarning, e:
log.warning("A new version of iQuality is available (%s)." % e.newest)
QtGui.QMessageBox.information(self, tr("Information"), tr("A new version of iQuality is available (%s). Updates includes performance enhancements, bug fixes, new features and fixed parsers.<br /><br />You can grab it from the bottom box of the main window, or from the <a href=\"%s\">iQuality website</a>.") % (e.newest, config.website), QtGui.QMessageBox.Ok)
在当前设计中,检查在第一个警告/异常时停止。当然,异常应该停止代码,但警告应该只向用户显示一条消息,然后继续。我怎么能这样设计呢?