Differences between revisions 2 and 3
Revision 2 as of 2015-10-31 08:59:10
Size: 2014
Comment:
Revision 3 as of 2015-11-02 14:28:56
Size: 2014
Comment:
Deletions are marked like this. Additions are marked like this.
Line 10: Line 10:
== How to Start == == How to Merge ==
Line 12: Line 12:
Perhaps (2) is the best. Perhaps (B) is the best.
Line 14: Line 14:
 1. single big commit  A. single big commit
Line 16: Line 16:
 2. reorganize as 10+ patches (base implementation, pager, setenv, sendfds, ...)  A. reorganize as 10+ patches (base implementation, pager, setenv, sendfds, ...)
Line 18: Line 18:
 3. pull, rename and merge  A. pull, rename and merge
Line 20: Line 20:
 4. convert with filemap and rebase  A. convert with filemap and rebase

Note:

This page is primarily intended for developers of Mercurial.

cHg Porting Plan

Steps to merge cHg into the Mercurial tree.

1. How to Merge

Perhaps (B) is the best.

  1. single big commit
    • {o} hard to review

  2. reorganize as 10+ patches (base implementation, pager, setenv, sendfds, ...)
    • {*} can improve the code incrementally

  3. pull, rename and merge
    • {o} messy

  4. convert with filemap and rebase
    • {o} messy

2. Source Layout

Perhaps (A) is better 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:

contrib/chg/Makefile
            README
            chg.c
            hgclient.[ch]
            util.[ch]
hgext/chgserver.py
mercurial/osutil.c <- chgutil.c

B. 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?)

4. Random Thoughts

  • eliminate copy-paste codes
    • pager
    • _requesthandler

    • util.system

  • testing: ./run-tests.py --with-hg=chg ?

  • environment variables
    • HGPLAIN, HGENCODING, LC_*, etc.

    • ui.environ ?

    • shell alias
  • debian package
  • better forking model for
    • JIT optimization provided by pypy
    • cached repo object (avoid parsing obsstore, etc.)

  • restart server process if config or __version__ changed


CategoryDeveloper CategoryNewFeatures

ChgPortingPlan (last edited 2016-12-07 23:26:33 by JunWu)