Skip to content
Snippets Groups Projects
  1. Mar 04, 2025
  2. Jan 24, 2025
    • Mitchell Kember's avatar
      rhg: implement rhg annotate · 61839492
      Mitchell Kember authored
      This initial implementation produces the same output as Python for all the files
      I've tried, and is usually 1.5-9x faster. The algorithm is mostly the same, but
      one key difference is that the Rust implementation only converts filelog
      revisions to changelog revisions if they will actually appear in the output.
      
      This does not support all the command line flags yet. In particular, --template,
      --include, --exclude, --skip, and whitespace-related flags will cause fallback
      to Python. Also, --rev 'wdir()' (often used by editor plugins) is not supported.
      There is also no pager.
      61839492
  3. Jan 16, 2025
  4. Feb 05, 2025
    • Mitchell Kember's avatar
      rust: add encoding.rs · bbf1c522
      Mitchell Kember authored
      This is based on encoding.py. It reads the environment variables HGENCODING,
      HGENCODINGMODE, and HGENCODINGAMBIGUOUS. Currently it only supports UTF-8 and
      ascii, but it could be extended to support other local encodings.
      
      Unlike Python, it assumes all internal strings are UTF-8 and does not attempt to
      fallback to latin-1 (or ui.fallbackencoding).
      
      Nothing is using this now, but in the future command output and error messages
      should transition to using it.
      
      I replaced existing calls to `utf8_to_local` and `local_to_uf8` with direct
      String/bytes methods since they were not logically converting between internal
      and local encodings. Instead, they were used (for example) when an error message
      happened to be stored as String but needed to be passed somewhere as bytes. The
      proper fix for this will be to avoid String in the first place.
      bbf1c522
  5. Dec 30, 2024
  6. Dec 13, 2024
    • Arseniy Alekseyev's avatar
      rust-hgignore: add a scripting command to print the hgignore regexp · b89c934e
      Arseniy Alekseyev authored
      Add a command `script::hgignore --print-re` to print the
      hgignore regexp.
      
      One complication is that the `rootfilesin`-only matcher doesn't use a
      regular expression, and the existing converts it to something that's
      not a regular expression.
      
      We add code to handle that case.
      
      Since this command is now sufficient to generate a tidy-looking
      regexp for scripting, this frees up the "debug" command to report
      the internal regexp used by the regex engine, so we make that
      change too.
      b89c934e
    • Arseniy Alekseyev's avatar
      rhg: add a collision detection to complain about duplicated commands · a0587c1b
      Arseniy Alekseyev authored
      The previous commit made it easier (too easy) to define
      commands with identical names. It turns out `clap` does
      nothing to detect such collisions, which also leads to very
      confusing behavior.
      
      This change catches that error, and reports where the commands
      came from.
      a0587c1b
    • Arseniy Alekseyev's avatar
      rhg: consistently use the command name given in clap::command!(<...>) macro · 021c1b16
      Arseniy Alekseyev authored
      Before this patch there are 2 things the user controls:
      
      1. the module/command name, specified in subcommand! macro
      2. the command name, specified in clap::command! macro
      
      If these are out of sync, we get no compile error or a clear runtime
      error, but instead a confusing behavior where command line parser
      parses one thing, but running it doesn't work.
      
      This commit makes the clap::command! macro the sole authority
      determining the command name, so we don't have to worry about
      this weird behavior any more.
      
      It also makes it easy to validate agreement between (1) and (2)
      if we want it, but I didn't add the check because I'm not sure
      people necessarily want it.
      021c1b16
    • Arseniy Alekseyev's avatar
      rhg: simplify the subcommands macro · 92c6c8ab
      Arseniy Alekseyev authored
      Reduce the scope of the macro to only generate individual `SubCommand`
      values. This way, it will be easy to tweak the behavior of
      `add_subcommand_args` and `subcommand_run_fn` without having
      to understand the details of the macro.
      
      It also lets us easy add commands that don't fit the idiom,
      for example the "admin::" commands or "script::" commands.
      92c6c8ab
  7. Nov 15, 2023
  8. Nov 06, 2023
    • Raphaël Gomès's avatar
      rust: run a clippy pass with the latest stable version · 532e74ad
      Raphaël Gomès authored
      Our current version of clippy is older than the latest stable.
      The newest version has new lints that are moslty good advice, so let's apply
      them ahead of time. This has the added benefit of reducing the noise for
      developpers like myself that use clippy as an IDE helper, as well as being
      more prepared for a future clippy upgrade.
      532e74ad
  9. Aug 31, 2023
  10. Jul 28, 2023
    • Arseniy Alekseyev's avatar
      rhg: tweak rhg fallback code structure · 53d77f96
      Arseniy Alekseyev authored
      The goal here is to share the code that accesses the config setting,
      but also move it to the top-level, so that we can more easily change
      this code later.
      
      (in fact in Jane Street we want to make it choose chg in some cases)
      53d77f96
  11. Feb 13, 2023
  12. Mar 23, 2023
  13. Jan 09, 2023
    • Raphaël Gomès's avatar
      rust-clippy: fix remaining warnings in `rhg` · fba29dee
      Raphaël Gomès authored
      All of these are simple changes that for the most part are clear improvements
      and the rest are at most equivalent.
      fba29dee
    • Raphaël Gomès's avatar
      rust: run `cargo clippy` · 58074252
      Raphaël Gomès authored
      These automatic fixes are good to have because they make the code
      more idiomatic and less surprising.
      
      The transform from `sort` -> `sort_unstable` is questionable, but this is
      only in a test, so it doesn't matter in our case.
      58074252
  14. Nov 14, 2022
    • Raphaël Gomès's avatar
      rhg: upgrade `clap` dependency · 37bc3ede
      Raphaël Gomès authored
      This one is the worst one to upgrade since v2 -> v4 broke a ton of API,
      which thankfully seems saner now.
      
      Contrary to what was done in the `hg-core/src/examples/nodemap` rewrite,
      we're not switching from the "builder" pattern to the "derive" pattern,
      since that would imply a much larger diff. It can be done incrementally.
      37bc3ede
  15. Nov 03, 2022
  16. Sep 22, 2022
  17. Sep 20, 2022
  18. Sep 22, 2022
  19. Sep 20, 2022
  20. Oct 04, 2022
  21. Sep 22, 2022
    • Arseniy Alekseyev's avatar
      rhg: fix bugs around [use-dirstate-tracked-hint] and repo auto-upgrade · 3a538710
      Arseniy Alekseyev authored
      This makes two changes:
      - make rhg support the [dirstate-tracked-key-v1] requirement.
      I believe rhg never changes the tracked file set, so it's OK that it
      doesn't have any logic for writing this file.
      
      - fix the name of [format.use-dirstate-v2.automatic-upgrade-of-mismatching-repositories]
      config option in rhg, which makes rhg actually honor the auto-upgrade.
      
      These two issues cancelled each other out in tests (auto-upgrade was happening
      because [dirstate-tracked-key-v1] forced the fallback, not because of the config),
      which is I think why they went unnoticed earlier.
      3a538710
  22. Jul 19, 2022
  23. Jul 12, 2022
  24. Jul 11, 2022
    • Raphaël Gomès's avatar
      rhg: support "!" syntax for disabling extensions · f3cd2d6e
      Raphaël Gomès authored
      This makes it so that calls in test-log.t do not fall back immediately because
      of the disabled extension, instead going through the CLI parsing code, which
      breaks because of invalid UTF-8 in a flag.
      
      I *think* clap 3.x+ supports this? I'm not sure, and we have to upgrade the
      minimum Rust version to use clap 3.x anyway which is out of scope for this
      series, so let's just kick that can down the road a little bit.
      f3cd2d6e
  25. Mar 22, 2022
  26. Apr 05, 2022
  27. May 04, 2022
  28. Apr 19, 2022
    • Raphaël Gomès's avatar
      rhg: use `Command::exec` instead of `Command::status` · 006688e3
      Raphaël Gomès authored
      `rhg` is supposed to be a transparent executable, using a subprocess defeats
      that purpose. See inline comments for more details.
      
      This also introduces the `which` crate to check if the fallback executable
      actually exists to help debugging (plain `execve` doesn't give much
      information).
      
      The error code 253 is used to signify that the fallback is not found, but may
      mean in the future that it is otherwise invalid if we start being more
      specific.
      
      Differential Revision: https://phab.mercurial-scm.org/D12578
      006688e3
  29. Apr 12, 2022
Loading