Topics related to the generation of code as the output of an application, instead of directly writing code by a programmer.

learn more… | top users | synonyms (1)

146
votes
26answers
21k views

Useful Eclipse Java Code Templates

You can create various Java code templates in Eclipse via the Window->Preferences->Java -> Editor -> Templates e.g. sysout is expanded to: ...
42
votes
28answers
2k views

Should I store generated code in source control

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 ...
39
votes
13answers
7k views

A Java API to generate Java source files

I'm looking for a framework to generate Java source files. Something like the following API: X clazz = Something.createClass("package name", "class name"); clazz.addSuperInterface("interface name"); ...
35
votes
14answers
28k views

What is the best way to auto-generate INSERT statements for a SQL Server table?

We are writing a new application, and while testing, we will need a bunch of dummy data. I've added that data by using MS Access to dump excel files into the relevant tables. Every so often, we want ...
27
votes
6answers
10k views

Comparison of xsd codegenerators (C#)

I'm doing some research in code generation from xsd schema files. My requirements: Must generate C# 2.0 code (or above), using generic collections where needed. Must generate comments from the xsd ...
25
votes
20answers
4k views

Do you still use UML? How? What for?

Few years back everybody in our shop was crazy with UML. Now everybody seems to have cooled off. I am curious if there is still widespread use of UML in software projects. If so, is this usage ...
24
votes
9answers
965 views

What's the use of metaprogramming?

I've read: Wikipedia Code Generation vs. Metaprogramming The art of Metaprogramming Metaprogramming at c2.com and I confess some confusion at the purpose behind metaprogramming/code generation. ...
23
votes
1answer
326 views

Can not generate source code with SBT 0.11 from “Full Configuration”

Based on sbt 0.11.0 documentation available ("Common Tasks" wiki page and others) and after seeing how this is done in Scalaz SBT build and in Scalate SBT build I can't figure out why my simple ...
23
votes
10answers
15k views

How can I generate database tables from C# classes?

Does anyone know a way to auto-generate database tables for a given class? I'm not looking for an entire persistence layer - I already have a data access solution I'm using, but I suddenly have to ...
22
votes
20answers
2k views

Is Code Generation a Bad Thing?

This is a subjective question. Recently I have been trying to learn NHibernate. The problem with it is at least 2 fold: mapping xml file that needs to be coded by hand Entity Class that needs ...
20
votes
7answers
8k views

Why generate long serialVersionUID instead of a simple 1L?

When class implements Serializable in Eclipse, I have two options: add default serialVersionUID(1L) or generated serialVersionUID(3567653491060394677L). I think that first one is cooler, but many ...
19
votes
2answers
1k views

Is Pex (Test generation) really usefull tool?

Yes, it is possible to generate tests on boundary values for functions like "Sum" or "Divide". Pex is a good tool here. But more often we create tests on business behaviour. Let's consider example ...
18
votes
2answers
431 views

Testing a Code-Generator Optimization

I have written a low-level optimization for the LLVM code-generator backend. Basically, the optimization will reorder assembly instructions at the basic block level to allow a later (existing) ...
18
votes
15answers
923 views

Why should I use code generators

I have encountered this topic lately and couldn't understand why they are needed. Can you explain why I should use them in my projects and how they can ease my life. Examples will be great, and ...
18
votes
24answers
2k views

Do you create your own code generators?

The Pragmatic Programmer advocates the use of code generators. Do you create code generators on your projects? If yes, what do you use them for?
17
votes
1answer
767 views

How does C— compare to LLVM?

After learning a bit of how LLVM work I'm really excited about how portable low-level code can be generated and how modular this 'thing' is built. But I discovered today the existence of C-- that ...
16
votes
5answers
4k views

Generate POCO classes in different project to the project with Entity Framework model

I'm trying to use the Repository Pattern with EF4 using VS2010. To this end I am using POCO code generation by right clicking on the entity model designer and clicking Add code generation item. I ...
16
votes
26answers
2k views

Are code generators bad?

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 ...
16
votes
5answers
787 views

What are the best resources for learning CIL (MSIL)

I'm an expert C# 3 / .NET 3.5 programmer looking to start doing some runtime codegen using System.Reflection.Emit.DynamicMethod. I'd love to move up to the next level by becoming intimately ...
15
votes
6answers
960 views

Dynamically create a class in C#

I have a class which looks like this public class Field { public string FieldName; public string FieldType; } Based on an object List<Field> with values {"EmployeeID","int"}, ...
15
votes
5answers
7k views

'CompanyName.Foo' is a 'namespace' but is used like a 'type'

Restatement of the question I'm resurrecting this question because I just ran into this error again today, and I'm still utterly confused why the C# compiler bothers to check for collisions between ...
14
votes
4answers
3k views

Is it possible to use Razor View Engine outside asp.net

If I look at the Razor View Engine, then I see a very nice and concise syntax that is not particularly tied to generating html. So I wonder, how easy would it be to use the engine outside asp.net in ...
14
votes
7answers
881 views

Generate java code in Eclipse?

Does anyone know what approach one can take to automatically generate Java source code, from for example an xml or json file, in eclipse? One great example of what I am thinking of doing is what ...
14
votes
4answers
2k views

How to output namespace in T4 templates?

I have a T4 template for a class set up with TextTemplatingFileGenerator Custom Tool in Visual Studio: <#@ template language="C#v3.5" hostspecific="True" debug="True" #> <# var className = ...
14
votes
16answers
3k views

Seriously, should I write bad PHP code?

I'm doing some PHP work recently, and in all the code I've seen, people tend to use few methods. (They also tend to use few variables, but that's another issue.) I was wondering why this is, and I ...
14
votes
27answers
2k views

Do you generate code? If so, what do you use and what do you generate?

I've used MyGeneration, and I love it for generating code that uses Data Access Applicaiton Blocks from Microsoft for my Data Access Layer, and keeping my database concepts in sync with the domain I ...
13
votes
2answers
883 views

What are the limits to code generation from XML Schema in C#?

I've seen several questions regarding problems with generating classes from XML Schema using xsd.exe, along with suggestions for how to pre-process the schema (often using XSLT) to resolve some of the ...
13
votes
1answer
646 views

Is there Python Clang wrapper in the vein of pygccxml which wraps GCC-XML?

For a long time now I've been using pygccxml to parse and introspect my C++ source code: it helps me to do some clever code-generation during our build process. Recently I've read a lot about the ...
13
votes
7answers
641 views

For what purposes have YOU used T4?

T4 has existed for several years in Visual Studio, but doesn't get a lot of attention. However, for those that know it, there seems to be some very creative and useful purposes. I am researching ...
13
votes
6answers
3k views

How can I add my attributes to Code-Generated Linq2Sql classes properties?

Hi I would like to add attributes to Linq 2 Sql classes properties. Such as this Column is browsable in the UI or ReadOnly in the UI and so far. I've thought about using templates, anybody knows how ...
13
votes
6answers
1k views

How can I automatically add some skeleton code when creating a new file with vim

When creating a new file with vim, I would like to automatically add some skeleton code. For example, when creating a new xml file, I would like to add the first line: <?xml version="1.0"?> ...
12
votes
3answers
242 views

Delphi 2010 - property wizard or something similar, to avoid manual coding getters / setters

Is there any built in or external tool (wizard) to easily add class member (published field) with getters / setters? adding each field requires me to write quite lot of code. Let's assume I need to ...
12
votes
4answers
1k views

How to emit and execute Java bytecode at runtime?

I am writing an interpreter in Java for a domain-specific language with some scripting capabilities. I have already implemented a parser and now need to do a back end. To this end I am considering ...
12
votes
3answers
1k views

Reflection.Emit vs CodeDOM

What are some pros/cons for using the Reflection.Emit library versus CodeDOM for dynamically generating code at runtime? I am trying to generate some (relatively complicated) dynamic classes in a ...
12
votes
5answers
3k views

Creating T4 templates at runtime (build-time)?

We are building an inhouse application which needs to generate HTML files for upload into eBay listings. We are looking to use a template engine to generate the HTML files based on database and static ...
12
votes
34answers
1k views

Example of code generator you made from scratch?

What are some examples of code generators you have used? I think it's a cool idea, but I have trouble thinking of things they can do besides make a class based on an object's attributes/database ...
12
votes
1answer
1k views

Naming Conventions For Partial Class Files

I'm generating the bulk of my ASP.NET MVC scaffolding code. All generated files are partial classes which use standard naming conventions. For example, my employee controller file is named ...
12
votes
6answers
11k views

How do I execute ruby template files (ERB) without a web server from command line?

I need ERB (Ruby's templating system) for templating of non-HTML files. (Instead, I want to use it for source files such as .java, .cs, ...) How do I "execute" Ruby templates from command line?
12
votes
6answers
1k views

How can I get the correct text definition of a generic type using reflection?

I am working on code generation and ran into a snag with generics. Here is a "simplified" version of what is causing me issues. Dictionary<string, DateTime> dictionary = new ...
12
votes
10answers
7k views

Free NHibernate helper tools?

Are there any free tools to help simplify working with an NHibernate project in .NET 3.5? Primarily, I'm looking for some kind of code and config file generator to automate some of the more tedious ...
11
votes
4answers
391 views

Avoiding gcc function prologue overhead?

I've lately encountered a lot of functions where gcc generates really bad code on x86. They all fit a pattern of: if (some_condition) { /* do something really simple and return */ } else { /* ...
11
votes
5answers
5k views

function passed as template argument

I'm looking for the rules involving passing C++ templates functions as arguments. This is supported by C++ as shown by an example here: #include <iostream> void add1(int &v) { v+=1; } ...
11
votes
5answers
4k views

Is there a key combination in Xcode to implement a Protocol?

In Visual Studio if I define a class to implement an interface e.g. class MyObject : ISerializable {} I am able to right click on ISerializable, select "Implement Interface" from the context menu ...
11
votes
8answers
22k views

How can I create database tables from XSD files?

I have a set of XSDs from which I generate data access classes, stored procedures and more. What I don't have is a way to generate database table from these - is there a tool that will generate the ...
10
votes
3answers
133 views

How can i get enum to contain a dash (-)?

I'm generating business objects from this schema using Enterprise Architect. The schema has the following enumeration specification: <xs:simpleType name="PackageMedium"> <xs:restriction ...
10
votes
6answers
139 views

How to implement large number of complex wrappers for legacy API/framework (C++ Macros vs. C++ Templates vs. Code generator)?

We work with very old legacy system implemented in C++ with VC6 compiler. Now we are in the process of refactoring the code. We also switched to VC9 compiler. We use an external proprietary ...
10
votes
3answers
215 views

how to update Java constructors,equals,hash,etc. in eclipse?

I wanted to know if anyone knows about a good way to update,constructors, equals,hash,to string, etc. generated by eclipse in Java. Lot's of time, after I use the auto-generated code-stubs, I add a ...
10
votes
2answers
195 views

IoC/DI in the face of winforms and other generated code

When using dependency injection (DI) and inversion of control (IoC) objects will typically have a constructor that accepts the set of dependencies required for the object to function properly. For ...
10
votes
5answers
5k views

How do I generate a constructor from class fields using Visual Studio (and/or ReSharper)?

I've gotten accustomed to many of the Java IDEs (Eclipse, Netbeans, IntelliJ) providing you with a command to generate a default constructor for a class based on the fields in the class. For ...
10
votes
4answers
2k views

How to hide files generated by custom tool in Visual Studio

I would like the files generated by my custom tool to be hidden, but I cannot find any documentation on how this is done. An example of what I'm looking for is WPF code behind files. These files are ...

1 2 3 4 5 27