vote up 17 vote down star
6

This is a debate I'm taking a part in. I would like to get more opinions and points of view.

We have some classes that are generated in build time to handle DB operations (in This specific case, with SubSonic, but I don't think it is very important for the question). The generation is set as a pre-build step in Visual Studio. So every time a developer (or the official build process) runs a build, these classes are generated, and then compiled into the project.

Now some people are claiming, that having these classes saved in source control could cause confusion, in case the code you get, doesn't match what would have been generated in your own environment.

I would like to have a way to trace back the history of the code, even if it is usually treated as a black box.

Any arguments or counter arguments?


UPDATE: I asked this question since I really believed there is one definitive answer. Looking at all the responses, I could say with high level of certainty, that there is no such answer. The decision should be made based on more than one parameter. Reading the answers below could provide a very good guideline to the types of questions you should be asking yourself when having to decide on this issue.

I won't select an accepted answer at this point for the reasons mentioned above.

flag

You may be interested in a similar question: stackoverflow.com/questions/739391/… – mouviciel May 30 at 19:31

24 Answers

vote up 19 vote down

Put it in source code control. The advantage of having the history of everything you write available for future developers outweighs the minor pain of occasionally rebuilding after a sync.

link|flag
2  
Thats not an advantage - since the code that created it is checked in you already have 'everything you write' available for future developers. – Shane C. Mason May 21 at 17:07
2  
@Shane, i strongly disagree. Having the code that created it does not equal having the code. Any extra steps that must be included for generation is extra annoyance when tracking down a bug. It's much simpler to go through the history of the code than it is to check out N versions of the file and re-generate N versions of the generated code. – JaredPar May 21 at 17:09
6  
It is sometimes beneficial to have the generated files in source control. For example if you upgrade a component, in this case SubSonic, you can easily detect changes in the generated source. This could be useful in tracking down bugs and issues. I wouldn't add all generated code to source control. Sometimes it is very useful. Most source control systems will let you do a diff to see if the files have really changed although it maybe more of a manual process if you have to manually revert the files even though the only change is the timestamp. – Ryan May 21 at 17:21
2  
By that logic you should also check in your compiled object files, libraries and executables. – Laurence Gonsalves May 22 at 0:23
2  
What kind of code generator are you using where "the original language is meaningless"? As for the point about keeping track of what versions of your tools you're using to build each version of the code, you already need to solve that problem for your entire toolchain. After all, how do you expect to backport a bug to an older version of your product unless you know what version of the compiler and linker you were using back then? A code generator is no different from your C++/Java/C# compiler. The fact that you might be able to read its output is immaterial: its input is the source. – Laurence Gonsalves May 22 at 19:50
show 28 more comments
vote up 0 vote down

I would argue for. If you're using a continuous integration process that checks out the code, modifies the build number, builds the software and then tests it, then it's simpler and easier to just have that code as part of your repository.

Additionally, it's part and parcel of every "snapshot" that you take of your software repository. If it's part of the software, then it should be part of the repository.

link|flag
4  
I love the drive by -1's. If you don't agree, don't vote it up - vote up the other answers. Save the downvotes for a wrong answer. This is a subjective question. – womp May 21 at 17:26
vote up 1 vote down

I agree with the other people, it can cause you a lot of problems. :-)

link|flag
Agreed - since that source code is really output from a generation process, there's really no point in storing it in source control. – marc_s May 21 at 16:58
1  
@mark_s What if you need to rollback to that version. One could argue that you cannot succesfully rollback unless you have the source as it was generated (i.e. regen source may not produce the exact same result). So I would prefer to have the source as it was generated for this reason. – JD May 21 at 17:02
that's true, but by the same reasoning, executables should also be saved. (which is necessary in some cases) – Jason S May 21 at 17:33
1  
JD: if you need to rollback to a version, you ought to have the original values you've generated your source from somewhere - so you should be able to re-generate your code without any problems. You need to store the SOURCE (whether it be an XML or whatever) inside your source control - NOT what gets generated from it! – marc_s May 21 at 18:30
vote up 16 vote down

Saving it in source control is more trouble than it's worth.

You have to do a commit every time you do a build for it to be any value.

Generally we leave generated code( idl, jaxb stuff, etc) outside source control where I work and it's never been a problem

link|flag
4  
I disagree with "you have to do a commit every time you build". This should cause no extra commit because the only thing that should affect the commit is a change to the code which hence changes the generated source. So in effect you have to commit the generated code only when you're already commiting the change to the source of the generated code. – JaredPar May 21 at 17:50
Agree with JaredPar. Also your code-generator may be an external tool, and if you update it, the generated code may change and therefore you may need to commit changes. But in this case I would really want to see the changes in source-control anyway. – van Aug 21 at 6:43
vote up 14 vote down

Every time I want to show changes to a source tree on my own personal repo, all the 'generated files' will show up as having changed and need comitting.

I would prefer to have a cleaner list of modifications that only include real updates that were performed, and not auto-generated changes.

Leave them out, and then after a build, add an 'ignore' on each of the generated files.

link|flag
2  
Also, on updates, you can get strange conflicts that the VCS will consider as needing resolution, but will actually resolve themselves the next time you build. Not to mention the clutter in the logs, which I consider even worse than the clutter in your local tree. – rmeador May 21 at 17:39
Where I'm at, they don't show up as 'having changed' unless they really have changed. If they were regenerated but still have the same content so the only thing different is file create/modified dates, the system thinks they haven't changed and everything is fine. – Joel Coehoorn May 21 at 21:54
+1 I only want to be responsible for what code I write, not some code that got generated by some toolkit that may have had issues at the time that now are impossible to duplicate (but someone could spend a lot of time trying.) – le dorfier May 22 at 0:18
I've seen autogenerating tools that update the timestamp every time they run. I curse them. – Kieveli May 27 at 12:35
vote up 10 vote down

I would say that you should avoid adding any generated code (or other artifacts) to source control. If the generated code is the same for the given input then you could just check out the versions you want to diff and generate the code for comparison.

link|flag
vote up 1 vote down

My preference is not to, but we do it anyway, and it's never caused a problem.

link|flag
vote up 9 vote down

I really don't think you should check them in.

Surely any change in the generated code is either going to be noise - changes between environments, or changes as a result of something else - e.g. a change in your DB. If your DB's creation scripts (or any other dependencies) are in source control then why do you need the generated scripts as well?

link|flag
vote up 4 vote down

The general rule is no, but if it takes time to generate the code (because of DB access, web services, etc.) then you might want to save a cached version in the source control and save everyone the pain.

Your tooling also need to be aware of this and handle checking-out from the source control when needed, too many tools decide to check out from the source control without any reason.
A good tool will use the cached version without touching it (nor modifying the time steps on the file).

Also you need to put big warning inside the generated code for people to not modify the file, a warning at the top is not enough, you have to repeat it every dozen lines.

link|flag
vote up 9 vote down

I call the DRY principle. If you already have the "source files" in the repository which are used to generate these code files at build time, there is no need to have the same code committed "twice".

Also, you might avert some problems this way if for example the code generation breaks someday.

link|flag
vote up 0 vote down

I would say that yes you want to put it under source control. From a configuration management standpoint EVERYTHING that is used to produce a software build needs to be controlled so that it can be recreated. I understand that generated code can easily be recreated, but an argument can be made that it is not the same since the date/timestamps will be different between the two builds. In some areas such as government, they require a lot of times this is what's done.

link|flag
Do you check in your object files (.o)? – keysersoze May 21 at 23:50
vote up 1 vote down

We don't store generated DB code either: since it is generated, you can get it at will at any given version from the source files. Storing it would be like storing bytecode or such.

Now, you need to ensure the code generator used at a given version is available! Newer versions can generate different code...

link|flag
vote up 5 vote down

Look at it this way: do you check your object files into source control? Generated source files are build artifacts just like object files, libraries and executables. They should be treated the same. Most would argue that you shouldn't be checking generated object files and executables into source control. The same arguments apply to generated source.

If you need to look at the historical version of a generated file you can sync to the historical version of its sources and rebuild.

Checking generated files of any sort into source control is analogous to database denormalization. There are occasionally reasons to do this (typically for performance), but this should be done only with great care as it becomes much harder to maintain correctness and consistency once the data is denormalized.

link|flag
vote up 1 vote down

In some projects I add generated code to source control, but it really depends. My basic guideline is if the generated code is an intrinsic part of the compiler then I won't add it. If the generated code is from an external tool, such as SubSonic in this case, then I would add if to source control. If you periodically upgrade the component then I want to know the changes in the generated source in case bugs or issues arise.

As far as generated code needing to be checked in, a worst case scenario is manually differencing the files and reverting the files if necessary. If you are using svn, you can add a pre-commit hook in svn to deny a commit if the file hasn't really changed.

link|flag
vote up 1 vote down

In general, generated code need not be stored in source control because the revision history of this code can be traced by the revision history of the code that generated it!

However, it sounds the OP is using the generated code as the data access layer of the application instead of manually writing one. In this case, I would change the build process, and commit the code to source control because it is a critical component of the runtime code. This also removes the dependency on the code generation tool from the build process in case the developers need to use different version of the tool for different branches.

It seems that the code only needs to be generated once instead of every build. When a developer needs to add/remove/change the way an object accesses the database, the code should be generated again, just like making manual modifications. This speeds up the build process, allows manual optimizations to be made to the data access layer, and history of the data access layer is retained in a simple manner.

link|flag
I disagree. If you make it a manual process, it will get broken, and no one will notice until it comes time to rerun it. If it's generated every day on your build servers (and every developers machine when the do a 'clean' build), you won't get surprised. – keysersoze May 21 at 23:56
If the data access layer code is checked into source control, there should be no surprises because people will be forced to update code. If someone happens to change the version of the code generation tool on the build machine and the developers have old versions on their development machine (different branch of code, perhaps), then there will be headaches. I'm suggesting that he removes the code generation step out of the build process, since they are not the maintainers of the code generator. – benson May 22 at 16:15
vote up 0 vote down

I would leave generated files out of a source tree, but put it in a separate build tree.

e.g. workflow is

  1. checkin/out/modify/merge source normally (w/o any generated files)
  2. At appropriate occasions, check out source tree into a clean build tree
  3. After a build, checkin all "important" files ("real" source files, executables + generated source file) that must be present for auditing/regulatory purposes. This gives you a history of all appropriate generated code+executables+whatever, at time increments that are related to releases / testing snapshots, etc. and decoupled from day-to-day development.

There's probably good ways in Subversion/Mercurial/Git/etc to tie the history of the real source files in both places together.

link|flag
vote up 1 vote down

It really depends. Ultimately, the goal is to be able to reproduce what you had if need be. If you are able to regenerate your binaries exactly, there is no need to store them. but you need to remember that in order to recreate your stuff you will probably need your exact configuration you did it with in the first place, and that not only means your source code, but also your build environment, your IDE, maybe even other libraries, generators or stuff, in the exact configuration (versions) you have used.

I have run into trouble in projects were we upgraded our build environment to newer versions or even to another vendors', where we were unable to recreate the exact binaries we had before. This is a real pain when the binaries to be deplyed depend on a kind of hash, especially in secured environment, and the recreated files somehow differ because of compiler upgrades or whatever.

So, would you store generated code: I would say no. The binaries or deliverables that are released, including the tools that you reproduced them with I would store. And then, there is no need to store them in source control, just make a good backup of those files.

link|flag
"that not only means your source code, but also your build environment, your IDE, maybe even other libraries, generators or stuff"\n That's all stuff I would check in. If you build your compiler from source on every developer machine as part of the same build as your apps (ie: you type 'make' once), check in the source. If you don't, then check in the binaries – keysersoze May 21 at 23:54
vote up 0 vote down

I (regretfully) wind up putting a lot of derived sources under source control because I work remotely with people who either can't be bothered to set up a proper build environment or who don't have the skills to set it up so that the derived sources are built exactly right. (And when it comes to Gnu autotools, I am one of those people myself! I can't work with three different systems each of which works with a different version of autotools—and only that version.)

This sort of difficulty probably applies more to part-time, volunteer, open-source projects than to paid projects where the person paying the bills can insist on a uniform build environment.

When you do this, you're basically committing to building the derived files only at one site, or only at properly configured sites. Your Makefiles (or whatever) should be set up to notice where they are running and should refuse to re-derive sources unless they know they are running at a safe build site.

link|flag
vote up 0 vote down

If it is part of the source code then it should be put in source control regardless of who or what generates it. You want your source control to reflect the current state of your system without having to regenerate it.

link|flag
"without having to regenerate it." so you check in compiled binaries? Do you also check in a version of the target platform as well? That strategy won't scale well. :( – dss539 May 22 at 20:10
And that gets me a down vote?? Of course you don't check in compiled binaries (unless they are from third party libraries) since they can be regenerated from your source code. I was talking about having to regenerate the generated code not the binaries. But hey, if you want to misinterpret what I'm saying then go right ahead... – mezoid May 23 at 4:14
This answer wasn't worth a downvote! At the very least, it seems sound to put generated code in SC (maybe in a clearly identified place) so that at the very least you can compare the hash of the code used to generate the object against the new code you're going to generate for a new build. Interesting how polarizing this question is. – rp May 30 at 19:25
vote up 1 vote down

No, for three reasons.

  1. Source code is everything necessary and sufficient to reproduce a snapshot of your application as of some current or previous point in time - nothing more and nothing less. Part of what this implies is that someone is responsible for everything checked in. Generally I'm happy to be responsible for the code I write, but not the code that's generated as a consequence of what I write.

  2. I don't want someone to be tempted to try to shortcut a build from primary sources by using intermediate code that may or may not be current (and more importantly that I don't want to accept responsibility for.) And't it's too tempting for some people to get caught up in a meaningless process about debugging conflicts in intermediate code based on partial builds.

  3. Once it's in source control, I accept responsibility for a. it being there, b. it being current, and c. it being reliably integratable with everything else in there. That includes removing it when I'm no longer using it. The less of that responsibility the better.

link|flag
vote up 0 vote down

Absolutely have the generated code in source control, for many reasons. I'm reiterating what a lot of people have already said, but some reasons I'd do it are

  1. With codefiles in source control, you'll potentially be able to compile the code without using your Visual Studio pre-build step.
  2. When you're doing a full comparison between two versions, it would be nice to know if the generated code changed between those two tags, without having to manually check it.
  3. If the code generator itself changes, then you'll want to make sure that the changes to the generated code changes appropriately. i.e. If your generator changes, but the output isn't supposed to change, then when you go to commit your code, there will be no differences between what was previously generated and what's in the generated code now.
link|flag
vote up 0 vote down

There is a special case where you want to check in your generated files: when you may need to build on systems where tools used to generate the other files aren't available. The classic example of this, and one I work with, is Lex and Yacc code. Because we develop a runtime system that has to build and run on a huge variety of platforms and architectures, we can only rely on target systems to have C and C++ compilers, not the tools necessary to generate the lexing/parsing code for our interface definition translator. Thus, when we change our grammars, we check in the generated code to parse it.

link|flag
vote up 0 vote down

arriving a bit late ... anyway ...

Would you put compiler's intermediate file into source version control ? In case of code generation, by definition the source code is the input of the generator while the generated code can be considered as intermediate files between the "real" source and the built application.

So I would say: don't put generated code under version control, but the generator and its input.

Concretely, I work with a code generator I wrote: I never had to maintain the generated source code under version control. I would even say that since the generator reached a certain maturity level, I didn't have to observe the contents of generated code although the input (for instance model description) changed.

link|flag
vote up 0 vote down check

Looks like there are very strong and convincing opinions on both sides. I would recommend reading all the top voted answers, and then deciding what arguments apply to your specific case.

link|flag

Your Answer

Get an OpenID
or

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