Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
package org.litesoft.generator;

import java.util.*;

import org.litesoft.aokeyhole.objects.*;
import org.litesoft.aokeyhole.objects.attributes.*;
import org.litesoft.aokeyhole.objects.properties.*;
import org.litesoft.aokeyhole.objects.support.*;
import org.litesoft.bo.*;
import org.litesoft.bo.change.*;
import org.litesoft.codegen.*;
import org.litesoft.core.simpletypes.currency.*;
import org.litesoft.core.simpletypes.temporal.*;
import org.litesoft.util.*;

public abstract class AbstractTypeFileGenerator extends SourceCodeGenerator
{
    protected interface AttributeProxy
    {
        boolean isInjected();

        String getDerivedFromAttribute();

        String getName();

        String getColumnName();

        Mutability getMutability();

        boolean isSysSetOnly();

        String getNotes();

        boolean isVirtual();

        Class getSimpleDataType();

        String[] getValidOptions();

        BoAttribute.AttributeType getBoAttributeType();

        AttributeType getAttributeType();

        boolean isRequired();

        boolean isQueryView();

        PropertyManager getPropertyManager();

        String getToManyFullyQualifiedName();

        String getToManyBackReference();

        AttributeProxy getToManyBackReferenceAttributeProxy();

        String getToOneFullyQualifiedName();

        String getToOneBackReference();

        AttributeProxy getToOneBackReferenceAttributeProxy();
    }

    protected final ErrorSinc mErrorSinc;
    protected final ObjectRef mObjectRef, mParentObjectRef;
    protected final ObjectMetaData mObjectMetaData;
    protected final String mPackage, mObjectName, mClassName;
    protected final boolean mIsParent;

    public AbstractTypeFileGenerator( String pReportingType, ErrorSinc pErrorSinc, ObjectMetaData pObjectMetaData, ObjectRef pObjectRef, String pTypeExtension, ObjectRef pParentObjectRef, boolean pIsParent )
    {
        super( pReportingType, pObjectRef.getFullFolderPath() + "/" + pObjectMetaData.getName() + pTypeExtension + ".java" );
        mErrorSinc = pErrorSinc;
        mObjectRef = pObjectRef;
        mParentObjectRef = pParentObjectRef;
        mPackage = pObjectRef.getPackage();
        mClassName = (mObjectName = (mObjectMetaData = pObjectMetaData).getName()) + pTypeExtension;
        mIsParent = pIsParent;
        setOverwrite( mClassName.endsWith( "GO" ) );
    }

    public final SourceCodeGenerator generate()
    {
        addPackage( mPackage );

        LLaddImports();

        LLaddClassDefinition();

        LLaddClassBody();

        addClassEnd();

        return this;
    }

    protected String getExtends( String pNoParentClassPrefix )
    {
        if ( mParentObjectRef == null )
        {
            return pNoParentClassPrefix;
        }
        return removePackageIfPossible( mParentObjectRef.getFullyQualifiedName() );
    }

    protected String removePackageIfPossible( String pFullyQualifiedName )
    {
        int zDotAt = pFullyQualifiedName.lastIndexOf( '.' );
        if ( (zDotAt != -1) && mPackage.equals( pFullyQualifiedName.substring( 0, zDotAt ) ) )
        {
            pFullyQualifiedName = pFullyQualifiedName.substring( zDotAt + 1 );
        }
        return pFullyQualifiedName;
    }

    protected void LLaddImports()
    {
    }

    abstract protected void LLaddClassDefinition();

    protected void LLaddClassBody()
    {
    }

    abstract protected AttributeProxy[] getAttributes();

    protected static Mutability convertToMutability( AttributeMetaData pAttribute )
    {
        AttributeType zType = pAttribute.getAttributeSet().getType();
        if ( A_ID.TYPE.equals( zType ) )
        {
            return Mutability.AddOnly;
        }
        String zChangeable = pAttribute.getPropertyManager().get_String( PMD_Changeable.NAME, "" ).trim();
        if ( PMD_Changeable.ADD_ONLY.equals( zChangeable ) )
        {
            return Mutability.AddOnly;
        }
        if ( PMD_Changeable.READ_ONLY.equals( zChangeable ) )
        {
            return Mutability.RO;
        }
        return Mutability.RW;
    }

    protected BoAttribute.AttributeType getType( AttributeMetaData pAttribute )
    {
        AttributeType zAttributeType = pAttribute.getAttributeSet().getType();
        if ( zAttributeType.getFAT().isSimple() )
        {
            Class zTypeClass = zAttributeType.getSimpleDataType();
            if ( zTypeClass == null )
            {
                mErrorSinc.addError( "CurrentlyUnsupportedAttributeType", pAttribute.toString(), mObjectMetaData.toStringForError() );
            }
            else
            {
                String zType = zTypeClass.getName();
                int zAt = zType.lastIndexOf( '.' );
                if ( zAt != -1 )
                {
                    zType = zType.substring( zAt + 1 );
                }
                try
                {
                    return BoAttribute.AttributeType.valueOf( zType );
                }
                catch ( IllegalArgumentException e )
                {
                    mErrorSinc.addError( "CurrentlyUnsupportedAttributeType", "of: " + zType, pAttribute.toString(), mObjectMetaData.toStringForError() );
                }
            }
        }
        return null;
    }

    protected Class extractSimpleDataType( AttributeMetaData pAttribute )
    {
        return pAttribute.getAttributeSet().getType().getSimpleDataType();
    }

    protected void addNotes( String pNotes )
    {
        if ( Utils.isNotNullOrEmpty( pNotes ) )
        {
            addLine( "/**" );
            String[] zLines = Utils.parseChar( Utils.normalizeNewLines( pNotes ), '\n' );
            for ( String zLine : zLines )
            {
                addLine( " " + ("* " + zLine).trim() );
            }
            addLine( " */" );
        }
    }

    protected String adjustOptionForName( String pOption )
    {
        StringBuilder rv = new StringBuilder( pOption );
        for ( int i = 0; i < rv.length(); i++ )
        {
            char c = rv.charAt( i );
            if ( (c != '_') && !Utils.isAlphaNumeric( c ) )
            {
                rv.setCharAt( i, '_' );
            }
        }
        return rv.toString();
    }

    protected AttributeMetaData getAttribute( ObjectMetaData pObjectMetaData, String pAttrName )
    {
        AttributeMetaData zAMD = null;
        while ( (pObjectMetaData != null) && (null == (zAMD = pObjectMetaData.getAttribute( pAttrName ))) )
        {
            String zParentName = Utils.noEmpty( pObjectMetaData.getParentName() );
            SystemMetaData zSystemMetaData = pObjectMetaData.getSystemMetaData();
            pObjectMetaData = ((zSystemMetaData != null) && (zParentName != null)) ? zSystemMetaData.getObject( zParentName ) : null;
        }
        return zAMD;
    }

    protected SystemMetaData getSystemMetaData( MetaDataOwner pOwner )
    {
        while ( pOwner instanceof AbstractNamedMetaData )
        {
            pOwner = ((AbstractNamedMetaData) pOwner).getOwner();
        }
        return (pOwner instanceof SystemMetaData) ? (SystemMetaData) pOwner : null;
    }

    protected void LLaddAttributes( boolean pAddBlank )
    {
        for ( AttributeProxy zAttribute : getAttributes() )
        {
            if ( pAddBlank )
            {
                addBlankLine();
            }
            pAddBlank = true;
            LLaddAttribute( zAttribute );
        }
    }

    protected void addPSFSattributeValidOptions( AttributeProxy pAttribute, String pPOorVO )
    {
        String[] zOptions = pAttribute.getValidOptions();
        if ( Utils.isNotNullOrEmpty( zOptions ) && (zOptions.length < 10) )
        {
            addBlankLine();
            for ( String zOption : zOptions )
            {
                if ( Utils.isNotNullOrEmpty( zOption ) )
                {
                    addPSFS( pPOorVO + pAttribute.getName() + "_" + adjustOptionForName( zOption ), zOption );
                }
            }
        }
    }

    protected void LLaddAttribute( AttributeProxy zAttribute )
    {
    }

    protected String createAttributeTypedCall( AttributeProxy pAttribute, String pPOorVO, String pBaseLine, String pLineTerminator )
    {
        String zName = pAttribute.getName();

        Mutability zMutability = pAttribute.getMutability();

        String zRequired = pAttribute.isRequired() ? ", true" : ", false";

        BoAttribute.AttributeType zType = pAttribute.getBoAttributeType();
        if ( zType == null )
        {
            mErrorSinc.addError(
                    pPOorVO + " CurrentlyUnsupportedAttributeType",
                    "of: " + pAttribute.getAttributeType(), pAttribute.toString(), mObjectMetaData.toStringForError() );
            zType = BoAttribute.AttributeType.String;
        }

        AttributeType zAttributeType = pAttribute.getAttributeType();
        String zEnumType = zType.toString();

        PropertyManager zPM = pAttribute.getPropertyManager();
        List<String> zProperties = new ArrayList<String>();

        String[] zOptions = pAttribute.getValidOptions();
        if ( zOptions != null )
        {
            zProperties.add( "Options.of( sValidOptions" + zName + " )" );
            zEnumType = "ValidOptions";
        }
        else if ( A_ArrayOptions.TYPE.equals( zAttributeType ) )
        {
            String zArrayRef = Utils.noEmpty( zPM.get_String( PMD_FullyQualifiedStringArrayPath.NAME, "" ) );
            if ( zArrayRef == null )
            {
                mErrorSinc.addError( "AttributeStringArrayPath", "Missing", pAttribute.toString(), mObjectMetaData.toStringForError() );
            }
            zProperties.add( "Options.of( " + zArrayRef + " )" );
            zEnumType = "ValidOptions";
        }
        else if ( A_Password.TYPE.equals( zAttributeType ) )
        {
            zEnumType = "Password";
        }
        else if ( A_Text.TYPE.equals( zAttributeType ) )
        {
            zEnumType = "Text";
        }
        String zProperty = noEmpty( zPM.getProperty( PMD_Case.NAME ) );
        if ( zProperty != null )
        {
            zProperties.add( PMD_Case.NAME + "." + zProperty );
        }
        // Will be rendered in REVERSE order
        add( zProperties, zPM, PMD_DisplayLength.NAME, "DisplayLength" );
        add( zProperties, zPM, PMD_MaxLength.NAME, "MaxLength" );
        add( zProperties, zPM, PMD_DisplayHeightInitial.NAME, "DisplayHeightInitial" );
        add( zProperties, zPM, PMD_DisplayWidthInitial.NAME, "DisplayWidthInitial" );

        pBaseLine += zRequired + ", _" + zEnumType;
        if ( !Mutability.RW.equals( zMutability ) )
        {
            pBaseLine += "." + zMutability + "()";
        }
        if ( zProperties.isEmpty() )
        {
            addLine( pBaseLine + " )" + pLineTerminator );
        }
        else
        {
            pBaseLine += ".with( ";
            int i = zProperties.size();
            if ( i == 1 )
            {
                addLine( pBaseLine + zProperties.get( --i ) + " ) )" + pLineTerminator );
            }
            else
            {
                String zPadding = Utils.spaces( pBaseLine.length() );
                addLine( pBaseLine + zProperties.get( --i ) + ", //" );
                while ( i > 1 )
                {
                    addLine( zPadding + zProperties.get( --i ) + ", //" );
                }
                addLine( zPadding + zProperties.get( --i ) + " ) )" + pLineTerminator );
            }
        }
        String zTypeExtra = "";
        if ( SimpleMoney.class.equals( zType.getType() ) )
        {
            zTypeExtra = "org.litesoft.core.simpletypes.currency.SimpleCurrency.US, ";
        }
        else if ( SimpleDate.class.equals( zType.getType() ) )
        {
            zTypeExtra = "org.litesoft.core.simpletypes.temporal.DateFormatControl.DEFAULT_DATE_FORMAT, ";
        }
        else if ( SimpleTime.class.equals( zType.getType() ) )
        {
            zTypeExtra = "org.litesoft.core.simpletypes.temporal.TimeRes.ToMIN, ";
        }
        else if ( SimpleTimestamp.class.equals( zType.getType() ) )
        {
            zTypeExtra = "org.litesoft.core.simpletypes.temporal.TimeRes.ToMSEC, ";
        }
        return zTypeExtra;
    }

    protected void add( List<String> pCollector, PropertyManager pPropertyManager, String pProperty, String pWhat )
    {
        String zProperty = noEmpty( pPropertyManager.getProperty( pProperty ) );
        if ( zProperty != null )
        {
            pCollector.add( pWhat + ".of( " + zProperty + " )" );
        }
    }

    private String noEmpty( Property pProperty )
    {
        return (pProperty != null) ? Utils.noEmpty( pProperty.getValueAsString() ) : null;
    }

    protected void addTopValidOptions( String pPOorVO )
    {
        for ( AttributeProxy zAttribute : getAttributes() )
        {
            addTopPSFSattributeValidOptions( zAttribute, pPOorVO );
        }
    }

    private void addTopPSFSattributeValidOptions( AttributeProxy pAttribute, String pPOorVO )
    {
        String[] zOptions = pAttribute.getValidOptions();
        if ( zOptions != null )
        {
            addLine( "public static final String[] sValidOptions" + pAttribute.getName() + " = //" );
            indentStart();
            indentStart();
            addLine( "{ //" );
            indentPlus( 2 );

            if ( (zOptions.length < 10) )
            {
                for ( String zOption : zOptions )
                {
                    if ( Utils.isNotNullOrEmpty( zOption ) )
                    {
                        addLine( pPOorVO + pAttribute.getName() + "_" + adjustOptionForName( zOption ) + ", //" );
                    }
                }
            }
            else
            {
                for ( String zOption : zOptions )
                {
                    if ( Utils.isNotNullOrEmpty( zOption ) )
                    {
                        addLine( quote( zOption ) + ", //" );
                    }
                }
            }

            indentMinus( 2 );
            addLine( "};" );
            indentEnd();
            indentEnd();
            addBlankLine();
        }
    }
}

Commits for litesoft/trunk/Java/PoVoGenerator/Generator/src/org/litesoft/generator/AbstractTypeFileGenerator.java

Diff revisions: vs.
Revision Author Commited Message
2 GeorgeS picture GeorgeS Sun 07 Feb, 2010 12:50:58 +0000