##// END OF EJS Templates
amend: prevent '\n' in the note string...
amend: prevent '\n' in the note string This comes from the evolve function. I'm not sure why this check was missing in core, since it was present when the length check was added to evolve. I didn't flag this as BC because 530b7361e3a9 mentioned this argument wasn't added to the release notes due to no display capability, and that hasn't changed AFAIK. Differential Revision: https://phab.mercurial-scm.org/D6854

File last commit:

r42818:b53633d3 default
r43203:7e999704 default
Show More
state.py
220 lines | 8.3 KiB | text/x-python | PythonLexer
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115 # state.py - writing and reading state files in Mercurial
#
# Copyright 2018 Pulkit Goyal <pulkitmgoyal@gmail.com>
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
"""
This file contains class to wrap the state for commands and other
related logic.
All the data related to the command state is stored as dictionary in the object.
The class has methods using which the data can be stored to disk in a file under
.hg/ directory.
Augie Fackler
state: update comment about use of CBOR...
r41171 We store the data on disk in cbor, for which we use the CBOR format to encode
the data.
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115 """
from __future__ import absolute_import
Taapas Agrawal
states: moved cmdutil.unfinishedstates to state.py...
r42729 from .i18n import _
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115 from . import (
Pulkit Goyal
state: write the version number in plain text on top of state files...
r38118 error,
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115 util,
)
Gregory Szorc
state: use our CBOR module...
r39482 from .utils import (
cborutil,
)
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115
class cmdstate(object):
"""a wrapper class to store the state of commands like `rebase`, `graft`,
`histedit`, `shelve` etc. Extensions can also use this to write state files.
All the data for the state is stored in the form of key-value pairs in a
dictionary.
The class object can write all the data to a file in .hg/ directory and
can populate the object data reading that file.
Uses cbor to serialize and deserialize data while writing and reading from
disk.
"""
Pulkit Goyal
state: removing remaining instances of opts class variable...
r38162 def __init__(self, repo, fname):
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115 """ repo is the repo object
fname is the file name in which data should be stored in .hg directory
"""
self._repo = repo
self.fname = fname
Pulkit Goyal
state: don't have a dict like interface for cmdstate class...
r38116 def read(self):
"""read the existing state file and return a dict of data stored"""
return self._read()
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115
Pulkit Goyal
state: write the version number in plain text on top of state files...
r38118 def save(self, version, data):
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115 """write all the state data stored to .hg/<filename> file
we use third-party library cbor to serialize data to write in the file.
"""
Pulkit Goyal
state: write the version number in plain text on top of state files...
r38118 if not isinstance(version, int):
raise error.ProgrammingError("version of state file should be"
" an integer")
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115 with self._repo.vfs(self.fname, 'wb', atomictemp=True) as fp:
Pulkit Goyal
state: fix usage of an unassigned variable...
r38140 fp.write('%d\n' % version)
Gregory Szorc
state: use our CBOR module...
r39482 for chunk in cborutil.streamencode(data):
fp.write(chunk)
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115
def _read(self):
"""reads the state file and returns a dictionary which contain
data in the same format as it was before storing"""
with self._repo.vfs(self.fname, 'rb') as fp:
Pulkit Goyal
state: write the version number in plain text on top of state files...
r38118 try:
Pulkit Goyal
state: temporary silence pyflakes warning by removing variable assignment...
r38141 int(fp.readline())
Pulkit Goyal
state: write the version number in plain text on top of state files...
r38118 except ValueError:
Pulkit Goyal
state: raise CorruptedState error isntead of ProgrammingError...
r38148 raise error.CorruptedState("unknown version of state file"
" found")
Gregory Szorc
state: use our CBOR module...
r39482
return cborutil.decodeall(fp.read())[0]
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115
def delete(self):
"""drop the state file if exists"""
util.unlinkpath(self._repo.vfs.join(self.fname), ignoremissing=True)
def exists(self):
"""check whether the state file exists or not"""
return self._repo.vfs.exists(self.fname)
Taapas Agrawal
states: moved cmdutil.unfinishedstates to state.py...
r42729
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 class _statecheck(object):
"""a utility class that deals with multistep operations like graft,
histedit, bisect, update etc and check whether such commands
are in an unfinished conditition or not and return appropriate message
and hint.
It also has the ability to register and determine the states of any new
multistep operation or multistep command extension.
"""
Taapas Agrawal
statecheck: shifted defaults to addunfinished()...
r42734 def __init__(self, opname, fname, clearable, allowcommit, reportonly,
Taapas Agrawal
abort: added logic for of hg abort...
r42784 continueflag, stopflag, cmdmsg, cmdhint, statushint,
Taapas Agrawal
continue: added logic for hg continue...
r42831 abortfunc, continuefunc):
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 self._opname = opname
self._fname = fname
self._clearable = clearable
self._allowcommit = allowcommit
Taapas Agrawal
statecheck: shifted defaults to addunfinished()...
r42734 self._reportonly = reportonly
self._continueflag = continueflag
self._stopflag = stopflag
self._cmdmsg = cmdmsg
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 self._cmdhint = cmdhint
Taapas Agrawal
statecheck: added support for STATES...
r42732 self._statushint = statushint
Taapas Agrawal
abort: added logic for of hg abort...
r42784 self.abortfunc = abortfunc
Taapas Agrawal
continue: added logic for hg continue...
r42831 self.continuefunc = continuefunc
Taapas Agrawal
statecheck: added support for STATES...
r42732
def statusmsg(self):
"""returns the hint message corresponding to the command for
hg status --verbose
"""
if not self._statushint:
hint = (_('To continue: hg %s --continue\n'
'To abort: hg %s --abort') % (self._opname,
self._opname))
if self._stopflag:
hint = hint + (_('\nTo stop: hg %s --stop') %
(self._opname))
return hint
return self._statushint
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730
def hint(self):
Taapas Agrawal
statecheck: added support for STATES...
r42732 """returns the hint message corresponding to an interrupted
operation
"""
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 if not self._cmdhint:
return (_("use 'hg %s --continue' or 'hg %s --abort'") %
(self._opname, self._opname))
return self._cmdhint
def msg(self):
"""returns the status message corresponding to the command"""
if not self._cmdmsg:
return _('%s in progress') % (self._opname)
return self._cmdmsg
Taapas Agrawal
statecheck: added support for cmdutil.afterresolvedstates...
r42733 def continuemsg(self):
""" returns appropriate continue message corresponding to command"""
return _('hg %s --continue') % (self._opname)
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 def isunfinished(self, repo):
Taapas Agrawal
statecheck: added support for STATES...
r42732 """determines whether a multi-step operation is in progress
or not
"""
if self._opname == 'merge':
return len(repo[None].parents()) > 1
else:
return repo.vfs.exists(self._fname)
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730
# A list of statecheck objects for multistep operations like graft.
_unfinishedstates = []
Taapas Agrawal
statecheck: shifted defaults to addunfinished()...
r42734 def addunfinished(opname, fname, clearable=False, allowcommit=False,
reportonly=False, continueflag=False, stopflag=False,
Taapas Agrawal
continue: added logic for hg continue...
r42831 cmdmsg="", cmdhint="", statushint="", abortfunc=None,
continuefunc=None):
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 """this registers a new command or operation to unfinishedstates
Taapas Agrawal
statecheck: shifted defaults to addunfinished()...
r42734 opname is the name the command or operation
fname is the file name in which data should be stored in .hg directory.
It is None for merge command.
clearable boolean determines whether or not interrupted states can be
cleared by running `hg update -C .` which in turn deletes the
state file.
allowcommit boolean decides whether commit is allowed during interrupted
state or not.
reportonly flag is used for operations like bisect where we just
need to detect the operation using 'hg status --verbose'
continueflag is a boolean determines whether or not a command supports
`--continue` option or not.
stopflag is a boolean that determines whether or not a command supports
--stop flag
cmdmsg is used to pass a different status message in case standard
message of the format "abort: cmdname in progress" is not desired.
cmdhint is used to pass a different hint message in case standard
message of the format "To continue: hg cmdname --continue
To abort: hg cmdname --abort" is not desired.
statushint is used to pass a different status message in case standard
message of the format ('To continue: hg cmdname --continue'
'To abort: hg cmdname --abort') is not desired
Taapas Agrawal
abort: added logic for of hg abort...
r42784 abortfunc stores the function required to abort an unfinished state.
Taapas Agrawal
continue: added logic for hg continue...
r42831 continuefunc stores the function required to finish an interrupted
operation.
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 """
Taapas Agrawal
statecheck: shifted defaults to addunfinished()...
r42734 statecheckobj = _statecheck(opname, fname, clearable, allowcommit,
reportonly, continueflag, stopflag, cmdmsg,
Taapas Agrawal
continue: added logic for hg continue...
r42831 cmdhint, statushint, abortfunc, continuefunc)
Taapas Agrawal
statecheck: added support for STATES...
r42732 if opname == 'merge':
_unfinishedstates.append(statecheckobj)
else:
_unfinishedstates.insert(0, statecheckobj)
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730
addunfinished(
'update', fname='updatestate', clearable=True,
cmdmsg=_('last update was interrupted'),
Taapas Agrawal
statecheck: added support for STATES...
r42732 cmdhint=_("use 'hg update' to get a consistent checkout"),
statushint=_("To continue: hg update")
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 )
Taapas Agrawal
statecheck: added support for STATES...
r42732 addunfinished(
'bisect', fname='bisect.state', allowcommit=True, reportonly=True,
statushint=_('To mark the changeset good: hg bisect --good\n'
'To mark the changeset bad: hg bisect --bad\n'
'To abort: hg bisect --reset\n')
)
Taapas Agrawal
state: moved cmdutil.STATES and utilities to state.py...
r42731
def getrepostate(repo):
# experimental config: commands.status.skipstates
skip = set(repo.ui.configlist('commands', 'status.skipstates'))
Taapas Agrawal
statecheck: added support for STATES...
r42732 for state in _unfinishedstates:
if state._opname in skip:
Taapas Agrawal
state: moved cmdutil.STATES and utilities to state.py...
r42731 continue
Taapas Agrawal
statecheck: added support for STATES...
r42732 if state.isunfinished(repo):
return (state._opname, state.statusmsg())