Details
- Reviewers
indygreg - Group Reviewers
hg-reviewers - Commits
- rHG6f467adf9f05: bundle: add the possibility to bundle a stream v2 part
Diff Detail
- Repository
- rHG Mercurial
- Lint
Lint Skipped - Unit
Unit Tests Skipped
Event Timeline
Now that we have more time to review this series, this is the part I am the least comfortable with. I think we could/should extract the stream part generator somewhere else than exchange.py. Maybe bundle2.py directly but I'm not sure. Any ideas?
Yup. You've stumbled upon something: we have 2 variations of code that produce bundle2 data. We have bundle2._addpartsfromopts() and exchange.getbundlechunks(). There is redundancy between the two. For example, creation of the changegroup part.
I would *very* much like to see this code unified. Probably in bundle2.py. What makes it difficult to unify is that each implementation is determining *what data should I generate* via different mechanisms. bundle2.py is using a dict of [content] options. exchange.py is using bundle2 capabilities, which come from the client.
If you squint hard enough, these are both almost the same thing. I would like to think that we could normalize b2caps and content options down to a single data structure that described what to generate and we could pass that into a common *generate bundle2 content* function. I /think/ we want to unify on content options. But I'm not sure.
Things are a bit more difficult than they should be because bundle2 is both used for data at rest and in flight. It represents both static data and the request/results of an RPC call over the wire protocol. e.g. the check:*, error:*, and reply:* parts don't make a lot of sense for local-only bundle2 bundles. Those are there mainly to facilitate wire protocol features. So any unified *create a bundle* or *apply a bundle* functionality need to account for the fact that there are special bundle2 parts and functionality that are unique to the wire protocol.
Anyway, I'd fix the immediate concern of having to import exchange by moving the code for creating this bundle2 part into bundle2.py and having the part generator in exchange call into it.