Skip to content
Snippets Groups Projects
  1. Dec 18, 2015
  2. Dec 20, 2015
    • Matt Mackall's avatar
      verify: clean up weird error/warning lists · 8462d7f2
      Matt Mackall authored
      Nested functions in Python are not able to assign to variables in the
      outer scope without something like the list trick because assignments
      refer to the inner scope. So, we formerly used a list to give an
      object to assign into.
      
      Now that error and warning are object members, the [0] hack is no
      longer needed.
      8462d7f2
  3. Dec 18, 2015
  4. Dec 20, 2015
  5. Dec 19, 2015
  6. Dec 18, 2015
  7. Dec 19, 2015
  8. Dec 18, 2015
    • Laurent Charignon's avatar
      log: speed up hg log <file|folder> · ff305ab2
      Laurent Charignon authored
      This patch makes hg log <file|folder> faster by using changelog.readfiles
      instead of changelog.read.
      On our large repos for hg log <file|folder> -l5 operations that were taking:
      - ~8s I see a 25% improvement
      - ~15s, I see a 35% improvement
      For recently modified folder/file, the difference is negligible as we don't
      have to consider many revisions.
      ff305ab2
    • Laurent Charignon's avatar
      changelog: add a new method to get files modified by a changeset · ed003859
      Laurent Charignon authored
      This patch adds a new method "readfiles" to get the files modified by a
      changeset. It extracts some logic from "read" to only return the files modified
      by a changeset as efficiently as possible. This is used in the next patch to
      speed up hg log <file|folder>
      ed003859
  9. Dec 16, 2015
  10. Dec 17, 2015
  11. Dec 18, 2015
  12. Dec 14, 2015
  13. Dec 11, 2015
    • Augie Fackler's avatar
      changegroup: introduce cg3, which has support for exchanging treemanifests · 77d25b91
      Augie Fackler authored
      I'm not entirely happy with using a trailing / on a "file" entry for
      transferring a treemanifest. We've discussed putting some flags on
      each file header[0], but I'm unconvinced that's actually any better:
      if we were going to add another feature to the cg format we'd still be
      doing a version bump anyway to cg4, so I'm inclined to not spend time
      coming up with a more sophisticated format until we actually know what
      the next feature we want to stuff in a changegroup will be.
      
      Test changes outside test-treemanifest.t are only due to the new CG3
      bundlecap showing up in the wire protocol.
      
      Many thanks to adgar@google.com and martinvonz@google.com for helping
      me with various odd corners of the changegroup and treemanifest API.
      
      0: It's not hard refactoring, nor is it a lot of work. I'm just
      disinclined to do speculative work when it's not clear what the
      customer would actually be.
      77d25b91
  14. Dec 18, 2015
    • Matt Mackall's avatar
      merge with stable · 8f016345
      Matt Mackall authored
      8f016345
    • Gregory Szorc's avatar
      revlog: seek to end of file before writing (issue4943) · e240e914
      Gregory Szorc authored
      Revlogs were recently refactored to open file handles in "a+" and use a
      persistent file handle for reading and writing. This drastically
      reduced the number of file handles being opened.
      
      Unfortunately, it appears that some versions of Solaris lose the file
      offset when performing a write after the handle has been seeked.
      
      The simplest workaround is to seek to EOF on files opened in a+ mode
      before writing to them, which is what this patch does.
      
      Ideally, this code would exist in the vfs layer. However, this would
      require creating a proxy class for file objects in order to provide a
      custom implementation of write(). This would add overhead. Since
      revlogs are the only files we open in a+ mode, the one-off workaround
      in revlog.py should be sufficient.
      
      This patch appears to have little to no impact on performance on my
      Linux machine.
      e240e914
  15. Dec 15, 2015
    • Augie Fackler's avatar
      manifestmerge: have manifest do matching before diffing · 2e31a17a
      Augie Fackler authored
      This means that the diff code does less work, potentially
      significantly less in the case of treemanifests. It also should ease
      implementation with narrowed clone cases (such as narrowhg) when we
      don't always have the entire set of treemanifest revlogs locally.
      
      As far as I can tell, this codepath is currently only used by record,
      so it'll probably die in the near future, and then narrowhg won't have
      to worry about composing with some unknown matching system.
      2e31a17a
  16. Dec 17, 2015
  17. Dec 13, 2015
Loading