1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
|
"""automatically manage newlines in repository files
This extension allows you to manage the type of line endings (CRLF or
LF) that are used in the repository and in the local working
directory. That way you can get CRLF line endings on Windows and LF on
Unix/Mac, thereby letting everybody use their OS native line endings.
The extension reads its configuration from a versioned ``.hgeol``
configuration file every time you run an ``hg`` command. The
``.hgeol`` file use the same syntax as all other Mercurial
configuration files. It uses two sections, ``[patterns]`` and
``[repository]``.
The ``[patterns]`` section specifies the line endings used in the
working directory. The format is specified by a file pattern. The
first match is used, so put more specific patterns first. The
available line endings are ``LF``, ``CRLF``, and ``BIN``.
Files with the declared format of ``CRLF`` or ``LF`` are always
checked out in that format and files declared to be binary (``BIN``)
are left unchanged. Additionally, ``native`` is an alias for the
platform's default line ending: ``LF`` on Unix (including Mac OS X)
and ``CRLF`` on Windows. Note that ``BIN`` (do nothing to line
endings) is Mercurial's default behaviour; it is only needed if you
need to override a later, more general pattern.
The optional ``[repository]`` section specifies the line endings to
use for files stored in the repository. It has a single setting,
``native``, which determines the storage line endings for files
declared as ``native`` in the ``[patterns]`` section. It can be set to
``LF`` or ``CRLF``. The default is ``LF``. For example, this means
that on Windows, files configured as ``native`` (``CRLF`` by default)
will be converted to ``LF`` when stored in the repository. Files
declared as ``LF``, ``CRLF``, or ``BIN`` in the ``[patterns]`` section
are always stored as-is in the repository.
Example versioned ``.hgeol`` file::
[patterns]
**.py = native
**.vcproj = CRLF
**.txt = native
Makefile = LF
**.jpg = BIN
[repository]
native = LF
The extension uses an optional ``[eol]`` section in your hgrc file
(not the ``.hgeol`` file) for settings that control the overall
behavior. There are two settings:
- ``eol.native`` (default ``os.linesep``) can be set to ``LF`` or
``CRLF`` override the default interpretation of ``native`` for
checkout. This can be used with :hg:`archive` on Unix, say, to
generate an archive where files have line endings for Windows.
- ``eol.only-consistent`` (default True) can be set to False to make
the extension convert files with inconsistent EOLs. Inconsistent
means that there is both ``CRLF`` and ``LF`` present in the file.
Such files are normally not touched under the assumption that they
have mixed EOLs on purpose.
See :hg:`help patterns` for more information about the glob patterns
used.
"""
from mercurial.i18n import _
from mercurial import util, config, extensions, commands, match, cmdutil
import re, os
# Matches a lone LF, i.e., one that is not part of CRLF.
singlelf = re.compile('(^|[^\r])\n')
# Matches a single EOL which can either be a CRLF where repeated CR
# are removed or a LF. We do not care about old Machintosh files, so a
# stray CR is an error.
eolre = re.compile('\r*\n')
def inconsistenteol(data):
return '\r\n' in data and singlelf.search(data)
def tolf(s, params, ui, **kwargs):
"""Filter to convert to LF EOLs."""
if util.binary(s):
return s
if ui.configbool('eol', 'only-consistent', True) and inconsistenteol(s):
return s
return eolre.sub('\n', s)
def tocrlf(s, params, ui, **kwargs):
"""Filter to convert to CRLF EOLs."""
if util.binary(s):
return s
if ui.configbool('eol', 'only-consistent', True) and inconsistenteol(s):
return s
return eolre.sub('\r\n', s)
def isbinary(s, params):
"""Filter to do nothing with the file."""
return s
filters = {
'to-lf': tolf,
'to-crlf': tocrlf,
'is-binary': isbinary,
}
def hook(ui, repo, node, hooktype, **kwargs):
"""verify that files have expected EOLs"""
files = set()
for rev in xrange(repo[node].rev(), len(repo)):
files.update(repo[rev].files())
tip = repo['tip']
for f in files:
if f not in tip:
continue
for pattern, target in ui.configitems('encode'):
if match.match(repo.root, '', [pattern])(f):
data = tip[f].data()
if target == "to-lf" and "\r\n" in data:
raise util.Abort(_("%s should not have CRLF line endings")
% f)
elif target == "to-crlf" and singlelf.search(data):
raise util.Abort(_("%s should not have LF line endings")
% f)
def preupdate(ui, repo, hooktype, parent1, parent2):
#print "preupdate for %s: %s -> %s" % (repo.root, parent1, parent2)
repo.readhgeol(parent1)
return False
def uisetup(ui):
ui.setconfig('hooks', 'preupdate.eol', preupdate)
def extsetup(ui):
try:
extensions.find('win32text')
raise util.Abort(_("the eol extension is incompatible with the "
"win32text extension"))
except KeyError:
pass
def reposetup(ui, repo):
uisetup(repo.ui)
#print "reposetup for", repo.root
if not repo.local():
return
for name, fn in filters.iteritems():
repo.adddatafilter(name, fn)
ui.setconfig('patch', 'eol', 'auto')
class eolrepo(repo.__class__):
_decode = {'LF': 'to-lf', 'CRLF': 'to-crlf', 'BIN': 'is-binary'}
_encode = {'LF': 'to-lf', 'CRLF': 'to-crlf', 'BIN': 'is-binary'}
def readhgeol(self, node=None, data=None):
if data is None:
try:
if node is None:
data = self.wfile('.hgeol').read()
else:
data = self[node]['.hgeol'].data()
except (IOError, LookupError):
return None
if self.ui.config('eol', 'native', os.linesep) in ('LF', '\n'):
self._decode['NATIVE'] = 'to-lf'
else:
self._decode['NATIVE'] = 'to-crlf'
eol = config.config()
eol.parse('.hgeol', data)
if eol.get('repository', 'native') == 'CRLF':
self._encode['NATIVE'] = 'to-crlf'
else:
self._encode['NATIVE'] = 'to-lf'
for pattern, style in eol.items('patterns'):
key = style.upper()
try:
self.ui.setconfig('decode', pattern, self._decode[key])
self.ui.setconfig('encode', pattern, self._encode[key])
except KeyError:
self.ui.warn(_("ignoring unknown EOL style '%s' from %s\n")
% (style, eol.source('patterns', pattern)))
include = []
exclude = []
for pattern, style in eol.items('patterns'):
key = style.upper()
if key == 'BIN':
exclude.append(pattern)
else:
include.append(pattern)
# This will match the files for which we need to care
# about inconsistent newlines.
return match.match(self.root, '', [], include, exclude)
def _hgcleardirstate(self):
self._eolfile = self.readhgeol() or self.readhgeol('tip')
if not self._eolfile:
self._eolfile = util.never
return
try:
cachemtime = os.path.getmtime(self.join("eol.cache"))
except OSError:
cachemtime = 0
try:
eolmtime = os.path.getmtime(self.wjoin(".hgeol"))
except OSError:
eolmtime = 0
if eolmtime > cachemtime:
ui.debug("eol: detected change in .hgeol\n")
# TODO: we could introduce a method for this in dirstate.
wlock = None
try:
wlock = self.wlock()
for f, e in self.dirstate._map.iteritems():
self.dirstate._map[f] = (e[0], e[1], -1, 0)
self.dirstate._dirty = True
# Touch the cache to update mtime. TODO: are we sure this
# always enought to update the mtime, or should we write a
# bit to the file?
self.opener("eol.cache", "w").close()
finally:
if wlock is not None:
wlock.release()
def commitctx(self, ctx, error=False):
for f in sorted(ctx.added() + ctx.modified()):
if not self._eolfile(f):
continue
data = ctx[f].data()
if util.binary(data):
# We should not abort here, since the user should
# be able to say "** = native" to automatically
# have all non-binary files taken care of.
continue
if inconsistenteol(data):
raise util.Abort(_("inconsistent newline style "
"in %s\n" % f))
return super(eolrepo, self).commitctx(ctx, error)
repo.__class__ = eolrepo
repo._hgcleardirstate()
|