Fixed Sonar Cloud Critical Issues
[cli.git] / framework / src / main / java / org / onap / cli / fw / output / print / OnapCommandPrint.java
index 614ef5d..14e37c3 100644 (file)
@@ -28,21 +28,23 @@ import java.util.StringTokenizer;
 
 import org.apache.commons.csv.CSVFormat;
 import org.apache.commons.csv.CSVPrinter;
-import org.onap.cli.fw.conf.OnapCommandConstants;
 import org.onap.cli.fw.error.OnapCommandOutputPrintingFailed;
 import org.onap.cli.fw.output.OnapCommandPrintDirection;
 
+import com.google.gson.JsonParser;
 import com.fasterxml.jackson.databind.ObjectMapper;
 import com.fasterxml.jackson.dataformat.yaml.YAMLMapper;
 
 import net.minidev.json.JSONArray;
 import net.minidev.json.JSONObject;
+import net.minidev.json.JSONValue;
 /**
  * Oclip Command Table print.
  *
  */
 public class OnapCommandPrint {
 
+
     public static final int MAX_COLUMN_LENGTH = 50;
 
     private OnapCommandPrintDirection direction;
@@ -71,10 +73,7 @@ public class OnapCommandPrint {
      * @return list
      */
     public List<String> getColumn(String header) {
-        if (this.data.get(header) == null) {
-            this.data.put(header, new ArrayList<String>());
-        }
-        return this.data.get(header);
+       return this.data.computeIfAbsent(header, k -> new ArrayList<String>());
     }
 
     public boolean isPrintTitle() {
@@ -99,6 +98,21 @@ public class OnapCommandPrint {
         return max;
     }
 
+    public List<List<Object>>  addTitle(List<List<Object>> rows, boolean isNormalize){
+        if (this.isPrintTitle()) {
+            List<Object> list = new ArrayList<>();
+            for (String key : this.data.keySet()) {
+                if (isNormalize && key != null && key.length() > MAX_COLUMN_LENGTH) {
+                    list.add(splitIntoList(key, MAX_COLUMN_LENGTH));
+                } else {
+                    list.add(key);
+                }
+            }
+            rows.add(list);
+        }
+        return  rows;
+    }
+
     /**
      * Helps to form the rows from columns.
      *
@@ -113,17 +127,7 @@ public class OnapCommandPrint {
         List<List<Object>> rows = new ArrayList<>();
 
         // add title
-        if (this.isPrintTitle()) {
-            List<Object> list = new ArrayList<>();
-            for (String key : this.data.keySet()) {
-                if (isNormalize && key != null && key.length() > MAX_COLUMN_LENGTH) {
-                    list.add(splitIntoList(key, MAX_COLUMN_LENGTH));
-                } else {
-                    list.add(key);
-                }
-            }
-            rows.add(list);
-        }
+        rows = addTitle(rows, isNormalize);
 
         // form row
         for (int i = 0; i < this.findMaxRows(); i++) {
@@ -167,7 +171,7 @@ public class OnapCommandPrint {
         }
         // new line is converted to space char
         if (inp.contains("\n")) {
-            inp = inp.replaceAll("\n", "");
+            inp = inp.replace("\n", "");
         }
 
         StringTokenizer tok = new StringTokenizer(inp, " ");
@@ -236,35 +240,60 @@ public class OnapCommandPrint {
         }
     }
 
+    public Object getJsonNodeOrString(String value) {
+        try {
+            return JSONValue.parse(value);
+        } catch (Exception e) {
+            return value;
+        }
+    }
+
+    public JSONObject printPortrait(List<List<Object>> rows){
+        JSONObject result = new JSONObject();
+        for (int i=1; i<rows.size(); i++) {
+            if (rows.get(i).get(1) != null)
+                result.put(rows.get(i).get(0).toString(), this.getJsonNodeOrString(rows.get(i).get(1).toString()));
+        }
+        return result;
+    }
+
     public String printJson() {
         List<List<Object>> rows = this.formRows(false);
 
-        JSONArray array = new JSONArray();
+        if (this.direction.equals(OnapCommandPrintDirection.PORTRAIT)) {
+            JSONObject result = printPortrait(rows);
+            return result.toJSONString();
+        } else {
+            JSONArray array = new JSONArray();
 
-        //skip first row title
-        List<Object> titleRow = rows.get(0);
+            //skip first row title
+            List<Object> titleRow = rows.get(0);
 
-        for (int i=1; i<rows.size(); i++) {
-            JSONObject rowO = new JSONObject();
+            for (int i=1; i<rows.size(); i++) {
+                JSONObject rowO = new JSONObject();
+
+                for (int j=0; j<titleRow.size(); j++) {
+                    if (rows.get(i).get(j) != null)
+                        rowO.put(titleRow.get(j).toString(), this.getJsonNodeOrString(rows.get(i).get(j).toString()));
+                }
 
-            for (int j=0; j<titleRow.size(); j++) {
-                if (rows.get(i).get(j) != null)
-                    rowO.put(titleRow.get(j).toString(), rows.get(i).get(j).toString());
+                array.add(rowO);
+            }
+            try {
+                return JsonParser.parseString(array.toJSONString()).toString();
+            } catch (Exception e) { // NOSONAR
+                return array.toJSONString();
             }
 
-            array.add(rowO);
         }
-
-        JSONObject json = new JSONObject();
-        json.put(OnapCommandConstants.RESULTS, array);
-        return json.toJSONString();
     }
-
+    
     public String printYaml() throws OnapCommandOutputPrintingFailed {
         try {
             return new YAMLMapper().writeValueAsString(new ObjectMapper().readTree(this.printJson()));
         } catch (IOException  e) {
             throw new OnapCommandOutputPrintingFailed(e);  // NOSONAR
         }
+
     }
 }