本文整理汇总了Python中karesansui.lib.checker.Checker.check_directory方法的典型用法代码示例。如果您正苦于以下问题:Python Checker.check_directory方法的具体用法?Python Checker.check_directory怎么用?Python Checker.check_directory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类karesansui.lib.checker.Checker
的用法示例。
在下文中一共展示了Checker.check_directory方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: validates_pool_dir
# 需要导入模块: from karesansui.lib.checker import Checker [as 别名]
# 或者: from karesansui.lib.checker.Checker import check_directory [as 别名]
def validates_pool_dir(obj, now_pools):
checker = Checker()
check = True
_ = obj._
checker.errors = []
if is_param(obj.input, "pool_name"):
check = (
checker.check_string(_("Storage Pool Name"), obj.input.pool_name, CHECK_EMPTY | CHECK_ONLYSPACE, None)
and check
)
if obj.input.pool_name in now_pools:
check = False
checker.add_error(_('%s "%s" already exists.') % (_("Storage Pool Name"), obj.input.pool_name))
else:
check = False
checker.add_error(_('"%s" is required.') % _("Storage Pool Name"))
if is_param(obj.input, "pool_target_path"):
check = (
checker.check_directory(
_("Directory Path"), obj.input.pool_target_path, CHECK_EMPTY | CHECK_STARTROOT | CHECK_NOTROOT
)
and check
)
try:
kvc = KaresansuiVirtConnection()
for pool_name in now_pools:
target_path = kvc.get_storage_pool_targetpath(pool_name)
if obj.input.pool_target_path == target_path:
check = False
checker.add_error(
_('Storagepool target path "%s" is already being used.') % (obj.input.pool_target_path)
)
finally:
kvc.close()
else:
check = False
checker.add_error(_('"%s" is required.') % _("Directory Path"))
obj.view.alert = checker.errors
return check