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
package org.litesoft.codegen;

import java.io.*;

import org.litesoft.util.*;

public class AbstractSourceCodeFileGenerator
{
    protected static String mergeFileLines( String... pNewLines )
    {
        int len = 0;
        for ( String pNewLine : pNewLines )
        {
            len += pNewLine.length() + 1;
        }
        StringBuilder sb = new StringBuilder( len );
        for ( String pNewLine : pNewLines )
        {
            sb.append( pNewLine );
            sb.append( '\n' );
        }
        return sb.toString();
    }

    protected static GenerationReport.Action writeChangedFileLines( boolean pWriteIt, File pFile, String... pNewLines )
            throws IOException
    {
        return writeChangedFile( pWriteIt, pFile, pWriteIt ? mergeFileLines( pNewLines ) : "" );
    }

    protected static GenerationReport.Action writeChangedFile( boolean pWriteIt, File pFile, String pNewContents )
            throws IOException
    {
        return writeFile( pWriteIt && (!pFile.exists() || !getFileAsString( pFile ).equals( pNewContents )), pFile, pNewContents );
    }

    protected static GenerationReport.Action writeFile( boolean pWriteIt, File pFile, String pNewContents )
            throws IOException
    {
        if ( !pWriteIt )
        {
            return GenerationReport.Action.NoChange;
        }
        GenerationReport.Action rv;
        if ( pFile.exists() )
        {
            rv = GenerationReport.Action.Updated;
            System.out.println( "Updating: " + pFile );
        }
        else
        {
            rv = GenerationReport.Action.Created;
            System.out.println( "Creating: " + pFile );
            File parentPath = pFile.getParentFile();
            if ( !parentPath.exists() )
            {
                //noinspection ResultOfMethodCallIgnored
                parentPath.mkdirs();
            }
        }
        FileWriter writer = new FileWriter( pFile );
        writer.write( pNewContents );
        writer.close();
        return rv;
    }

    protected static String getFileAsString( File pFile )
            throws IOException
    {
        int bytes = (int) pFile.length();
        StringBuilder sb = new StringBuilder( bytes );

        Reader reader = new BufferedReader( new FileReader( pFile ) );
        for ( int i = 0; i < bytes; i++ )
        {
            sb.append( (char) reader.read() );
        }
        reader.close();

        return sb.toString();
    }

    /**
     * This method returns a string containing zero or more tabs.
     * <p/>
     *
     * @param numTabs Number of tabs to generate
     *
     * @return Description of the Returned Value
     */
    protected static String tabLevel( int numTabs )
    {
        return (numTabs < 1) ? "" : Utils.spaces( numTabs * 4 );
    }

    protected static String deCamelToSpaced( String pName )
    {
        StringBuilder sb = new StringBuilder( pName.length() + 5 );
        for ( int i = 0; i < pName.length(); i++ )
        {
            char c = pName.charAt( i );
            if ( Character.isUpperCase( c ) )
            {
                sb.append( ' ' );
            }
            sb.append( c );
        }
        return sb.toString().trim();
    }

    protected static String deCamelToUnderscoredConstant( String pName )
    {
        StringBuilder sb = new StringBuilder( pName.length() + 5 );
        sb.append( pName.charAt( 0 ) );
        for ( int i = 1; i < pName.length(); i++ )
        {
            char c = pName.charAt( i );
            if ( Character.isUpperCase( c ) )
            {
                sb.append( '_' );
            }
            sb.append( Character.toUpperCase( c ) );
        }
        return sb.toString();
    }
}

Commits for litesoft/trunk/Java/core/Server/src/org/litesoft/codegen/AbstractSourceCodeFileGenerator.java

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