Differences between revisions 3 and 4
Revision 3 as of 2015-11-02 14:28:56
Size: 2014
Comment:
Revision 4 as of 2015-11-21 10:40:36
Size: 2398
Comment:
Deletions are marked like this. Additions are marked like this.
Line 12: Line 12:
Perhaps (B) is the best. Perhaps (B) or (D).
Line 16: Line 16:
  * {o} useless history for digging
Line 18: Line 19:
  * {o} less useful history for digging
Line 19: Line 21:
  * {o} messy   * {o} having more than one roots
Line 21: Line 23:
  * {o} messy   * {*} full history is useful when digging into bugs
  * {o} 300+ revisions
Line 25: Line 28:
Perhaps (A) is better because we don't have to worry about the extension path. Perhaps (A) or (B) because we don't have to worry about the extension path.
Line 39: Line 42:
A. Merge extension part: A. Merge extension part into hgext:
Line 51: Line 54:
B. Put everything under contrib/chg: 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:

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) or (D).

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

    • {o} useless history for digging

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

    • {o} less useful history for digging

  3. pull, rename and merge
    • {o} having more than one roots

  4. convert with filemap and rebase
    • {*} full history is useful when digging into bugs

    • {o} 300+ 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?)

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)