• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python utils.fwrite函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中utils.fwrite函数的典型用法代码示例。如果您正苦于以下问题:Python fwrite函数的具体用法?Python fwrite怎么用?Python fwrite使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了fwrite函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。

示例1: _set_nexus

    def _set_nexus(self, nexus_wwn=None):
        '''
        Sets the nexus initiator WWN. Raises an exception if the nexus is
        already set or if the TPG does not use a nexus.
        '''
        self._check_self()

        if not self.has_feature('nexus'):
            raise RTSLibError("The TPG does not use a nexus.")
        if self._get_nexus():
            raise RTSLibError("The TPG's nexus initiator WWN is already set.")

        # Nexus wwn type should match parent target
        wwn_type = self.parent_target.wwn_type
        if nexus_wwn:
            # Not using fabric-specific version of normalize_wwn, since we
            # want to make sure wwn conforms to regexp, but don't check
            # against target wwn_list, since we're setting the "initiator" here.
            nexus_wwn = normalize_wwn((wwn_type,), nexus_wwn)[0]
        else:
            nexus_wwn = generate_wwn(wwn_type)

        fm = self.parent_target.fabric_module

        fwrite("%s/nexus" % self.path, fm.to_fabric_wwn(nexus_wwn))
开发者ID:josephglanville,项目名称:rtslib-fb,代码行数:25,代码来源:target.py


示例2: _set_discovery_password

 def _set_discovery_password(self, password):
     self._check_self()
     self._assert_feature('discovery_auth')
     path = "%s/discovery_auth/password" % self.path
     if password.strip() == '':
         password = "NULL"
     fwrite(path, "%s" % password)
开发者ID:Datera,项目名称:rtslib,代码行数:7,代码来源:target.py


示例3: _set_write_protect

 def _set_write_protect(self, write_protect):
     self._check_self()
     path = "%s/write_protect" % self.path
     if write_protect:
         fwrite(path, "1")
     else:
         fwrite(path, "0")
开发者ID:Datera,项目名称:rtslib,代码行数:7,代码来源:target.py


示例4: _set_discovery_userid

 def _set_discovery_userid(self, userid):
     self._check_self()
     self._assert_feature('discovery_auth')
     path = "%s/discovery_auth/userid" % self.path
     if userid.strip() == '':
         userid = "NULL"
     fwrite(path, "%s" % userid)
开发者ID:Datera,项目名称:rtslib,代码行数:7,代码来源:target.py


示例5: _config_pr_aptpl

    def _config_pr_aptpl(self):
        """
        LIO actually *writes* pr aptpl info to the filesystem, so we
        need to read it in and squirt it back into configfs when we configure
        the storage object. BLEH.
        """
        aptpl_dir = "/var/target/pr"

        try:
            lines = fread("%s/aptpl_%s" % (aptpl_dir, self.wwn)).split()
        except:
            return

        if not lines[0].startswith("PR_REG_START:"):
            return

        reservations = []
        for line in lines:
            if line.startswith("PR_REG_START:"):
                res_list = []
            elif line.startswith("PR_REG_END:"):
                reservations.append(res_list)
            else:
                res_list.append(line.strip())

        for res in reservations:
            fwrite(self.path + "/pr/res_aptpl_metadata", ",".join(res))
开发者ID:benno16,项目名称:rtslib-fb,代码行数:27,代码来源:tcm.py


示例6: restore_pr_aptpl

    def restore_pr_aptpl(self, src_path=None):
        '''
        Restores StorageObject persistent reservations read from src_path.
        If src_path is omitted, uses the default LIO PR APTPL system
        path if it exists. This only works if the StorageObject is not
        in use currently, else an IO error will occur.

        @param src_path: The PR metadata file path.
        @type src_path: string or None
        '''
        dst_path = "%s/pr/res_aptpl_metadata" % self.path
        if src_path is None:
            src_path = "%s/aptpl_%s" % (self.pr_aptpl_metadata_dir, self.wwn)

        if not os.path.isfile(src_path):
            return

        lines = fread(src_path).split()
        if not lines[0].startswith("PR_REG_START:"):
            return

        for line in lines:
            if line.startswith("PR_REG_START:"):
                pr_lines = []
            elif line.startswith("PR_REG_END:"):
                fwrite(dst_path, ",".join(pr_lines))
            else:
                pr_lines.append(line.strip())
开发者ID:Datera,项目名称:rtslib,代码行数:28,代码来源:tcm.py


示例7: _set_iser

 def _set_iser(self, boolean):
     path = "%s/iser" % self.path
     try:
         fwrite(path, str(int(boolean)))
     except IOError:
         # b/w compat: don't complain if iser entry is missing
         if os.path.isfile(path):
             raise RTSLibError("Cannot change iser")
开发者ID:afamilyman,项目名称:rtslib-fb,代码行数:8,代码来源:target.py


示例8: _set_wwn

 def _set_wwn(self, wwn):
     self._check_self()
     if self.is_configured():
         path = "%s/wwn/vpd_unit_serial" % self.path
         fwrite(path, "%s\n" % wwn)
     else:
         raise RTSLibError("Cannot write a T10 WWN Unit Serial to "
                           + "an unconfigured StorageObject")
开发者ID:benno16,项目名称:rtslib-fb,代码行数:8,代码来源:tcm.py


示例9: _set_tcq_depth

 def _set_tcq_depth(self, depth):
     self._check_self()
     path = "%s/cmdsn_depth" % self.path
     try:
         fwrite(path, "%s" % depth)
     except IOError, msg:
         msg = msg[1]
         raise RTSLibError("Cannot set tcq_depth: %s" % str(msg))
开发者ID:Datera,项目名称:rtslib,代码行数:8,代码来源:target.py


示例10: _set_discovery_enable_auth

 def _set_discovery_enable_auth(self, enable):
     self._check_self()
     self._assert_feature('discovery_auth')
     path = "%s/discovery_auth/enforce_discovery_auth" % self.path
     if int(enable):
         enable = 1
     else:
         enable = 0
     fwrite(path, "%s" % enable)
开发者ID:josephglanville,项目名称:rtslib-fb,代码行数:9,代码来源:fabric.py


示例11: _set_iser_attr

 def _set_iser_attr(self, iser_attr):
     path = "%s/iser" % self.path
     if os.path.isfile(path):
         if iser_attr:
             fwrite(path, "1")
         else:
             fwrite(path, "0")
     else:
         raise RTSLibError("iser network portal attribute does not exist.")
开发者ID:Datera,项目名称:rtslib,代码行数:9,代码来源:target.py


示例12: delete

 def delete(self):
     '''
     Delete the NetworkPortal.
     '''
     path = "%s/iser" % self.path
     if os.path.isfile(path):
         iser_attr = fread(path).strip()
         if iser_attr == "1":
             fwrite(path, "0")
     super(NetworkPortal, self).delete()
开发者ID:Datera,项目名称:rtslib,代码行数:10,代码来源:target.py


示例13: _set_enable

 def _set_enable(self, boolean):
     '''
     Enables or disables the TPG. Raises an error if trying to disable a TPG
     without an enable attribute (but enabling works in that case).
     '''
     self._check_self()
     path = "%s/enable" % self.path
     if os.path.isfile(path) and (boolean != self._get_enable()):
         try:
             fwrite(path, str(int(boolean)))
         except IOError, e:
             raise RTSLibError("Cannot change enable state: %s" % e)
开发者ID:Datera,项目名称:rtslib,代码行数:12,代码来源:target.py


示例14: _set_enable

 def _set_enable(self, boolean):
     """
     Enables or disables the TPG. If the TPG doesn't support the enable
     attribute, do nothing.
     """
     self._check_self()
     path = "%s/enable" % self.path
     if os.path.isfile(path) and (boolean != self._get_enable()):
         try:
             fwrite(path, str(int(boolean)))
         except IOError as e:
             raise RTSLibError("Cannot change enable state: %s" % e)
开发者ID:afamilyman,项目名称:rtslib-fb,代码行数:12,代码来源:target.py


示例15: _set_enable

 def _set_enable(self, boolean):
     '''
     Enables or disables the TPG. Raises an error if trying to disable a TPG
     without en enable attribute (but enabling works in that case).
     '''
     self._check_self()
     path = "%s/enable" % self.path
     if os.path.isfile(path):
         if boolean and not self._get_enable():
             fwrite(path, "1")
         elif not boolean and self._get_enable():
             fwrite(path, "0")
     elif not boolean:
         raise RTSLibError("TPG cannot be disabled.")
开发者ID:Thingee,项目名称:rtslib,代码行数:14,代码来源:target.py


示例16: _set_nexus

 def _set_nexus(self, nexus_wwn=None):
     '''
     Sets the nexus initiator WWN. Raises an exception if the nexus is
     already set or if the TPG does not use a nexus.
     '''
     self._check_self()
     if not self.has_feature('nexus'):
         raise RTSLibError("The TPG does not use a nexus.")
     elif self._get_nexus():
         raise RTSLibError("The TPG's nexus initiator WWN is already set.")
     else:
         if nexus_wwn is None:
             nexus_wwn = generate_wwn(self.parent_target.wwn_type)
         elif not is_valid_wwn(self.parent_target.wwn_type, nexus_wwn):
             raise RTSLibError("WWN '%s' is not of type '%s'."
                               % (nexus_wwn, self.parent_target.wwn_type))
     fwrite("%s/nexus" % self.path, nexus_wwn)
开发者ID:Datera,项目名称:rtslib,代码行数:17,代码来源:target.py


示例17: set_parameter

 def set_parameter(self, parameter, value):
     '''
     Sets the value of a named RFC-3720 parameter.
     The parameter must exist in configFS.
     @param parameter: The RFC-3720 parameter's name. It is case-sensitive.
     @type parameter: string
     @param value: The parameter's value.
     @type value: string
     '''
     self._check_self()
     path = "%s/param/%s" % (self.path, str(parameter))
     if not os.path.isfile(path):
         raise RTSLibError("Cannot find parameter: %s" % parameter)
     else:
         try:
             fwrite(path, "%s\n" % str(value))
         except Exception as e:
             raise RTSLibError("Cannot set parameter %s: %s" % (parameter, e))
开发者ID:balagopalraj,项目名称:clearlinux,代码行数:18,代码来源:node.py


示例18: set_attribute

 def set_attribute(self, attribute, value):
     '''
     Sets the value of a named attribute.
     The attribute must exist in configFS.
     @param attribute: The attribute's name. It is case-sensitive.
     @type attribute: string
     @param value: The attribute's value.
     @type value: string
     '''
     self._check_self()
     path = "%s/attrib/%s" % (self.path, str(attribute))
     if not os.path.isfile(path):
         raise RTSLibError("Cannot find attribute: %s."
                           % str(attribute))
     else:
         try:
             fwrite(path, "%s" % str(value))
         except Exception as e:
             raise RTSLibError("Cannot set attribute %s: %s" % (attribute, e))
开发者ID:afamilyman,项目名称:rtslib-fb,代码行数:19,代码来源:node.py


示例19: set_auth_attr

 def set_auth_attr(self, auth_attr, value):
     '''
     Sets the value of a named auth_attr.
     The auth_attr must exist in configFS.
     @param auth_attr: The auth_attr's name. It is case-sensitive.
     @type auth_attr: string
     @param value: The auth_attr's value.
     @type value: string
     '''
     self._check_self()
     path = "%s/auth/%s" % (self.path, str(auth_attr))
     if not os.path.isfile(path):
         raise RTSLibError("Cannot find auth attribute: %s."
                           % str(auth_attr))
     else:
         try:
             fwrite(path, "%s" % str(value))
         except IOError, msg:
             msg = msg[1]
             raise RTSLibError("Cannot set auth attribute %s: %s"
                               % (str(auth_attr), str(msg)))
开发者ID:Datera,项目名称:rtslib,代码行数:21,代码来源:node.py


示例20: delete

    def delete(self):
        '''
        Recursively deletes a Nexus object.
        This will delete all attached LUN, and then the Nexus itself.
        '''
        self._check_self()
        for lun in self.luns:
            lun.delete()

        # TODO: check that ALUA MD removal works while removing Nexus
        if os.path.isdir(self.alua_metadata_path):
            shutil.rmtree(self.alua_metadata_path)

        nexus_path = self._path + "/nexus"
        if os.path.isfile(nexus_path):
            try:
                fwrite(nexus_path, "NULL")
            except IOError, msg:
                raise RTSLibError("Cannot delete Nexus initiator "
                                  + "(>=4.0 style, %s): %s."
                                  % (nexus_path, msg))
开发者ID:Thingee,项目名称:rtslib,代码行数:21,代码来源:loop.py



注:本文中的utils.fwrite函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python utils.generate_native_node_workflows函数代码示例发布时间:2022-05-26
下一篇:
Python utils.from_json函数代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap