Code Templates and snippets: Difference between revisions

From OpenPetra Wiki
Jump to navigation Jump to search
(Created page with '== Introduction == We use Code templates for the code generation. This allows us to write common code with placeholders. It should be easy to read and maintain, and avoids writin…')
 
Line 11: Line 11:


=== Placeholders ===
=== Placeholders ===
A placeholder is always with curly brackets, with a hash sign (#) and the name in capital letters.
eg. this is a place holder: {#NAMESPACE}
Now in the code generator, we call <code>FTemplate.ReplacePlaceHolder("NAMESPACE", FCodeStorage.FNamespace);</code>.
You could also call <code>FTemplate.SetCodelet("NAMESPACE", FCodeStorage.FNamespace);</code>, it has the same effect, but ReplacePlaceHolder allows only one replacement, while SetCodelet overwrites previous assignments.
Alternatively, we can add several lines in a reserved place: eg.
    private void ShowData()
    {
        FPetraUtilsObject.DisableDataChangedEvent();
        {#SHOWDATA}
        [...]
    }
In the code generator, you will find the line:
FTemplate.AddToCodelet("SHOWDATA", "ShowDataManual();" + Environment.NewLine);
Note that all lines inserted into a place holder will have the same identation as the place holder had.
You can also clear a place holder, so that it will not appear in the result at all:
FTemplate.SetCodelet(String.Empty);


=== INCLUDE ===
=== INCLUDE ===


=== IFDEF/IFNDEF ===
=== IFDEF/IFNDEF ===

Revision as of 08:52, 26 April 2010

Introduction

We use Code templates for the code generation. This allows us to write common code with placeholders. It should be easy to read and maintain, and avoids writing code several times.

We use code templates for the Object Relational Mapping (ORM), ie. for the typed data tables and typed datasets. This code was previously generated with CodeDOM, but that got too complicated. The alternative would have been to have the source in strings in the generator code, but that is hard to read and to maintain.

We also use code templates for the Winforms generation, for the same reasons.

It might help to have a look at the template files, they are in csharp/ICT/PetraTools/Templates (on Git).

Concepts

Placeholders

A placeholder is always with curly brackets, with a hash sign (#) and the name in capital letters.

eg. this is a place holder: {#NAMESPACE}

Now in the code generator, we call FTemplate.ReplacePlaceHolder("NAMESPACE", FCodeStorage.FNamespace);. You could also call FTemplate.SetCodelet("NAMESPACE", FCodeStorage.FNamespace);, it has the same effect, but ReplacePlaceHolder allows only one replacement, while SetCodelet overwrites previous assignments.

Alternatively, we can add several lines in a reserved place: eg.

   private void ShowData()
   {
       FPetraUtilsObject.DisableDataChangedEvent();
       {#SHOWDATA}
       [...]
   }

In the code generator, you will find the line:

FTemplate.AddToCodelet("SHOWDATA", "ShowDataManual();" + Environment.NewLine);

Note that all lines inserted into a place holder will have the same identation as the place holder had.

You can also clear a place holder, so that it will not appear in the result at all:

FTemplate.SetCodelet(String.Empty);

INCLUDE

IFDEF/IFNDEF