Note:
This page is primarily intended for developers of Mercurial.
cHg Porting Plan
Steps to merge cHg into the Mercurial tree, plus possible future improvements.
Contents
1. How to Merge
Perhaps (B).
- single big commit
hard to review
useless history for digging
- reorganize as a few patches (base implementation, pager, setenv, sendfds, ...)
can improve the code incrementally
less useful history for digging
- pull, rename and merge
having more than one roots
- convert with filemap and rebase
full history is useful when digging into bugs
300+ uninteresting revisions
2. Source Layout
Perhaps (A) or (B) because we don't have to worry about the extension path.
Original:
README hgext/chgserver.py chgutil.c src/Makefile chg.c hgclient.[ch] util.[ch]
A. Merge extension part into hgext:
contrib/chg/Makefile README chg.c hgclient.[ch] util.[ch] hgext/chgserver.py mercurial/osutil.c <- chgutil.c
B. Merge extension part into core:
contrib/chg/Makefile README chg.c hgclient.[ch] util.[ch] mercurial/chgserver.py mercurial/osutil.c <- chgutil.c
C. Put everything under contrib/chg:
contrib/chg/hgext/... src/...
3. Coding Style
Current state:
.py mostly follows the Mercurial style
.c is similar to the Mercurial style, but
- uses 4 spaces instead of tab
- uses C99 comment
- uses C99 variable declaration
What to do:
update import lines (easy)
- replace 4 spaces by tab (easy)
- replace C99 comments (easy)
move variable declarations to top (really?)
this appears non-trivial, I won't do for contrib/chg sources
4. Future Improvements
4.1. Server Life-cycle
Want to restart the server (or reload the config cleanly) if config or __version__ changed.
On config change, it isn't always necessary to restart the server. For example, ui.style can be reloaded by recreating ui object. On the other hand, extensions can't be unloaded. Anyway, it won't be a problem to restart the server aggressively assuming that the config files won't change too often.
Environment variables are also a problem. The two things above change in a "global event" basis. At some point of time, the config/version changes and all running servers need to be restarted. However, Environement variable can change more often and can be different in two different shell, using Mercurial at the same time. We probably need multiple server based on environment here.
4.1.1. How to detect config change?
hook ui.readconfig -> config.parse to know all involved files
- keep full text or hash of these files
- read all config files and compare them with (2) per connection
https://bitbucket.org/yuja/chg/pull-requests/3/483b35203d92/diff#comment-8188548
Perhaps (1) can't be implemented cleanly by extension because ui is loaded before uisetup(ui).
4.1.2. How to handle Environment Variables difference
(basic note)
some of them could be sent by the client and updated for each worker (eg: HGEDITOR).
Some other have global effect and requires dispatch to different server (eg: HGPLAIN, HGENCODING)
4.1.3. Who restarts the server?
- not determined
- this would be deeply linked to the server model:
fork per connection, or pre-forked worker pool (for PyPy JIT)
round-robin on accept(), or more intelligent dispatcher (e.g. dispatch per repo.root for better caching of repo instance)
- but we'll need a simple implementation first. otherwise we can't run tests!
(from previous discussion)
- marmoute, lcharignon: server tells dirty and dies, client starts the server ?
- yuya: server tells dirty, client kills and restarts the server
4.1.4. See also
https://bitbucket.org/yuja/chg/pull-requests/3/483b35203d92/diff#comment-8219394
http://thread.gmane.org/gmane.comp.version-control.mercurial.devel/81763/focus=82134
4.2. Random Thoughts
- eliminate copy-paste codes
- pager
_requesthandler
util.system
testing: ./run-tests.py --with-hg=chg ?
- environment variables
HGPLAIN, HGENCODING, LC_*, etc.
- shell alias
- debian package
- better forking model for
- JIT optimization provided by pypy
cached repo object (avoid parsing obsstore, etc.)