Differences between revisions 4 and 7 (spanning 3 versions)
Revision 4 as of 2021-04-02 16:53:31
Size: 659
Comment:
Revision 7 as of 2021-04-21 09:22:31
Size: 2325
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
=== Task involving only Rust code === == Small "First" tasks ==

These tasks should be good fit for first contributions. They are reasonably isolated and can be completed in a reasonable amount of time.

==== Task involving only Rust code ====
Line 19: Line 23:
 * hg config (some of it is already implemented)
Line 20: Line 25:
==== Task involing mostly Rust code, with rust-cpython usage ====
Line 21: Line 27:
Mercurial's revlog have an "index" object that implement various data access and graph computation logic. In Rust, we have a "MixedIndex" class that forward these computation to the C code. Implementing these method in Rust would get us closer to using a pure Rust index.

Computation on the graph:

  * ``ancestors``: return the gca set of the given revs
  * ``commonancestorsheads``: commonancestorsheads
  * ``computephasesmapsets``: compute the phases of all changesets
  * ``headrevs``: get head revisions
  * ``get filtered head revisions``: get filtered head revisions
  * ``reachableroots2``: return ``(heads(::(<roots> and <roots>::<heads>)))``

Data access:

  * ``__getitem__``
  * ``deltachain``
  * ``issnapshot``
  * ``findsnapshots``
  * ``slicechunktodensity``
  * ``stats``

==== Task involving Python Only ====

  * add a `-t/--tool` flag to evolve's `hg pick`

== Medium Sized Task ==

These tasks are a bit more ambitious. They can be used to dive a bit deeper in some aspect of Mercurial. They can often be sliced in multiple subtasks

==== Task involving Rust code ====

  * implement a read/write revlog'index in Rust (we already have a lot of code for the read part)
  * implement/integrate a Rust version of ``chg`` to the `rhg` executable,
  * implement rust based version of the `smartset` object used by `revsets`,

New Contributors Mentoring

If you are a new contributor that wishes to start investing time in Mercurial development, you can grab one of the "Mentored" task. These tasks are low hanging fruits selected by core developers to help newcomers get a grasp of the code base and contribution process.

1. List of Mentored task per topic

2. Small "First" tasks

These tasks should be good fit for first contributions. They are reasonably isolated and can be completed in a reasonable amount of time.

2.0.1. Task involving only Rust code

The rhg pure Rust executable is a good pool of simple "first task". Multiple simple command are waiting to be implemented:

  • hg id
  • hg path
  • hg branch
  • hg bookmarks
  • hg config (some of it is already implemented)

2.0.2. Task involing mostly Rust code, with rust-cpython usage

Mercurial's revlog have an "index" object that implement various data access and graph computation logic. In Rust, we have a "MixedIndex" class that forward these computation to the C code. Implementing these method in Rust would get us closer to using a pure Rust index.

Computation on the graph:

  • ancestors: return the gca set of the given revs

  • commonancestorsheads: commonancestorsheads

  • computephasesmapsets: compute the phases of all changesets

  • headrevs: get head revisions

  • get filtered head revisions: get filtered head revisions

  • reachableroots2: return (heads(::(<roots> and <roots>::<heads>)))

Data access:

  • getitem

  • deltachain

  • issnapshot

  • findsnapshots

  • slicechunktodensity

  • stats

2.0.3. Task involving Python Only

  • add a -t/--tool flag to evolve's hg pick

3. Medium Sized Task

These tasks are a bit more ambitious. They can be used to dive a bit deeper in some aspect of Mercurial. They can often be sliced in multiple subtasks

3.0.1. Task involving Rust code

  • implement a read/write revlog'index in Rust (we already have a lot of code for the read part)
  • implement/integrate a Rust version of chg to the rhg executable,

  • implement rust based version of the smartset object used by revsets,


NewContributors (last edited 2022-07-13 15:12:03 by Pierre-YvesDavid)