]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Tools.java
1. Merge ModuleDefinitions to MsaHeader
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / common / Tools.java
index 26604d0d39a2d738c84e5d86765eb3651e2d8e95..a5345019ea2bb20e616265591dbcb3f84453c124 100644 (file)
@@ -27,6 +27,16 @@ import javax.swing.JComboBox;
 import javax.swing.JList;\r
 import javax.swing.JOptionPane;\r
 \r
+import org.tianocore.ModuleSurfaceAreaDocument.ModuleSurfaceArea;\r
+import org.tianocore.MsaHeaderDocument.MsaHeader;\r
+import org.tianocore.PackageSurfaceAreaDocument.PackageSurfaceArea;\r
+import org.tianocore.PlatformHeaderDocument.PlatformHeader;\r
+import org.tianocore.PlatformSurfaceAreaDocument.PlatformSurfaceArea;\r
+import org.tianocore.SpdHeaderDocument.SpdHeader;\r
+import org.tianocore.frameworkwizard.module.Identifications.ModuleIdentification;\r
+import org.tianocore.frameworkwizard.packaging.PackageIdentification;\r
+import org.tianocore.frameworkwizard.platform.PlatformIdentification;\r
+\r
 /**\r
  The class is used to provides some useful interfaces  \r
  \r
@@ -38,35 +48,6 @@ public class Tools {
     //\r
     public static String dirForNewSpd = null;\r
 \r
-    /**\r
-     Used for test\r
-     \r
-     @param args\r
-     \r
-     **/\r
-    public static void main(String[] args) {\r
-        System.out.println(getCurrentDateTime());\r
-        //        Vector<String> v = new Vector<String>();\r
-        //        Vector<String> v1 = new Vector<String>();\r
-        //        \r
-        //        v.addElement("CAC");\r
-        //        v1.addElement("1111");\r
-        //        v.addElement("1AC");\r
-        //        v1.addElement("2222");\r
-        //        v.addElement("ABC");\r
-        //        v1.addElement("3333");\r
-        //        v.addElement("0C");\r
-        //        v1.addElement("4444");\r
-        //        v.addElement("AAC");\r
-        //        v1.addElement("5555");\r
-        //        Vector<Integer> vs = new Vector<Integer>();\r
-        //        vs = Tools.getVectorSortSequence(v, DataType.Sort_Type_Ascending);\r
-        //        Tools.sortVectorString(v1, Tools.getVectorSortSequence(v, DataType.Sort_Type_Ascending));\r
-        //        \r
-        //        Tools.sortVectorString(v, DataType.Sort_Type_Ascending);\r
-        //        Tools.sortVectorString(v, DataType.Sort_Type_Descending);\r
-    }\r
-\r
     /**\r
      Get current date and time and format it as "yyyy-MM-dd HH:mm"\r
      \r
@@ -320,7 +301,7 @@ public class Tools {
      \r
      **/\r
     public static void showInformationMessage(String arg0) {\r
-        JOptionPane.showConfirmDialog(null, arg0, "Error", JOptionPane.DEFAULT_OPTION, JOptionPane.INFORMATION_MESSAGE);\r
+        JOptionPane.showConfirmDialog(null, arg0, "Info", JOptionPane.DEFAULT_OPTION, JOptionPane.INFORMATION_MESSAGE);\r
     }\r
 \r
     /**\r
@@ -336,4 +317,181 @@ public class Tools {
         }\r
         return arg0;\r
     }\r
+\r
+    /**\r
+     Wrap single line long input string to multiple short line string by word\r
+     \r
+     @param arg0 input string\r
+     @return wraped string\r
+     \r
+     **/\r
+    public static String wrapStringByWord(String arg0) {\r
+        int intMaxLength = 40;\r
+        String strReturn = "";\r
+        String strTemp = "";\r
+        boolean isCopied = true;\r
+\r
+        //\r
+        // Convert string to array by " "\r
+        //\r
+        String s[] = arg0.split(" ");\r
+        if (arg0.indexOf(" ") == -1) {\r
+            s[0] = arg0;\r
+        }\r
+\r
+        //\r
+        // Add each string of array one by one\r
+        //\r
+        for (int index = 0; index < s.length; index++) {\r
+            String ss = s[index];\r
+            isCopied = false;\r
+            //\r
+            // The word length > defined line length\r
+            //\r
+            if (ss.length() > intMaxLength) {\r
+                //\r
+                // Finish previous line\r
+                //\r
+                if (!isCopied) {\r
+                    strReturn = strReturn + strTemp + DataType.UNIX_LINE_SEPARATOR;\r
+                    strTemp = "";\r
+                }\r
+                //\r
+                // Separater to short lines\r
+                //\r
+                while (ss.length() > 0) {\r
+                    if (ss.length() > intMaxLength) {\r
+                        strReturn = strReturn + s[index].substring(0, intMaxLength - 1) + DataType.UNIX_LINE_SEPARATOR;\r
+                        ss = ss.substring(intMaxLength);\r
+                        isCopied = true;\r
+                    } else {\r
+                        strTemp = ss;\r
+                        ss = "";\r
+                        isCopied = false;\r
+                    }\r
+                }\r
+            } else {\r
+                if ((strTemp + " " + ss).length() <= intMaxLength) {\r
+                    strTemp = strTemp + " " + ss;\r
+                    continue;\r
+                } else {\r
+                    strReturn = strReturn + strTemp + DataType.UNIX_LINE_SEPARATOR;\r
+                    strTemp = ss + " ";\r
+                    isCopied = true;\r
+                }\r
+            }\r
+        }\r
+\r
+        if (!isCopied) {\r
+            strReturn = strReturn + strTemp;\r
+        }\r
+\r
+        return strReturn;\r
+    }\r
+    \r
+    public static String convertUnicodeHexStringToString(String str) {\r
+        //\r
+        // Handle if str is null or empty\r
+        //\r
+        if (str == null) {\r
+            return "";\r
+        }\r
+        if (str.equals("")) {\r
+            return "";\r
+        }\r
+\r
+        String returnString = "";\r
+        String[] strArray = str.split(" ");\r
+        for (int index = 0; index < strArray.length; index++) {\r
+            String s = strArray[index];\r
+            if (s.length() == 6 && s.indexOf(DataType.HEX_STRING_HEADER) == 0) {\r
+                s = s.substring(DataType.HEX_STRING_HEADER.length());\r
+            } else {\r
+                Log.err("convertUnicodeHexStringToString", "Wrong input string: " + str);\r
+                continue;\r
+            }\r
+            //\r
+            // Change hex to dec\r
+            //\r
+            int dec = Integer.parseInt(s, 16);\r
+            \r
+            returnString = returnString + (char)(dec);\r
+        }\r
+        return returnString;\r
+    }\r
+\r
+    /**\r
+     Convert input string to unicode hex string\r
+     \r
+     @param str input string\r
+     @return unicode hex string\r
+     \r
+     **/\r
+    public static String convertStringToUnicodeHexString(String str) {\r
+        //\r
+        // Handle if str is null or empty\r
+        //\r
+        if (str == null) {\r
+            return "";\r
+        }\r
+        if (str.equals("")) {\r
+            return "";\r
+        }\r
+\r
+        //\r
+        // convert string to hex string\r
+        //\r
+        String hexString = "";\r
+        for (int index = 0; index < str.length(); index++) {\r
+            int codePoint = str.codePointAt(index);\r
+            String s = Integer.toHexString(codePoint);\r
+            //\r
+            // Make the string to four length\r
+            //\r
+            if (s.length() == 3) {\r
+                s = "0" + s;\r
+            } else if (s.length() == 2) {\r
+                s = "00" + s;\r
+            } else if (s.length() == 1) {\r
+                s = "000" + s;\r
+            }\r
+\r
+            //\r
+            // Add the string to return hex string\r
+            //\r
+            hexString = hexString + DataType.HEX_STRING_HEADER + s + " ";\r
+        }\r
+\r
+        //\r
+        // return hex string\r
+        //\r
+        return hexString.trim();\r
+    }\r
+    \r
+    public static ModuleIdentification getId(String path, ModuleSurfaceArea msa) {\r
+        MsaHeader head = msa.getMsaHeader();\r
+        String name = head.getModuleName();\r
+        String guid = head.getGuidValue();\r
+        String version = head.getVersion();\r
+        ModuleIdentification id = new ModuleIdentification(name, guid, version, path);\r
+        return id;\r
+    }\r
+\r
+    public static PackageIdentification getId(String path, PackageSurfaceArea spd) {\r
+        SpdHeader head = spd.getSpdHeader();\r
+        String name = head.getPackageName();\r
+        String guid = head.getGuidValue();\r
+        String version = head.getVersion();\r
+        PackageIdentification id = new PackageIdentification(name, guid, version, path);\r
+        return id;\r
+    }\r
+\r
+    public static PlatformIdentification getId(String path, PlatformSurfaceArea fpd) {\r
+        PlatformHeader head = fpd.getPlatformHeader();\r
+        String name = head.getPlatformName();\r
+        String guid = head.getGuidValue();\r
+        String version = head.getVersion();\r
+        PlatformIdentification id = new PlatformIdentification(name, guid, version, path);\r
+        return id;\r
+    }\r
 }\r