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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
// This Source Code is in the Public Domain per: http://litesoft.org/License.txt
package org.litesoft.generator;

import java.util.*;

import org.litesoft.aokeyhole.objects.*;
import org.litesoft.aokeyhole.objects.AttributeMetaData;
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.attributes.*;
import org.litesoft.codegen.*;
import org.litesoft.core.simpletypes.currency.*;
import org.litesoft.core.simpletypes.temporal.*;
import org.litesoft.core.typeutils.*;
import org.litesoft.core.typeutils.Objects;

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

        String getDerivedFromAttribute();

        String getColumnName();

        Mutability getMutability();

        boolean isSysSetOnly();

        Class getSimpleDataType();

        BoAttribute.AttributeType getBoAttributeType();

        boolean isRequired();

        boolean isQueryView();

        String getToManyFullyQualifiedName();

        boolean isToManyInstantiable();

        String getToManyBackReference();

        AttributeProxy getToManyBackReferenceAttributeProxy();

        String getToOneFullyQualifiedName();

        boolean isToOneInstantiable();

        String getToOneBackReference();

        @SuppressWarnings({"UnusedDeclaration"})
        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( MinimalAttributeMetaData pAttribute )
    {
        AttributeType zAttributeType = pAttribute.getAttributeSetType();
        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 void addNotes( String pNotes )
    {
        if ( Strings.isNotNullOrEmpty( pNotes ) )
        {
            addLine( "/**" );
            String[] zLines = Strings.parseChar( Strings.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 != '_') && !Characters.isAlphaNumeric( c ) )
            {
                rv.setCharAt( i, '_' );
            }
        }
        return rv.toString();
    }

    private static Map<ObjectMetaData, List<AttributeProxy>> sInjectedAttributes = new HashMap<ObjectMetaData, List<AttributeProxy>>();

    protected synchronized List<AttributeProxy> getInjectedAttributes( ObjectMetaData pObjectMetaData )
    {
        List<AttributeProxy> zInjectedAttributes = sInjectedAttributes.get( pObjectMetaData );
        if ( zInjectedAttributes == null )
        {
            sInjectedAttributes.put( pObjectMetaData, zInjectedAttributes = createInjectedAttributes( pObjectMetaData ) );
        }
        return zInjectedAttributes;
    }

    protected List<AttributeProxy> createInjectedAttributes( ObjectMetaData pObjectMetaData )
    {
        String zTimeTracked = pObjectMetaData.getPropertyManager().get_String( PMD_TimeTracked.NAME, PMD_TimeTracked.NONE );
        if ( PMD_TimeTracked.NONE.equals( zTimeTracked ) )
        {
            return Collections.emptyList();
        }
        ArrayList<AttributeProxy> zInjected = new ArrayList<AttributeProxy>();
        if ( PMD_TimeTracked.CREATED.equals( zTimeTracked ) || PMD_TimeTracked.BOTH.equals( zTimeTracked ) )
        {
            zInjected.add( IAP_CREATED );
        }
        if ( PMD_TimeTracked.LAST_MOD.equals( zTimeTracked ) || PMD_TimeTracked.BOTH.equals( zTimeTracked ) )
        {
            zInjected.add( IAP_LAST_MOD );
        }
        return zInjected;
    }

    protected MinimalAttributeMetaData getRegularOrInjectedAttribute( ObjectMetaData pObjectMetaData, String pAttrName )
    {
        AttributeMetaData zAMD = pObjectMetaData.getAttribute( pAttrName );
        if ( zAMD != null )
        {
            return zAMD;
        }
        List<AttributeProxy> zInjectedAttributes = getInjectedAttributes( pObjectMetaData );
        for ( AttributeProxy zAttribute : zInjectedAttributes )
        {
            if ( zAttribute.getName().equals( pAttrName ) )
            {
                return zAttribute;
            }
        }
        return null;
    }

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

    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 ( Objects.isNotNullOrEmpty(zOptions) && (zOptions.length < 10) )
        {
            addBlankLine();
            for ( String zOption : zOptions )
            {
                if ( Strings.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.getAttributeSetType(), pAttribute.toString(), mObjectMetaData.toStringForError() );
            zType = BoAttribute.AttributeType.String;
        }

        AttributeType zAttributeType = pAttribute.getAttributeSetType();
        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 = (zAttributeType instanceof HasOpenOption) ? "OpenValidOptions" : "ValidOptions";
        }
        else if ( zAttributeType instanceof AbstractArrayOptionsAttributeTypeSimple )
        {
            String zArrayRef = Strings.noEmpty( zPM.get_String( PMD_FullyQualifiedStringArrayPath.NAME, "" ) );
            if ( zArrayRef == null )
            {
                mErrorSinc.addError( "AttributeStringArrayPath", "Missing", pAttribute.toString(), mObjectMetaData.toStringForError() );
            }
            zProperties.add( "Options.of( " + zArrayRef + " )" );
            zEnumType = (zAttributeType instanceof HasOpenOption) ? "OpenValidOptions" : "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 = Strings.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 ( Money.class.equals( zType.getType() ) )
        {
            zTypeExtra = "org.litesoft.core.simpletypes.currency.Currency.US, ";
        }
        else if ( CalendarYMD.class.equals( zType.getType() ) )
        {
            zTypeExtra = "org.litesoft.core.simpletypes.temporal.DateFormatControl.DEFAULT_YMD_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) ? Strings.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 ( Strings.isNotNullOrEmpty( zOption ) )
                    {
                        addLine( pPOorVO + pAttribute.getName() + "_" + adjustOptionForName( zOption ) + ", //" );
                    }
                }
            }
            else
            {
                for ( String zOption : zOptions )
                {
                    if ( Strings.isNotNullOrEmpty( zOption ) )
                    {
                        addLine( quote( zOption ) + ", //" );
                    }
                }
            }

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

    private static final InjectedAttributeProxy IAP_CREATED = createSysTimeStampAMD( "Created" );
    private static final InjectedAttributeProxy IAP_LAST_MOD = createSysTimeStampAMD( "LastModified" );

    private static InjectedAttributeProxy createSysTimeStampAMD( String pName )
    {
        return new InjectedAttributeProxy( pName, true, A_Timestamp.TYPE, BoAttribute.AttributeType.SimpleTimestamp );
    }

    private static class InjectedAttributeProxy implements AttributeProxy
    {
        private String mName;
        private boolean mSysSetOnly;
        private AttributeType mAttributeSetType;
        private BoAttribute.AttributeType mBoAttributeType;

        private InjectedAttributeProxy( String pName, boolean pSysSetOnly, AttributeType pAttributeSetType, BoAttribute.AttributeType pBoAttributeType )
        {
            mName = pName;
            mSysSetOnly = pSysSetOnly;
            mAttributeSetType = pAttributeSetType;
            mBoAttributeType = pBoAttributeType;
            if ( pAttributeSetType.getSimpleDataType() != pBoAttributeType.getType() )
            {
                throw new IllegalArgumentException( "Incompatible AttributeTypes Set=" + pAttributeSetType + " & " + pBoAttributeType + "=BO" );
            }
        }

        @Override
        public boolean isInjected()
        {
            return true;
        }

        @Override
        public String getDerivedFromAttribute()
        {
            return null;
        }

        @Override
        public String getName()
        {
            return mName;
        }

        @Override
        public String getColumnName()
        {
            return mName;
        }

        @Override
        public Mutability getMutability()
        {
            return Mutability.RO;
        }

        @Override
        public boolean isSysSetOnly()
        {
            return mSysSetOnly;
        }

        @Override
        public String getNotes()
        {
            return null;
        }

        @Override
        public boolean isVirtual()
        {
            return false;
        }

        @Override
        public Class getSimpleDataType()
        {
            return mAttributeSetType.getSimpleDataType();
        }

        @Override
        public String[] getValidOptions()
        {
            return null;
        }

        @Override
        public BoAttribute.AttributeType getBoAttributeType()
        {
            return mBoAttributeType;
        }

        @Override
        public AttributeType getAttributeSetType()
        {
            return mAttributeSetType;
        }

        @Override
        public boolean isRequired()
        {
            return true;
        }

        @Override
        public boolean isQueryView()
        {
            return false;
        }

        @Override
        public PropertyManager getPropertyManager()
        {
            return PropertyManager.NONE;
        }

        @Override
        public String getToManyFullyQualifiedName()
        {
            return null;
        }

        @Override
        public boolean isToManyInstantiable()
        {
            return false;
        }

        @Override
        public String getToManyBackReference()
        {
            return null;
        }

        @Override
        public AttributeProxy getToManyBackReferenceAttributeProxy()
        {
            return null;
        }

        @Override
        public String getToOneFullyQualifiedName()
        {
            return null;
        }

        @Override
        public boolean isToOneInstantiable()
        {
            return false;
        }

        @Override
        public String getToOneBackReference()
        {
            return null;
        }

        @Override
        public AttributeProxy getToOneBackReferenceAttributeProxy()
        {
            return null;
        }

        @Override
        public String toString()
        {
            return getClass().getSimpleName() + "(" + getSimpleDataType().getSimpleName() + "): " + getName();
        }
    }
}

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

Diff revisions: vs.
Revision Author Commited Message
917 Diff Diff GeorgeS picture GeorgeS Sun 08 Dec, 2013 20:49:56 +0000

1.7 prep & VersionedStaticContentFilter upgrade to new “/ver” model!

860 Diff Diff GeorgeS picture GeorgeS Mon 05 Nov, 2012 01:39:02 +0000
854 Diff Diff GeorgeS picture GeorgeS Sun 04 Nov, 2012 15:28:27 +0000
851 Diff Diff GeorgeS picture GeorgeS Mon 08 Oct, 2012 00:05:32 +0000

Breaking the code as Temporal changes are implemented...

811 Diff Diff GeorgeS picture GeorgeS Sat 18 Aug, 2012 13:45:18 +0000
809 Diff Diff GeorgeS picture GeorgeS Thu 16 Aug, 2012 04:10:46 +0000
803 Diff Diff GeorgeS picture GeorgeS Wed 15 Aug, 2012 04:08:34 +0000
802 Diff Diff GeorgeS picture GeorgeS Wed 15 Aug, 2012 04:04:47 +0000
801 Diff Diff GeorgeS picture GeorgeS Wed 15 Aug, 2012 03:59:02 +0000
799 GeorgeS picture GeorgeS Wed 15 Aug, 2012 03:32:04 +0000