Java File Generator : Text Read Write « File Input Output « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » File Input Output » Text Read WriteScreenshots 
Java File Generator
     
/* Copyright (c) 2008, Paul Cager.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *     * Redistributions of source code must retain the above copyright notice,
 *       this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above copyright
 *       notice, this list of conditions and the following disclaimer in the
 *       documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 * THE POSSIBILITY OF SUCH DAMAGE.
 */


import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.HashMap;
import java.util.Map;

/**
 * Generates boiler-plate files from templates. Only very basic
 * template processing is supplied - if we need something more
 * sophisticated I suggest we use a third-party library.
 
 @author paulcager
 @since 4.2
 */
public class JavaFileGenerator {

  /**
   @param templateName the name of the template. E.g. 
   *        "/templates/Token.template".
   @param options the processing options in force, such
   *        as "STATIC=yes" 
   */
  public JavaFileGenerator(String templateName, Map options) {
    this.templateName = templateName;
    this.options = options;
  }

  private final String templateName;
  private final Map options; 
  
  private String currentLine;

  /**
   * Generate the output file.
   @param out
   @throws IOException
   */
  public void generate(PrintWriter outthrows IOException
  {
    InputStream is = getClass().getResourceAsStream(templateName);
    if (is == null)
      throw new IOException("Invalid template name: " + templateName);
    BufferedReader in = new BufferedReader(new InputStreamReader(is))
    process(in, out, false);
  }
  
  private String peekLine(BufferedReader inthrows IOException
  {
    if (currentLine == null)
      currentLine = in.readLine();
    
    return currentLine;
  }
  
  private String getLine(BufferedReader inthrows IOException
  {
    String line = currentLine;
    currentLine = null;
    
    if (line == null)
      in.readLine();
    
    return line;
  }
  
  private boolean evaluate(String condition)
  {
    condition = condition.trim();
    
    Object obj = options.get(condition);
    
    if (obj == null)
    {
      return condition.equalsIgnoreCase("true"|| condition.equalsIgnoreCase("yes");
    }
    
    if (obj instanceof Boolean)
    {
      return ((Boolean)obj).booleanValue();
    }
    else if (obj instanceof String)
    {
      String string = ((String)obj).trim();
      return string.length() && !string.equalsIgnoreCase("false"&& !string.equalsIgnoreCase("no");
    }
    
    return false;
  }
  
  private String substitute(String textthrows IOException
  {
    int startPos;
    
    if ( (startPos = text.indexOf("${")) == -1)
    {
      return text;
    }
    
    // Find matching "}".
    int braceDepth = 1;
    int endPos = startPos + 2;
    
    while endPos < text.length() && braceDepth > 0)
    {
      if (text.charAt(endPos== '{')
        braceDepth++;
      else if (text.charAt(endPos== '}')
        braceDepth--;
      
      endPos++;
    }
    
    if (braceDepth != 0)
      throw new IOException("Mismatched \"{}\" in template string: " + text)
    
    final String variableExpression = text.substring(startPos + 2, endPos - 1);

    // Find the end of the variable name
    String value = null;
    
    for (int i = 0; i < variableExpression.length(); i++)
    {
      char ch = variableExpression.charAt(i);
      
      if (ch == ':' && i < variableExpression.length() && variableExpression.charAt(i+1== '-' )
      {
        value = substituteWithDefault(variableExpression.substring(0, i), variableExpression.substring(i + 2));
        break;
      }
      else if (ch == '?')
      {
        value = substituteWithConditional(variableExpression.substring(0, i), variableExpression.substring(i + 1));
        break;
      }
      else if (ch != '_' && !Character.isJavaIdentifierPart(ch))
      {
        throw new IOException("Invalid variable in " + text);
      }
    }
    
    if (value == null)
    {
      value = substituteWithDefault(variableExpression, "");
    }
    
    return text.substring(0, startPos+ value + text.substring(endPos);
  }
  
  /**
   @param substring
   @param defaultValue
   @return
   @throws IOException 
   */
  private String substituteWithConditional(String variableName, String valuesthrows IOException
  {
    // Split values into true and false values.
    
    int pos = values.indexOf(':');
    if (pos == -1)
      throw new IOException("No ':' separator in " + values);
    
    if (evaluate(variableName))
      return substitute(values.substring(0, pos));
    else
      return substitute(values.substring(pos + 1));
  }

  /**
   @param variableName
   @param defaultValue
   @return
   */
  private String substituteWithDefault(String variableName, String defaultValuethrows IOException
  {
    Object obj = options.get(variableName.trim());
    if (obj == null || obj.toString().length() == 0)
      return substitute(defaultValue);
    
    return obj.toString();
  }

  private void write(PrintWriter out, String textthrows IOException
  {
    while text.indexOf("${"!= -1)
    {
      text = substitute(text);
    }
    
    out.println(text);
  }
  
  private void process(BufferedReader in, PrintWriter out, boolean ignoring)  throws IOException
  {
//    out.println("*** process ignore=" + ignoring + " : " + peekLine(in));
    while peekLine(in!= null)
    {
      if (peekLine(in).trim().startsWith("#if"))
      {
        String line = getLine(in).trim();
        final boolean condition = evaluate(line.substring(3).trim());
        
        process(in, out, ignoring || !condition);
        
        if (peekLine(in!= null && peekLine(in).trim().startsWith("#else"))
        {
          getLine(in);   // Discard the #else line
          process(in, out, ignoring || condition);
        }
        
        line = getLine(in);
        
        if (line == null)
          throw new IOException("Missing \"#fi\"");
        
        if (!line.trim().startsWith("#fi"))
          throw new IOException("Expected \"#fi\", got: " + line);
      }
      else if (peekLine(in).trim().startsWith("#")) 
      {
        break;
      }
      else
      {
        String line = getLine(in);
        if (!ignoringwrite(out, line);
      }
    }
    
    out.flush();
  }
  
  public static void main(String[] argsthrows Exception
  {
    Map map = new HashMap();
    map.put("falseArg", Boolean.FALSE);
    map.put("trueArg", Boolean.TRUE);
    map.put("stringValue""someString");
    
    new JavaFileGenerator(args[0], map).generate(new PrintWriter(args[1]));
  }
}

   
    
    
    
    
  
Related examples in the same category
1. Data Text Writer
2. Load File As Text
3. Load file content to List
4. Load file line by line
5. Writing delimited text data to a file or a stream
6. Searches case sensitively in a file
7. To Hex String and char
8. CRLF Print Writer
9. CRLF Terminated Reader
10. Find a pattern within a file
11. Gets the content from a File as String Array List
12. Dump a String to a text file with encoding.
13. Load a text file contents as a String.
14. An iterator that breaks text into lines. The result is equal to BufferedReader.readLine().
15. Compare text file line by lineCompare text file line by line
16. Read and return the entire contents of the supplied File.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.