Re: [PATCH v2] builtin-branch: improve output when displaying remote branches
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:46:10
martin f krafft [off-list ref] writes:
also sprach Junio C Hamano [off-list ref] [2009.02.13.0735 +0100]:quoted
Once you start making each case arm do more things, it might make sense to rewrite the above unrolled loop into something like this:[...]quoted
} ref_kind[] = { { REF_LOCAL_BRANCH, "refs/heads/", 11 }, { REF_REMOTE_BRANCH, "refs/remotes/", 13 }, };[...]quoted
Then we can later add new elements more easily, e.g. { REF_TOPGIT_BASE, "refs/top-base/", 14 },As soon as TopGit is integrated into Git proper, this could make sense. However, I don't know when this will happen. In the mean time, hardcoding extensions like you suggest might not scale too well. Wouldn't it make more sense to provide an interface that allowed tools to register their own namespaces, and handle those appropriately within Git?
The comment applies to the way how ref_kind[] array is initialized, and yes it would be nicer to make it extensible once the code that uses the array is in palce. However, the codepath that uses the array once it is initialized will not have to change, if you add your interface to register namespaces. That is why I suggested the code restructuring first *with* the known two hierarchies we know we would want to handle *now*.