vote up 3 vote down star
2

Every time I make a project I develop several generic routines/modules/libraries that I expect I'll be using with other projects.

Due to the speed of development I don't spend a lot of time making these modules perfect - just good enough for this project, and well enough documented and isolatable that I can easily add them to another project.

So far so good.

Now when I use them in another project inevitably I improve them - either adding new features/functions, fixing bugs, making them more general, etc.

At that point I have several problems:

  • I need to maintain the changes in the module for the code I'm working on
  • I need to maintain those same changes in a central "module" repository
  • I need to make sure that the updated modules are available for, but not automatically used in older projects, or sometimes even existing projects I'm already working on.

How do you manage this? How are these problems different when you have teams working on various modules in different projects?

-Adam

flag

4 Answers

vote up 4 vote down check

If you're using Subversion for all your projects, you can simply use svn:externals: this allows one repository to reference another repository, optionally fixed at a particular revision. For example,

svn://svn/shared
svn://svn/project1
  |- dir1
  |- dir2
  \- svn:externals "shared -r 3 svn://svn/shared"
svn://svn/project2
  |- dir3
  \- svn:externals "shared -r 5 svn://svn/shared"

Commit your changes to svn://svn/shared, and modify the svn:externals property in the individual projects when you're ready.

Otherwise, using other VCS, you might simply keep a bunch of tags on shared, one for each project using shared, pointing to the version they use. Advance each tag to later versions when ready. This requires manually updating each project's copy of shared, though (one thing which makes svn:externals nice is that it happens automatically).

If you're forking/branching shared for each individual project... well, that can work, but it takes manpower to maintain and merge changes.

[Edit]

Further references:

See External Definitions in the svn book for a tutorial and more details on svn:externals, and git-submodule tutorial for a similar feature in the DVCS git.

link|flag
Do any DVCS (Mercurial, git, etc) support this technique? This sounds like the perfect solution (ie, the VCS knows about and understands inter-project references) – Adam Davis Oct 7 '08 at 15:52
Git has git-submodule for similar functionality. No other DVCS supports this, as far as I am familiar with. – ephemient Oct 7 '08 at 15:56
Excellent! Thanks! Here's a quick tutorial on git-submodule: git.or.cz/gitwiki/GitSubmoduleTutorial Please consider updating your answer with the git info as well. – Adam Davis Oct 7 '08 at 16:05
Always use the "fixed at a particular version" feature of svn externals. Otherwise, You will break revision control, because You will get the current version of the shared resource even for very old revisions. This may not even compile anymore! – Black Oct 8 '08 at 10:42
vote up 0 vote down

Use version control, of course, as PersistenceOfVision said, and also keep a nightly build to make sure you don't break old projects.

link|flag
Once a project is delivered to a customer it has to remain static - we can't change or upgrade the modules. I don't want to split the modules off, though, and have to re-integrate them if I do want to upgrade. Sounds like Subversion allows one to choose a release for a project reference, though... – Adam Davis Oct 7 '08 at 15:55
vote up 1 vote down

Take your pick of Software Version Control packages...

For Example:
SVN + TortoiseSVN is our current solution. (Free)
Some prefer Visual Source Safe. (Not Free)

link|flag
vote up 1 vote down

If the code is generic enough that you're using it in multiple projects, is it possible that you're reinventing the wheel? If, instead, you standardise on existing libraries, you'll have code that has already been well-tested and optimised, and you won't have anything to maintain.

link|flag
It would be great if code for my problems already existed. In embedded systems development, though, that's often not the case, or the licenses are more expensive/restrictive than developing internally. – Adam Davis Oct 7 '08 at 15:51

Your Answer

Get an OpenID
or

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