View Javadoc

1   /**
2    * Copyright 2005-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package edu.samplu.common;
17  
18  import freemarker.template.Configuration;
19  import freemarker.template.Template;
20  import freemarker.template.TemplateException;
21  import org.apache.commons.io.FileUtils;
22  import org.springframework.ui.freemarker.FreeMarkerTemplateUtils;
23  
24  import java.io.File;
25  import java.io.IOException;
26  import java.io.InputStream;
27  import java.util.Enumeration;
28  import java.util.HashMap;
29  import java.util.Iterator;
30  import java.util.Map;
31  import java.util.Properties;
32  
33  /**
34   * FreemarkerUtil loads properties from user defined InputStream.  systemPropertiesOverride should be used to override properties
35   * using a given key to identify them from JVM args. (i.e. -Dkey.name to override the name property in the key file.)
36   * TODO setup so the loading and overriding of properties is done for the user rather then them having to call it.
37   * @author Kuali Rice Team (rice.collab@kuali.org)
38   */
39  public class FreemarkerUtil {
40  
41      protected Configuration cfg;
42  
43      /**
44       * Calls ftlWrite that also accepts a key, using the output getName as the key.
45       * @param output
46       * @param template
47       * @return
48       * @throws java.io.IOException
49       * @throws freemarker.template.TemplateException
50       */
51      public static File ftlWrite(File output, Template template, InputStream inputStream) throws IOException, TemplateException {
52  
53          return ftlWrite(output.getName(), output, template, inputStream);
54      }
55  
56      /**
57       * Loads properties from user defined properties file, if not available uses resource file
58       *
59       * writes processed template  to file
60       * @param key
61       * @param output
62       * @param template
63       * @throws IOException
64       * @throws TemplateException
65       */
66      public static File ftlWrite(String key, File output, Template template, InputStream inputStream) throws IOException, TemplateException {
67          Properties props = loadProperties(inputStream);
68          props.put("baseName", output.getName().substring(0, output.getName().indexOf("ST")));
69          if (output.getName().contains("TmplMthd")) { // Template method pattern
70              props.put("className", output.getName().substring(0, output.getName().indexOf("TmplMthd")));
71          }
72  
73          systemPropertiesOverride(props, key);
74          transformNumberedTestPropertiesToList(props);
75          File outputFile = writeTemplateToFile(output, template, props);
76  
77          return outputFile;
78      }
79  
80      protected static Properties loadProperties(InputStream inputStream) throws IOException {
81          Properties props = new Properties();
82  
83          if(inputStream != null) {
84              props.load(inputStream);
85          }
86  
87          return props;
88      }
89  
90      protected static void transformNumberedTestPropertiesToList(Properties props) {
91          Iterator keys = props.keySet().iterator();
92          Map<String, String> keyLists = new HashMap<String, String>();
93          while (keys.hasNext()) {
94              String key = (String)keys.next();
95              if (Character.isDigit(key.charAt(key.length()-1))) {
96                  keyLists.put(key, props.getProperty(key));
97              }
98          }
99  
100         Iterator listKeys = keyLists.keySet().iterator();
101         while (listKeys.hasNext()) {
102             String key = (String)listKeys.next();
103             props.remove(key);
104         }
105 
106         props.put("tests", keyLists.values());
107     }
108 
109     /**
110      *
111      * @param file
112      * @param template
113      * @param props
114      * @return
115      * @throws IOException
116      * @throws freemarker.template.TemplateException
117      */
118     protected static File writeTemplateToFile(File file, Template template, Properties props) throws IOException, TemplateException {
119         String output = FreeMarkerTemplateUtils.processTemplateIntoString(template, props);
120         FileUtils.writeStringToFile(file, output);
121 
122         return file;
123     }
124 
125     /**
126      * -Dkey.propertyname= to override the property value for propertyname.
127      * @param props
128      */
129     public static void systemPropertiesOverride(Properties props, String key) {
130         Enumeration<?> names = props.propertyNames();
131         Object nameObject;
132         String name;
133         while (names.hasMoreElements()) {
134             nameObject = names.nextElement();
135             if (nameObject instanceof String) {
136                 name = (String)nameObject;
137                 props.setProperty(name, System.getProperty(key + "." + name, props.getProperty(name)));
138             }
139         }
140     }
141 
142 }