Page MenuHomePhabricator

[DRAFT] Parse the Git wire protocol in receive-pack
Changes PlannedPublic

Authored by epriestley on May 20 2016, 6:14 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Mar 16, 8:28 AM
Unknown Object (File)
Sun, Mar 10, 12:05 PM
Unknown Object (File)
Fri, Mar 1, 1:09 AM
Unknown Object (File)
Feb 21 2024, 7:37 AM
Unknown Object (File)
Feb 21 2024, 4:59 AM
Unknown Object (File)
Feb 9 2024, 9:23 AM
Unknown Object (File)
Feb 7 2024, 6:15 AM
Unknown Object (File)
Feb 4 2024, 1:10 PM
Subscribers

Details

Summary

Ref T5000. Git's protocol is mostly fairly parsable. It has PACK blobs which are trickier to parse, but we don't currently need to decode them (and I think we may never need to decode them: we only need to rewrite refs and response codes, not object content).

To rewrite the actual response, we only need to rewrite this:

0033ng refs/heads/master pre-receive hook declined\n

...into this:

0019ok refs/heads/master \n

...which is pretty reasonable. This doesn't emit or interpret frames and isn't suitable to upstream since it also writes all of the protocol out to tempfiles, but I'm reasonably confident I can estimate T5000 now.

Test Plan

N/A

Diff Detail

Repository
rP Phabricator
Branch
git1
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 12284
Build 15527: Run Core Tests
Build 15526: arc lint + arc unit