Mercurial > hg
annotate tests/sha256line.py @ 52217:96b113d22b34 stable
rust-update: handle SIGINT from long-running update threads
The current code does not respond to ^C until after the Rust bit is finished
doing its work. This is expected, since Rust holds the GIL for the duration
of the call and does not call `PyErr_CheckSignals`. Freeing the GIL to do our
work does not really improve anything since the Rust threads are still going,
and the only way of cancelling a thread is by making it cooperate.
So we do the following:
- remember the SIGINT handler in hg-cpython and reset it after the call
into core (see inline comment in `update.rs` about this)
- make all update threads watch for a global `AtomicBool` being `true`,
and if so stop their work
- reset the global bool and exit early (i.e. before writing the dirstate)
- raise SIGINT from `hg-cpython` if update returns `InterruptReceived`
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Tue, 12 Nov 2024 12:52:13 +0100 |
parents | fa4c4fa232d6 |
children |
rev | line source |
---|---|
51361
fa4c4fa232d6
tests: make sha256line.py available for all tests
Anton Shestakov <av6@dwimlabs.net>
parents:
diff
changeset
|
1 #!/usr/bin/env python3 |
fa4c4fa232d6
tests: make sha256line.py available for all tests
Anton Shestakov <av6@dwimlabs.net>
parents:
diff
changeset
|
2 # |
fa4c4fa232d6
tests: make sha256line.py available for all tests
Anton Shestakov <av6@dwimlabs.net>
parents:
diff
changeset
|
3 # A tool to help producing large and poorly compressible files |
fa4c4fa232d6
tests: make sha256line.py available for all tests
Anton Shestakov <av6@dwimlabs.net>
parents:
diff
changeset
|
4 # |
fa4c4fa232d6
tests: make sha256line.py available for all tests
Anton Shestakov <av6@dwimlabs.net>
parents:
diff
changeset
|
5 # Usage: |
fa4c4fa232d6
tests: make sha256line.py available for all tests
Anton Shestakov <av6@dwimlabs.net>
parents:
diff
changeset
|
6 # $TESTDIR/seq.py 1000 | $TESTDIR/sha256line.py > my-file.txt |
fa4c4fa232d6
tests: make sha256line.py available for all tests
Anton Shestakov <av6@dwimlabs.net>
parents:
diff
changeset
|
7 |
fa4c4fa232d6
tests: make sha256line.py available for all tests
Anton Shestakov <av6@dwimlabs.net>
parents:
diff
changeset
|
8 |
fa4c4fa232d6
tests: make sha256line.py available for all tests
Anton Shestakov <av6@dwimlabs.net>
parents:
diff
changeset
|
9 import hashlib |
fa4c4fa232d6
tests: make sha256line.py available for all tests
Anton Shestakov <av6@dwimlabs.net>
parents:
diff
changeset
|
10 import sys |
fa4c4fa232d6
tests: make sha256line.py available for all tests
Anton Shestakov <av6@dwimlabs.net>
parents:
diff
changeset
|
11 |
fa4c4fa232d6
tests: make sha256line.py available for all tests
Anton Shestakov <av6@dwimlabs.net>
parents:
diff
changeset
|
12 |
fa4c4fa232d6
tests: make sha256line.py available for all tests
Anton Shestakov <av6@dwimlabs.net>
parents:
diff
changeset
|
13 for line in sys.stdin: |
fa4c4fa232d6
tests: make sha256line.py available for all tests
Anton Shestakov <av6@dwimlabs.net>
parents:
diff
changeset
|
14 print(hashlib.sha256(line.encode('utf8')).hexdigest()) |