当前位置: 首页>>代码示例>>Python>>正文


Python LockedFD.rollback方法代码示例

本文整理汇总了Python中git.util.LockedFD.rollback方法的典型用法代码示例。如果您正苦于以下问题:Python LockedFD.rollback方法的具体用法?Python LockedFD.rollback怎么用?Python LockedFD.rollback使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在git.util.LockedFD的用法示例。


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

示例1: _set_cache_

# 需要导入模块: from git.util import LockedFD [as 别名]
# 或者: from git.util.LockedFD import rollback [as 别名]
	def _set_cache_(self, attr):
		if attr == "entries":
			# read the current index
			# try memory map for speed
			lfd = LockedFD(self._file_path)
			try:
				fd = lfd.open(write=False, stream=False)
			except OSError:
				lfd.rollback()
				# in new repositories, there may be no index, which means we are empty
				self.entries = dict()
				return
			# END exception handling

			# Here it comes: on windows in python 2.5, memory maps aren't closed properly 
			# Hence we are in trouble if we try to delete a file that is memory mapped, 
			# which happens during read-tree.
			# In this case, we will just read the memory in directly.
			# Its insanely bad ... I am disappointed !
			allow_mmap = (os.name != 'nt' or sys.version_info[1] > 5)  
			stream = file_contents_ro(fd, stream=True, allow_mmap=allow_mmap)
			
			try:
				self._deserialize(stream)
			finally:
				lfd.rollback()
				# The handles will be closed on desctruction
			# END read from default index on demand
		else:
			super(IndexFile, self)._set_cache_(attr)
开发者ID:binarydud,项目名称:GitPython,代码行数:32,代码来源:base.py

示例2: to_file

# 需要导入模块: from git.util import LockedFD [as 别名]
# 或者: from git.util.LockedFD import rollback [as 别名]
    def to_file(self, filepath):
        """Write the contents of the reflog instance to a file at the given filepath.
        :param filepath: path to file, parent directories are assumed to exist"""
        lfd = LockedFD(filepath)
        assure_directory_exists(filepath, is_file=True)

        fp = lfd.open(write=True, stream=True)
        try:
            self._serialize(fp)
            lfd.commit()
        except Exception:
            # on failure it rolls back automatically, but we make it clear
            lfd.rollback()
            raise
开发者ID:gitpython-developers,项目名称:GitPython,代码行数:16,代码来源:log.py

示例3: _set_cache_

# 需要导入模块: from git.util import LockedFD [as 别名]
# 或者: from git.util.LockedFD import rollback [as 别名]
	def _set_cache_(self, attr):
		if attr == "entries":
			# read the current index
			# try memory map for speed
			lfd = LockedFD(self._file_path)
			try:
				fd = lfd.open(write=False, stream=False)
			except OSError:
				lfd.rollback()
				# in new repositories, there may be no index, which means we are empty
				self.entries = dict()
				return
			# END exception handling

			stream = file_contents_ro(fd, stream=True, allow_mmap=True)
			
			try:
				self._deserialize(stream)
			finally:
				lfd.rollback()
				# The handles will be closed on desctruction
			# END read from default index on demand
		else:
			super(IndexFile, self)._set_cache_(attr)
开发者ID:OpenInkpot-archive,项目名称:iplinux-python-git,代码行数:26,代码来源:base.py

示例4: set_reference

# 需要导入模块: from git.util import LockedFD [as 别名]
# 或者: from git.util.LockedFD import rollback [as 别名]
    def set_reference(self, ref, logmsg=None):
        """Set ourselves to the given ref. It will stay a symbol if the ref is a Reference.
        Otherwise an Object, given as Object instance or refspec, is assumed and if valid,
        will be set which effectively detaches the refererence if it was a purely
        symbolic one.

        :param ref: SymbolicReference instance, Object instance or refspec string
            Only if the ref is a SymbolicRef instance, we will point to it. Everything
            else is dereferenced to obtain the actual object.
        :param logmsg: If set to a string, the message will be used in the reflog.
            Otherwise, a reflog entry is not written for the changed reference.
            The previous commit of the entry will be the commit we point to now.

            See also: log_append()

        :return: self
        :note: This symbolic reference will not be dereferenced. For that, see
            ``set_object(...)``"""
        write_value = None
        obj = None
        if isinstance(ref, SymbolicReference):
            write_value = "ref: %s" % ref.path
        elif isinstance(ref, Object):
            obj = ref
            write_value = ref.hexsha
        elif isinstance(ref, string_types):
            try:
                obj = self.repo.rev_parse(ref + "^{}")    # optionally deref tags
                write_value = obj.hexsha
            except (BadObject, BadName):
                raise ValueError("Could not extract object from %s" % ref)
            # END end try string
        else:
            raise ValueError("Unrecognized Value: %r" % ref)
        # END try commit attribute

        # typecheck
        if obj is not None and self._points_to_commits_only and obj.type != Commit.type:
            raise TypeError("Require commit, got %r" % obj)
        # END verify type

        oldbinsha = None
        if logmsg is not None:
            try:
                oldbinsha = self.commit.binsha
            except ValueError:
                oldbinsha = Commit.NULL_BIN_SHA
            # END handle non-existing
        # END retrieve old hexsha

        fpath = self.abspath
        assure_directory_exists(fpath, is_file=True)

        lfd = LockedFD(fpath)
        fd = lfd.open(write=True, stream=True)
        ok = True
        try:
            fd.write(write_value.encode('ascii') + b'\n')
            lfd.commit()
            ok = True
        finally:
            if not ok:
                lfd.rollback()
        # Adjust the reflog
        if logmsg is not None:
            self.log_append(oldbinsha, logmsg)

        return self
开发者ID:gitpython-developers,项目名称:GitPython,代码行数:70,代码来源:symbolic.py

示例5: test_lockedfd

# 需要导入模块: from git.util import LockedFD [as 别名]
# 或者: from git.util.LockedFD import rollback [as 别名]
    def test_lockedfd(self):
        my_file = tempfile.mktemp()
        orig_data = "hello"
        new_data = "world"
        my_file_fp = open(my_file, "wb")
        my_file_fp.write(orig_data)
        my_file_fp.close()

        try:
            lfd = LockedFD(my_file)
            lockfilepath = lfd._lockfilepath()

            # cannot end before it was started
            self.failUnlessRaises(AssertionError, lfd.rollback)
            self.failUnlessRaises(AssertionError, lfd.commit)

            # open for writing
            assert not os.path.isfile(lockfilepath)
            wfd = lfd.open(write=True)
            assert lfd._fd is wfd
            assert os.path.isfile(lockfilepath)

            # write data and fail
            os.write(wfd, new_data)
            lfd.rollback()
            assert lfd._fd is None
            self._cmp_contents(my_file, orig_data)
            assert not os.path.isfile(lockfilepath)

            # additional call doesnt fail
            lfd.commit()
            lfd.rollback()

            # test reading
            lfd = LockedFD(my_file)
            rfd = lfd.open(write=False)
            assert os.read(rfd, len(orig_data)) == orig_data

            assert os.path.isfile(lockfilepath)
            # deletion rolls back
            del(lfd)
            assert not os.path.isfile(lockfilepath)

            # write data - concurrently
            lfd = LockedFD(my_file)
            olfd = LockedFD(my_file)
            assert not os.path.isfile(lockfilepath)
            wfdstream = lfd.open(write=True, stream=True)       # this time as stream
            assert os.path.isfile(lockfilepath)
            # another one fails
            self.failUnlessRaises(IOError, olfd.open)

            wfdstream.write(new_data)
            lfd.commit()
            assert not os.path.isfile(lockfilepath)
            self._cmp_contents(my_file, new_data)

            # could test automatic _end_writing on destruction
        finally:
            os.remove(my_file)
        # END final cleanup

        # try non-existing file for reading
        lfd = LockedFD(tempfile.mktemp())
        try:
            lfd.open(write=False)
        except OSError:
            assert not os.path.exists(lfd._lockfilepath())
        else:
            self.fail("expected OSError")
开发者ID:JustAnotherChad,项目名称:GitPython,代码行数:72,代码来源:test_util.py


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