comparison hgext/lfs/wrapper.py @ 35618:c780e0649e41

lfs: migrate most file filtering from threshold to custom filter Migrate `lfs.threshold` to more powerful `lfs.filter` added by D4990618 so people can specify what files to be stored in LFS with more flexibility. This patch was authored by Jun Wu for the fb-experimental repo, to avoid using matcher for efficiency[1]. All I've changed here is to register the new 'lfs.track' default so that the tests run cleanly, and adapt the subsequent language changes. Migrating the remaining uses of 'lfs.threshold' can be done separately since there's a fallback in place. [1] https://www.mercurial-scm.org/pipermail/mercurial-devel/2017-December/109388.html
author Matt Harbison <matt_harbison@yahoo.com>
date Sun, 31 Dec 2017 02:54:49 -0500
parents ebf14075a5c1
children 188b1371d1ed
comparison
equal deleted inserted replaced
35617:b75ea116603d 35618:c780e0649e41
121 return bool(flags & revlog.REVIDX_EXTSTORED) 121 return bool(flags & revlog.REVIDX_EXTSTORED)
122 122
123 def filelogaddrevision(orig, self, text, transaction, link, p1, p2, 123 def filelogaddrevision(orig, self, text, transaction, link, p1, p2,
124 cachedelta=None, node=None, 124 cachedelta=None, node=None,
125 flags=revlog.REVIDX_DEFAULT_FLAGS, **kwds): 125 flags=revlog.REVIDX_DEFAULT_FLAGS, **kwds):
126 threshold = self.opener.options['lfsthreshold']
127 textlen = len(text) 126 textlen = len(text)
128 # exclude hg rename meta from file size 127 # exclude hg rename meta from file size
129 meta, offset = filelog.parsemeta(text) 128 meta, offset = filelog.parsemeta(text)
130 if offset: 129 if offset:
131 textlen -= offset 130 textlen -= offset
132 131
133 if threshold and textlen > threshold: 132 lfstrack = self.opener.options['lfstrack']
133 if lfstrack(self.filename, textlen):
134 flags |= revlog.REVIDX_EXTSTORED 134 flags |= revlog.REVIDX_EXTSTORED
135 135
136 return orig(self, text, transaction, link, p1, p2, cachedelta=cachedelta, 136 return orig(self, text, transaction, link, p1, p2, cachedelta=cachedelta,
137 node=node, flags=flags, **kwds) 137 node=node, flags=flags, **kwds)
138 138