1 package org.kuali.student.r1.common.dictionary.service.impl;
2
3 import java.io.File;
4 import java.io.FileNotFoundException;
5 import java.io.FileOutputStream;
6 import java.io.OutputStream;
7 import java.io.PrintStream;
8 import java.util.ArrayList;
9 import java.util.Date;
10 import java.util.HashMap;
11 import java.util.HashSet;
12 import java.util.LinkedHashSet;
13 import java.util.List;
14 import java.util.Map;
15 import java.util.Set;
16
17 import org.kuali.student.r1.common.dictionary.dto.ObjectStructureDefinition;
18 import org.springframework.context.ApplicationContext;
19 import org.springframework.context.support.ClassPathXmlApplicationContext;
20
21 public class DictionaryDiscrepencyTesterHelper
22 {
23
24 private String outputFileName;
25 private File file;
26 private OutputStream outputStream;
27 private PrintStream out;
28 private Set<String> startingClasses;
29 private String dictFileName;
30 private boolean processSubstructures = false;
31 private boolean printDescrepenciesOnly = false;
32
33 public DictionaryDiscrepencyTesterHelper (String outputFileName,
34 Set<String> startingClasses,
35 String dictFileName,
36 boolean processSubstructures)
37 {
38 this.outputFileName = outputFileName;
39 this.startingClasses = startingClasses;
40 this.dictFileName = dictFileName;
41 this.processSubstructures = processSubstructures;
42 this.printDescrepenciesOnly = printDescrepenciesOnly;
43
44 this.file = new File (this.outputFileName);
45 try
46 {
47 outputStream = new FileOutputStream (file, false);
48 }
49 catch (FileNotFoundException ex)
50 {
51 throw new IllegalArgumentException (ex);
52 }
53 this.out = new PrintStream (outputStream);
54 }
55
56 private transient Map<String, ObjectStructureDefinition> objectStructures;
57
58 public List<String> doTest ()
59 {
60 ApplicationContext ac = new ClassPathXmlApplicationContext (
61 "classpath:" + dictFileName);
62 objectStructures = new HashMap ();
63 Map<String, ObjectStructureDefinition> beansOfType =
64 (Map<String, ObjectStructureDefinition>) ac.
65 getBeansOfType (ObjectStructureDefinition.class);
66 for (ObjectStructureDefinition objStr: beansOfType.values ())
67 {
68 objectStructures.put (objStr.getName (), objStr);
69 System.out.println ("Loading object structure: " + objStr.getName ());
70 }
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91 Set<String> allStructures = new LinkedHashSet ();
92 for (String className: startingClasses)
93 {
94 allStructures.addAll (getComplexSubStructures (className));
95 }
96 Set<String> classesToProcess = null;
97 if (this.processSubstructures)
98 {
99 classesToProcess = startingClasses;
100
101 }
102 else
103 {
104 classesToProcess = allStructures;
105
106 }
107
108 out.println ("(!) This page was automatically generated on " + new Date ());
109 out.println ("DO NOT UPDATE MANUALLY!");
110 out.println ("");
111 out.print ("This page represents a formatted view of [" + dictFileName
112 + "|https://test.kuali.org/svn/student/trunk/ks-lum/ks-lum-impl/src/main/resources/"
113 + dictFileName + "]");
114 out.println (
115 " and is compared to the following java classes (and their sub-classes) for discrepancies:");
116 for (String className: startingClasses)
117 {
118 out.println ("# " + className);
119 }
120 out.println ("");
121 out.println ("----");
122 out.println ("{toc}");
123 out.println ("----");
124 List<String> discrepancies = new ArrayList (1);
125 List<String> alldiscrepancies = new ArrayList (1);
126 for (String className: classesToProcess)
127 {
128
129 discrepancies = doTestOnClass (className, ac);
130 if (discrepancies.size() > 0) {
131 alldiscrepancies.addAll(discrepancies);
132
133 }
134 }
135 out.close ();
136 return alldiscrepancies;
137 }
138
139 private Set<String> getComplexSubStructures (String className)
140 {
141 return new ComplexSubstructuresHelper ().getComplexStructures (className);
142 }
143
144 private List<String> doTestOnClass (String className, ApplicationContext ac)
145 {
146 ObjectStructureDefinition os = objectStructures.get (className);
147 String simpleName = calcSimpleName (className);
148
149 if (os == null)
150 {
151
152 out.println ("h1. " + simpleName);
153 out.println ("{anchor:" + simpleName + "}");
154 out.println ("h2. Error could not find a corresponding dictionary definition");
155
156 }
157 DictionaryDiscrepencyTester formatter =
158 new DictionaryDiscrepencyTester (className,
159 className,
160 os,
161 new HashSet (),
162 1,
163 this.processSubstructures, this.printDescrepenciesOnly);
164
165 return formatter.formatForWiki();
166 }
167
168 private String calcSimpleName (String name)
169 {
170 if (name.lastIndexOf (".") != -1)
171 {
172 name = name.substring (name.lastIndexOf (".") + 1);
173 }
174 return name;
175 }
176
177 public boolean isPrintDescrepenciesOnly() {
178 return printDescrepenciesOnly;
179 }
180
181 public void setPrintDescrepenciesOnly(boolean printDescrepenciesOnly) {
182 this.printDescrepenciesOnly = printDescrepenciesOnly;
183 }
184
185 }