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
F15337910: D15954.diff
Sun, Mar 9, 8:20 AM
Unknown Object (File)
Tue, Feb 25, 9:19 AM
Unknown Object (File)
Mon, Feb 17, 8:39 PM
Unknown Object (File)
Fri, Feb 14, 6:01 PM
Unknown Object (File)
Feb 9 2025, 9:42 PM
Unknown Object (File)
Jan 22 2025, 8:35 AM
Unknown Object (File)
Jan 21 2025, 3:23 PM
Unknown Object (File)
Jan 21 2025, 11:50 AM
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