本文整理匯總了Python中pyanaconda.ui.tui.tuiobject.TUIObject.setup方法的典型用法代碼示例。如果您正苦於以下問題:Python TUIObject.setup方法的具體用法?Python TUIObject.setup怎麽用?Python TUIObject.setup使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pyanaconda.ui.tui.tuiobject.TUIObject
的用法示例。
在下文中一共展示了TUIObject.setup方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: setup
# 需要導入模塊: from pyanaconda.ui.tui.tuiobject import TUIObject [as 別名]
# 或者: from pyanaconda.ui.tui.tuiobject.TUIObject import setup [as 別名]
def setup(self, args="anaconda"):
TUIObject.setup(self, args)
environment = args
cats_and_spokes = self._collectCategoriesAndSpokes()
categories = cats_and_spokes.keys()
for c in sorted(categories, key=lambda i: i.title):
hub_spokes = []
for spoke_class in cats_and_spokes[c]:
# Do the checks for the spoke and create the spoke
if spoke_class.should_run(environment, self.data):
spoke = spoke_class(self.data, self.storage, self.payload, self.instclass)
if spoke.showable:
spoke.initialize()
else:
log.warning("Spoke %s initialization failure!", spoke.__class__.__name__)
del spoke
continue
if spoke.indirect:
continue
hub_spokes.append(spoke)
# sort created spokes and add them to result structures
for spoke in sorted(hub_spokes, key=lambda s: s.title):
self._spoke_count += 1
self._spokes_map.append(spoke)
self._spokes[spoke.__class__.__name__] = spoke
if self._spoke_count:
# initialization of all expected spokes has been started, so notify the controller
hub_controller = lifecycle.get_controller_by_name(self.__class__.__name__)
if hub_controller:
hub_controller.all_modules_added()
else:
log.error("Initialization controller for hub %s expected but missing.", self.__class__.__name__)
# only schedule the hub if it has some spokes
return self._spoke_count != 0