views:

1405

answers:

25

I use MyGeneration along with nHibernate to create the basic POCO objects and XML mapping files. I have heard some people say they think code generators are not a good idea. What is the current best thinking? Is it just that code generation is bad when it generates thousands of lines of not understandable code?

+5  A: 

My stance is that code generators are not bad, but MANY uses of them are.

If you are using a code generator for time savings that writes good code, then great, but often times it is not optimized, or adds a lot of overhead, in those cases I think it is bad.

Mitchel Sellers
A: 

In certain (not many) cases they are useful. Such as if you want to generate classes based on lookup-type data in the database tables.

Kon
A: 

Code generation is bad when it makes programming more difficult (IE, poorly generated code, or a maintenance nightmare), but they are good when they make programming more efficient.

They probably don't always generate optimal code, but depending on your need, you might decide that developer manhours saved make up for a few minor issues.

All that said, my biggest gripe with ORM code generators is that maintenance the generated code can be a PITA if the schema changes.

FlySwat
A: 

Code generators are not bad, but sometimes they are used in situations when another solution exists (ie, instantiating a million objects when an array of objects would have been more suitable and accomplished in a few lines of code).

The other situation is when they are used incorrectly, or coded badly. Too many people swear off code generators because they've had bad experiences due to bugs, or their misunderstanding of how to correctly configure it.

But in and of themselves, code generators are not bad.

Adam Davis
A: 

They are like any other tool. Some give beter results than others, but it is up to the user to know when to use them or not. A hammer is a terrible tool if you are trying to screw in a screw.

EBGreen
A: 

This is one of those highly contentious issues. Personally, I think code generators are really bad due to the unoptimized crap code most of them put out.

However, the question is really one that only you can answer. In a lot of organizations, development time is more important than project execution speed or even maintainability.

Chris Lively
A: 

We use code generators for generating data entity classes, database objects (like triggers, stored procs), service proxies etc. Anywhere you see lot of repititive code following a pattern and lot of manual work involved, code generators can help. But, you should not use it too much to the extend that maintainability is a pain. Some issues also arise if you want to regenerate them.

Tools like Visual Studio, Codesmith have their own templates for most of the common tasks and make this process easier. But, it is easy to roll out on your own.

Gulzar
A: 

It can really become an issue with maintainability when you have to come back and cant understand what is going on in the code. Therefore many times you have to weigh how important it is to get the project done fast compared to easy maintainability

maintainability <> easy or fast coding process

jmein
A: 

I use My Generation with Entity Spaces and I don't have any issues with it. If I have a schema change I just regenerate the classes and it all works out just fine.

Aaron Smith
+10  A: 

The biggest problem I've had with code generators is during maintenance. If you modify the generated code and then make a change to your schema or template and try to regenerate you can have problems.

One problem is if the tool doesn't allow you to protect changes you've made to the modified code then your changes will be overwritten.

Another problem I've seen, particularly with code generators in RSA for web services, if you change the generated code too much the generator will complain that there is a mismatch and refuse to regenerate the code. This can happen for something as simple as changing the type of a variable. Then you are stuck generating the code to a different project and merging the results back into your original code.

DMKing
Excellent answer, I whole heartedly agree. It is those cases where you want to slightly modify the generated code or keep it in sync with the thing it is being generated from that really make it a pain.
smaclell
Solution: don't edit the output. Don't check it into source control. Generate it every time you build. You wouldn't edit the output of yacc, would you?
bk1e
A: 

They serve as a crutch that can disable your ability to maintain the program long-term.

Paul Nathan
+2  A: 

Code generation might cause you some grief if you like to mix behaviour into your classes. An equally productive alternative might be attributes/annotations and runtime reflection.

Cristian Libardo
A: 

The first C++ compilers were code generators that spit out C code (CFront).

I'm not sure if this is an argument for or against code generators.

Michael Burr
+1  A: 

If its a mainframe cobol code generator that Fran Tarkenton is trying to sell you then absolutely yes!

kloucks
Holy crap! I never heard of Tarkenton Software until today. I thought retired sports figures always went into car dealerships and restaurants.
Michael Burr
+1  A: 

Compilers are code generators, so they are not inherently bad unless you only like to program in raw machine code.

I believe however that code generators should always completely encapsulate the generated code. I.e. you should never have to modify the generated code by hand, any change should be done by modifying the input to the generator and regenerate the code.

JacquesB
A: 

I think that Mitchel has hit it on the head. Code generation has its place. There are some circumstances where it's more effective to have the computer do the work for you! It can give you the freedom to change your mind about the implementation of a particular component when the time cost of making the code changes is small. Of course, it is still probably important to understand the output the code generator, but not always. We had an example on a project we just finished where a number of C++ apps needed to communicate with a C# app over named pipes. It was better for us to use small, simple, files that defined the messages and have all the classes and code generated for each side of the transaction. When a programmer was working on problem X, the last thing they needed was to worry about the implentation details of the messages and the inevitable cache hit that would entail.

Byron Ross
+19  A: 

Code generated by a code-generator should not (as a generalisation) be used in a situation where it is subsequently edited by human intervention. Some systems such the wizards on various incarnations of Visual C++ generated code that the programmer was then expected to edit by hand. This was not popular as it required developers to pick apart the generated code, understand it and make modifications. It also meant that the generation process was one shot.

Generated code should live in separate files from other code in the system and only be generated from the generator. The generated code code should be clearly marked as such to indicate that people shouldn't modify it. I have had occasion to do quite a few code-generation systems of one sort or another and All of the code so generated has something like this in the preamble:

-- =============================================================
-- === Foobar Module ===========================================
-- =============================================================
--
--         === THIS IS GENERATED CODE.  DO NOT EDIT. ===
--
-- =============================================================

Code Generation in Action is quite a good book on the subject.

ConcernedOfTunbridgeWells
*Exactly* what I was planning to post... Never hand-edit a generated file, and I put the notice at the top, too :D
KeyserSoze
Complete agreement. Generated code is HORRID unless it can be 100% black-boxed and used only from outside. GUI generators are pretty much the worst-- just having a "Do not edit this section" in your genned file is NOT enough.
Bill K
+1  A: 

I've written a few code generators before - and to be honest they saved my butt more than once!

Once you have a clearly defined object - collection - user control design, you can use a code generator to build the basics for you, allowing your time as a developer to be used more effectively in building the complex stuff, after all, who really wants to write 300+ public property declarations and variable instatiations? I'd rather get stuck into the business logic than all the mindless repetitive tasks.

Mauro
A: 

This is a workflow question. ASP.NET is a code generator. The XAML parsing engine actually generates C# before it gets converted to MSIL. When a code generator becomes an external product like CodeSmith that is isolated from your development workflow, special care must be taken to keep your project in sync. For example, if the generated code is ORM output, and you make a change to the database schema, you will either have to either completely abandon the code generator or else take advantage of C#'s capacity to work with partial classes (which let you add members and functionality to an existing class without inheriting it).

I personally dislike the isolated / Alt-Tab nature of generator workflows; if the code generator is not part of my IDE then I feel like it's a kludge. Some code generators, such as Entity Spaces 2009 (not yet released), are more integrated than previous generations of generators.

I think the panacea to the purpose of code generators can be enjoyed in precompilation routines. C# and other .NET languages lack this, although ASP.NET enjoys it and that's why, say, SubSonic works so well for ASP.NET but not much else. SubSonic generates C# code at build-time just before the normal ASP.NET compilation kicks in.

Ask your tools vendor (i.e. Microsoft) to support pre-build routines more thoroughly, so that code generators can be integrated into the workflow of your solutions using metadata, rather than manually managed as externally outputted code files that have to be maintained in isolation.

Jon

stimpy77
+7  A: 

Code generators can be a boon for productivity, but there are a few things to look for:

Let you work the way you want to work.

If you have to bend your non-generated code to fit around the generated code, then you should probably choose a different approach.

Run as part of your regular build.

The output should be generated to an intermediates directory, and not be checked in to source control. The input must be checked in to source control, however.

No install

Ideally, you check the tool in to source control, too. Making people install things when preparing a new build machine is bad news. For example, if you branch, you want to be able to version the tools with the code.

If you must, make a single script that will take a clean machine with a copy of the source tree, and configure the machine as required. Fully automated, please.

No editing output

You shouldn't have to edit the output. If the output isn't useful enough as-is, then the tool isn't working for you.

Also, the output should clearly state that it is a generated file & should not be edited.

Readable output

The output should be written & formatted well. You want to be able to open the output & read it without a lot of trouble.

#line

Many languages support something like a #line directive, which lets you map the contents of the output back to the input, for example when producing compiler error messages or when stepping in the debugger. This can be useful, but it can also be annoying unless done really well, so it's not a requirement.

Jay Bazuzi
I think the "Code Generators" section of "The Pragmatic Programmer: From Journeyman to Master" had a similar take on the subject. My own experiences definitely back up all of your points. "I checked the generated code into source control" is right up there with "I shot the albatross".
bk1e
+14  A: 

Code generators are great, bad code is bad.

Most of the other responses on this page are along the lines of "No, because often the generated code is not very good."

This is a poor answer because:

1) Generators are tool like anything else - if you misuse them, dont blame the tool.

2) Developers tend to pride themselves on their ability to write great code one time, but you dont use code generators for one off projects.

We use a Code Generation system for persistence in all our Java projects and have thousands of generated classes in production.

As a manager I love them because:

1) Reliability: There are no significant remaining bugs in that code. It has been so exhaustively tested and refined over the years than when debugging I never worry about the persistence layer.

2) Standardisation: Every developers code is identical in this respect so there is much less for a guy to learn when picking up a new project from a coworker.

3) Evolution: If we find a better way to do things we can update the templates and update 1000's of classes quickly and consistently.

4) Revolution: If we switch to a different persistence system in the future then the fact that every single persistent class has an exactly identical API makes my job far easier.

5) Productivity: It is just a few clicks to build a persistent object system from metadata - this saves thousands of boring developer hours.

Code generation is like using a compiler - on an individual case basis you might be able to write better optimised assembly language, but over large numbers of projects you would rather have the compiler do it for you right?

We employ a simple trick to ensure that classes can always be regenerated without losing customisations: every generated class is abstract. Then the developer extends it with a concrete class, adds the custom business logic and overrides any base class methods he wants to differ from the standard. If there is a change in metadata he can regenerate the abstract class at any time, and if the new model breaks his concrete class the compiler will let him know.

Ewan Makepeace
+1  A: 

The mistake many people make when using code generation is to edit the generated code. If you keep in mind that if you feel like you need to edit the code, you actually need to be editing the code generation tool it's a boon to productivity. If you are constantly fighting the code that gets generated it's going to end up costing productivity.

The best code generators I've found are those that allow you to edit the templates that generate the code. I really like Codesmith for this reason, because it's template-based and the templates are easily editable. When you find there is a deficiency in the code that gets generated, you just edit the template and regenerate your code and you are forever good after that.

The other thing that I've found is that a lot of code generators aren't super easy to use with a source control system. The way we've gotten around this is to check in the templates rather than the code and the only thing we check into source control that is generated is a compiled version of the generated code (DLL files, mostly). This saves you a lot of grief because you only have to check in a few DLLs rather than possibly hundreds of generated files.

Anderson Imes
A: 

The best application of a code generator is when the entire project is a model, and all the project's source code is generated from that model. I am not talking UML and related crap. In this case, the project model also contains custom code.

Then the only thing developers have to care about is the model. A simple architectural change may result in instant modification of thousands of source code lines. But everything remains in sync.

This is IMHO the best approach. Sound utopic? At least I know it's not ;) The near future will tell.

Rui Curado
A: 

In a recent project we built our own code generator. We generated all the data base stuff, and all the base code for our view and view controller classes. Although the generator took several months to build (mostly because this was the first time we had done this, and we had a couple of false starts) it paid for itself the first time we ran it and generated the basic framework for the whole app in about ten minutes. This was all in Java, but Ruby makes an excellent code-writing language particularly for small, one-off type projects. The best thing was the consistency of the code and the project organization. In addition you kind of have to think the basic framework out ahead of time, which is always good.

A: 

Our current project makes heavy use of a code generator. That means I've seen both the "obvious" benefits of generating code for the first time - no coder error, no typos, better adherence to a standard coding style - and, after a few months in maintenance mode, the unexpected downsides. Our code generator did, indeed, improve our codebase quality initially. We made sure that it was fully automated and integrated with our automated builds. However, I would say that:

(1) A code generator can be a crutch. We have several massive, ugly blobs of tough-to-maintain code in our system now, because at one point in the past it was easier to add twenty new classes to our code generation XML file, than it was to do proper analysis and class refactoring.

(2) Exceptions to the rule kill you. We use the code generator to create several hundred Screen and Business Object classes. Initially, we enforced a standard on what methods could appear in a class, but like all standards, we started making exceptions. Now, our code generation XML file is a massive monster, filled with special-case snippets of Java code that are inserted into select classes. It's nearly impossible to parse or understand.

(3) Since so much of our code is generated, using values from a database, it's proven difficult for developers to maintain a consistent code base on their individual workstations (since there can be multiple versions of the database). Debugging and tracing through the software is a lot harder, and newbies to the team take much longer to figure out the "flow" of the code, because of the extra abstraction and implicit relationships between classes. IDE's cannot pick up relationships between two classes that communicate via a code-generated class.

That's probably enough for now. I think Code Generators are great as part of a developer's individual toolkit; a set of scripts that write out your boilerplate code make starting a project a lot easier. But Code Generators do not make maintenance problems go away.

Peter B