vote up 1 vote down star

I currently have a java library in subversion under package:

com.company.product.foo.*

Unfortunately, I have to refactor this into:

com.othercompany.bar.*

That'd be fine as a one-shot. But this has to be performed only on a specific branch. The problem is then to merge changes from trunk to the branch with totally different names.

The only solution I see would be to create a patch file, run some search & replace and then apply it on the branch.

Is there any better option ?

flag
Sounds strange is com.company.[...] maybe opensource code or why would you have to ship the code along? – jitter Jun 30 at 19:28
Do you need to alter the source code or the binaries? If you only need to do it for the binaries, you could use jarjar as a part of the build process to generate binaries with the new package. Or perhaps use post-commit hooks to keep a "mirror" of the branch in a separate repository, patching changes for each commit. Probably not very clean. – alex Jun 30 at 19:32

3 Answers

vote up 2 vote down

The first most obvious solution is to not use either company name as the package, but rather a trademarked name, or a neutral domain name that would be used going forward.

If that isn't possible (as in the customer doesn't want the two code bases to be seen as connected) the next most obvious solution is to use a source control system that is more friendly to the concept. Git might have better options, or perforce.

If you have to stick with subversion, then I would have it in source control under a neutral package name and then have the build process that checks out the code, moves it, renames the packages, and compiles, once for each company. Or If your IDE can understand it use a Java pre-processor.

Of course, that last one only works if both customers stay on the same base, but if not then the customer would have its own branch, and the build process could copy the code only as appropriate for the correct branch.

link|flag
vote up 0 vote down

I can't see any really good solutions, but would it be an option to just create subclasses under the new package name?

Then the patches could be applied to the super classes, and the sub classes would never actually contain anything.

link|flag
Interesting idea but for legal reasons, we can not leave the original package name anywhere. This solution would require us to ship the original code along with the "wrappers". – Eric Darchis Jun 30 at 19:15
vote up 0 vote down

A good IDE with refactoring capability will be able to handle this in an instant. Once you make the change, commit it to Subversion. One of its strengths is that it treats directories and files the same way, so you can keep the history as you rename packages.

Sounds like you'd want to create a tag for the original; check out and refactor the trunk; commit the changes. Voila - old and new, with the refactored packages on the trunk where they belong.

Perhaps I'm misunderstanding your question, but I don't think you should make the change directly inside Subversion. Change the code and let Subversion do its job.

link|flag
Except he wants to be able to merge changes between the two branches, and the different packages would be flagged as changes on merging, so would be overwritten. – Mike Cooper Jun 30 at 23:01
I'm assuming that the tagged version will not be modified once it's put in place, and all future changes will be made on the trunk only. – duffymo Jun 30 at 23:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.