summaryrefslogtreecommitdiff
path: root/src/pack-objects.h
Commit message (Collapse)AuthorAgeFilesLines
* packbuilder: report progress during deltificationcmn/pack-objects-reportCarlos Martín Nieto2015-05-131-0/+1
| | | | | | | | This is useful to send to the client while we're performing the work. The reporting function has a force parameter which makes sure that we do send out the message of 100% completed, even if this comes before the next udpate window.
* pack-objects: fill a packbuilder from a walkCarlos Martín Nieto2015-03-111-0/+10
| | | | | | | | | | | Most use-cases for the object packer communicate in terms of commits which each side has. We already have an object to specify this relationship between commits, namely git_revwalk. By knowing which commits we want to pack and which the other side already has, we can perform similar optimisations to git, by marking each tree as interesting or uninteresting only once, and not sending those trees which we know the other side has.
* Packbuilder contains its own zstreamEdward Thomson2014-01-141-0/+2
|
* Initial Implementation of progress reports during pushJameson Miller2013-09-301-0/+5
| | | | | | | | | | | | | | | | | | | | | | This adds the basics of progress reporting during push. While progress for all aspects of a push operation are not reported with this change, it lays the foundation to add these later. Push progress reporting can be improved in the future - and consumers of the API should just get more accurate information at that point. The main areas where this is lacking are: 1) packbuilding progress: does not report progress during deltafication, as this involves coordinating progress from multiple threads. 2) network progress: reports progress as objects and bytes are going to be written to the subtransport (instead of as client gets confirmation that they have been received by the server) and leaves out some of the bytes that are transfered as part of the push protocol. Basically, this reports the pack bytes that are written to the subtransport. It does not report the bytes sent on the wire that are received by the server. This should be a good estimate of progress (and an improvement over no progress).
* update copyrightsEdward Thomson2013-01-081-1/+1
|
* Push! By schu, phkelley, and congyiwu, et alPhilip Kelley2012-11-281-1/+0
|
* Fix MSVC compilation warningsnulltoken2012-11-171-5/+5
|
* Remove git_hash_ctx_new - callers now _ctx_init()Edward Thomson2012-11-131-1/+1
|
* Reorganize transport architecture (squashed 3)Philip Kelley2012-11-011-1/+2
|
* Incremental improvements to pack-objects logicPhilip Kelley2012-10-171-3/+6
| | | | Incorporate feedback for incr. improvements to pack-objects
* fixup! gsoc-pack-objects WIPMichael Schubert2012-10-091-3/+2
| | | | Use khash instead of git.git's hashing algorithm.
* gsoc-pack-objects WIPMichael Schubert2012-10-091-0/+85