Adding more testcases to Misc xgen
[aaf/authz.git] / misc / xgen / src / main / java / org / onap / aaf / misc / xgen / CacheGen.java
index aa3d1fe..74b590d 100644 (file)
-/**
- * ============LICENSE_START====================================================
- * org.onap.aaf
- * ===========================================================================
- * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
- * ===========================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *      http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END====================================================
- *
- */
-
-package org.onap.aaf.misc.xgen;
-
-import java.io.IOException;
-import java.io.OutputStream;
-import java.io.OutputStreamWriter;
-import java.io.Writer;
-import java.util.ArrayList;
-
-import org.onap.aaf.misc.env.APIException;
-import org.onap.aaf.misc.env.Env;
-import org.onap.aaf.misc.env.Trans;
-import org.onap.aaf.misc.xgen.html.State;
-import org.onap.aaf.misc.xgen.html.Thematic;
-
-
-public abstract class CacheGen<G extends XGen<G>> {
-       public static final int NO_FLAGS = 0x0;
-       public final static int PRETTY  = 0x1;
-       public final static int XML             = 0x2;
-       public final static int HTML4   = 0x4;
-       public final static int HTML5   = 0x8;
-
-       
-       private ArrayList<Section<G>> sections = new ArrayList<Section<G>>();
-       private int flags;
-       private final Thematic thematic;
-
-       public CacheGen(int flags, Code<G> code) throws APIException, IOException {
-               this.flags = flags;
-               final XGenBuff<G> buff = new XGenBuff<G>(flags,this);
-               // Run to gather Strings and Code Class Segments
-               buff.run(new Cache<G>() {
-                               @Override
-                               public void dynamic(G hgen, Code<G> code) {
-                                       sections.add(buff.newSection());
-                                       sections.add(new Dynamic(hgen.getIndent(),code));
-                               }
-                       },code);
-               sections.add(buff.newSection());
-       
-               // If Code implements thematic, set for later
-               thematic = code instanceof Thematic?(Thematic)code:null;
-
-       }
-       
-       public abstract G create(int htmlStyle, Writer w);
-
-       public void replay(State<Env> state, Trans trans, OutputStream os, String theme) throws IOException, APIException {
-               replay(state, trans, new OutputStreamWriter(os), theme);
-       }
-       
-       public void replay(State<Env> state, Trans trans,Writer w, String theme) throws IOException, APIException {
-               if(thematic!=null) {
-                       theme = thematic.themeResolve(theme);
-               }
-               /* Theme
-               trans.setTheme(theme);
-               int htmlStyle = state.htmlVer(theme);
-               */
-               
-               XGenBuff<G> buff = new XGenBuff<G>(flags,this);
-               
-               // forward
-               int indent = 0;
-               Section<G> s;
-               int i=0;
-               @SuppressWarnings("unchecked")
-               Section<G>[] reverse = new Section[sections.size()];
-               for(Section<G> section : sections) {
-                       s = section.use(state, trans, buff); // note, doesn't change cached, only dynamic, which is created for thread
-                       int tempIndent = s.getIndent();
-                       s.setIndent(indent);
-                       s.forward(w);
-                       s.setIndent(tempIndent);
-                       indent = tempIndent;
-                       reverse[i++]=s;
-               }
-
-               for(--i;i>=0;--i) {
-                       reverse[i].back(w);
-               }
-               w.flush();
-       }
-       
-       private class Dynamic extends Section<G> {
-               private Code<G> code;
-               
-               public Dynamic(int indent, Code<G> code) {
-                       this.code = code;
-                       this.indent = indent;
-               }
-
-               @SuppressWarnings("unchecked")
-               public Section<G> use(State<Env> state, Trans trans, XGenBuff<G> buff) throws APIException, IOException {
-                       // Clone Dynamic to make Thread Safe
-                       Dynamic d = new Dynamic(indent,code);
-                       buff.setIndent(indent);
-                       if(code instanceof DynamicCode) {
-                               buff.run(state,trans,Cache.Null.singleton(), (DynamicCode<G,?,? extends Trans>)code);
-                       } else {
-                               buff.run((Cache<G>)Cache.Null.singleton(), code);
-                       }
-                       Section<G> s = buff.newSection();
-                       d.indent = s.indent;
-                       d.forward = s.forward;
-                       d.backward = s.backward;
-                       return d;
-               }
-       }
-}
+/**\r
+ * ============LICENSE_START====================================================\r
+ * org.onap.aaf\r
+ * ===========================================================================\r
+ * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.\r
+ * ===========================================================================\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ * \r
+ *      http://www.apache.org/licenses/LICENSE-2.0\r
+ * \r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ * ============LICENSE_END====================================================\r
+ *\r
+ */\r
+\r
+package org.onap.aaf.misc.xgen;\r
+\r
+import java.io.IOException;\r
+import java.io.OutputStream;\r
+import java.io.OutputStreamWriter;\r
+import java.io.Writer;\r
+import java.util.ArrayList;\r
+\r
+import org.onap.aaf.misc.env.APIException;\r
+import org.onap.aaf.misc.env.Env;\r
+import org.onap.aaf.misc.env.Trans;\r
+import org.onap.aaf.misc.xgen.html.State;\r
+import org.onap.aaf.misc.xgen.html.Thematic;\r
+\r
+\r
+public abstract class CacheGen<G extends XGen<G>> {\r
+       public static final int NO_FLAGS = 0x0;\r
+       public final static int PRETTY  = 0x1;\r
+       public final static int XML             = 0x2;\r
+       public final static int HTML4   = 0x4;\r
+       public final static int HTML5   = 0x8;\r
+\r
+       \r
+       private ArrayList<Section<G>> sections = new ArrayList<Section<G>>();\r
+       private int flags;\r
+       private final Thematic thematic;\r
+\r
+       public CacheGen(int flags, Code<G> code) throws APIException, IOException {\r
+               this.flags = flags;\r
+               final XGenBuff<G> buff = new XGenBuff<G>(flags,this);\r
+               // Run to gather Strings and Code Class Segments\r
+               buff.run(new Cache<G>() {\r
+                               @Override\r
+                               public void dynamic(G hgen, Code<G> code) {\r
+                                       sections.add(buff.newSection());\r
+                                       sections.add(new Dynamic(hgen.getIndent(),code));\r
+                               }\r
+                       },code);\r
+               sections.add(buff.newSection());\r
+       \r
+               // If Code implements thematic, set for later\r
+               thematic = code instanceof Thematic?(Thematic)code:null;\r
+\r
+       }\r
+       \r
+       public abstract G create(int htmlStyle, Writer w);\r
+\r
+       public void replay(State<Env> state, Trans trans, OutputStream os, String theme) throws IOException, APIException {\r
+               replay(state, trans, new OutputStreamWriter(os), theme);\r
+       }\r
+       \r
+       public void replay(State<Env> state, Trans trans,Writer w, String theme) throws IOException, APIException {\r
+               if(thematic!=null) {\r
+                       theme = thematic.themeResolve(theme);\r
+               }\r
+               /* Theme\r
+               trans.setTheme(theme);\r
+               int htmlStyle = state.htmlVer(theme);\r
+               */\r
+               \r
+               XGenBuff<G> buff = new XGenBuff<G>(flags,this);\r
+               \r
+               // forward\r
+               int indent = 0;\r
+               Section<G> s;\r
+               int i=0;\r
+               @SuppressWarnings("unchecked")\r
+               Section<G>[] reverse = new Section[sections.size()];\r
+               for(Section<G> section : sections) {\r
+                       s = section.use(state, trans, buff); // note, doesn't change cached, only dynamic, which is created for thread\r
+                       int tempIndent = s.getIndent();\r
+                       s.setIndent(indent);\r
+                       s.forward(w);\r
+                       s.setIndent(tempIndent);\r
+                       indent = tempIndent;\r
+                       reverse[i++]=s;\r
+               }\r
+\r
+               for(--i;i>=0;--i) {\r
+                       reverse[i].back(w);\r
+               }\r
+               w.flush();\r
+       }\r
+       \r
+       private class Dynamic extends Section<G> {\r
+               private Code<G> code;\r
+               \r
+               public Dynamic(int indent, Code<G> code) {\r
+                       this.code = code;\r
+                       this.indent = indent;\r
+               }\r
+\r
+               @SuppressWarnings("unchecked")\r
+               public Section<G> use(State<Env> state, Trans trans, XGenBuff<G> buff) throws APIException, IOException {\r
+                       // Clone Dynamic to make Thread Safe\r
+                       Dynamic d = new Dynamic(indent,code);\r
+                       buff.setIndent(indent);\r
+                       if(code instanceof DynamicCode) {\r
+                               buff.run(state,trans,Cache.Null.singleton(), (DynamicCode<G,?,? extends Trans>)code);\r
+                       } else {\r
+                               buff.run((Cache<G>)Cache.Null.singleton(), code);\r
+                       }\r
+                       Section<G> s = buff.newSection();\r
+                       d.indent = s.indent;\r
+                       d.forward = s.forward;\r
+                       d.backward = s.backward;\r
+                       return d;\r
+               }\r
+       }\r
+}\r