10

トランザクションをコミットする前に実行されるMercurialフックが必要です。これにより、コミットされるバイナリファイルが1メガバイトを超える場合にトランザクションが中止されます。1つの問題を除いて正常に動作する次のコードを見つけました。チェンジセットにファイルの削除が含まれる場合、このフックは例外をスローします。

フック(私は使用していpretxncommit = python:checksize.newbinsizeます):

from mercurial import context, util
from mercurial.i18n import _
import mercurial.node as dpynode

'''hooks to forbid adding binary file over a given size

Ensure the PYTHONPATH is pointing where hg_checksize.py is and setup your
repo .hg/hgrc like this:

[hooks]
pretxncommit = python:checksize.newbinsize
pretxnchangegroup = python:checksize.newbinsize
preoutgoing = python:checksize.nopull

[limits]
maxnewbinsize = 10240
'''

def newbinsize(ui, repo, node=None, **kwargs):
    '''forbid to add binary files over a given size'''
    forbid = False
    # default limit is 10 MB
    limit = int(ui.config('limits', 'maxnewbinsize', 10000000))
    tip = context.changectx(repo, 'tip').rev()
    ctx = context.changectx(repo, node)
    for rev in range(ctx.rev(), tip+1):
        ctx = context.changectx(repo, rev)
        print ctx.files()
        for f in ctx.files():
            fctx = ctx.filectx(f)
            filecontent = fctx.data()
            # check only for new files
            if not fctx.parents():
                if len(filecontent) > limit and util.binary(filecontent):
                    msg = 'new binary file %s of %s is too large: %ld > %ld\n'
                    hname = dpynode.short(ctx.node())
                    ui.write(_(msg) % (f, hname, len(filecontent), limit))
                    forbid = True
    return forbid

例外:

$  hg commit -m 'commit message'
error: pretxncommit hook raised an exception: apps/helpers/templatetags/include_extends.py@bced6272d8f4: not found in manifest
transaction abort!
rollback completed
abort: apps/helpers/templatetags/include_extends.py@bced6272d8f4: not found in manifest!

私はMercurialフックを書くことに慣れていないので、何が起こっているのかかなり混乱しています。hgがすでにファイルを認識しているのに、フックがファイルが削除されたことを気にするのはなぜですか?このフックを修正して、常に機能するようにする方法はありますか?

更新(解決済み): 変更セットで削除されたファイルを除外するようにフックを変更しました。

def newbinsize(ui, repo, node=None, **kwargs):
    '''forbid to add binary files over a given size'''
    forbid = False
    # default limit is 10 MB
    limit = int(ui.config('limits', 'maxnewbinsize', 10000000))
    ctx = repo[node]
    for rev in xrange(ctx.rev(), len(repo)):
        ctx = context.changectx(repo, rev)

        # do not check the size of files that have been removed
        # files that have been removed do not have filecontexts
        # to test for whether a file was removed, test for the existence of a filecontext
        filecontexts = list(ctx)
        def file_was_removed(f):
            """Returns True if the file was removed"""
            if f not in filecontexts:
                return True
            else:
                return False

        for f in itertools.ifilterfalse(file_was_removed, ctx.files()):
            fctx = ctx.filectx(f)
            filecontent = fctx.data()
            # check only for new files
            if not fctx.parents():
                if len(filecontent) > limit and util.binary(filecontent):
                    msg = 'new binary file %s of %s is too large: %ld > %ld\n'
                    hname = dpynode.short(ctx.node())
                    ui.write(_(msg) % (f, hname, len(filecontent), limit))
                    forbid = True
    return forbid
4

2 に答える 2

5

これは、最近のMercurialのシェルフックで行うのは本当に簡単です。

if hg locate -r tip "set:(added() or modified()) and binary() and size('>100k')"; then
  echo "bad files!"
  exit 1
else
  exit 0
fi

何が起きてる?まず、問題のあるすべての変更されたファイルを見つけるためのファイルセットがあります(hg1.9の「hghelpfilesets」を参照)。'locate'コマンドはstatusに似ていますが、ファイルを一覧表示し、何かが見つかった場合は0を返す点が異なります。そして、保留中のコミットを確認するために「-rtip」を指定します。

于 2011-10-14T18:52:08.113 に答える
4

for f in ctx.files()削除されたファイルが含まれるため、それらを除外する必要があります。

(そして、に置き換えfor rev in range(ctx.rev(), tip+1):for rev in xrange(ctx.rev(), len(repo)):、削除することができますtip = ...

最新のhgを使用している場合は、使用しませんctx = context.changectx(repo, node)が、ctx = repo[node]代わりに使用します。

于 2010-03-31T10:37:21.153 に答える