]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/workspace/WorkspaceTools.java
Restructuring for better separation of Tool packages.
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / workspace / WorkspaceTools.java
diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/workspace/WorkspaceTools.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/workspace/WorkspaceTools.java
deleted file mode 100644 (file)
index 4e40d59..0000000
+++ /dev/null
@@ -1,847 +0,0 @@
-/** @file\r
-\r
- The file is used to init workspace and get basic information of workspace\r
\r
- Copyright (c) 2006, Intel Corporation\r
- All rights reserved. This program and the accompanying materials\r
- are licensed and made available under the terms and conditions of the BSD License\r
- which accompanies this distribution.  The full text of the license may be found at\r
- http://opensource.org/licenses/bsd-license.php\r
\r
- THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
- WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
\r
- **/\r
-package org.tianocore.frameworkwizard.workspace;\r
-\r
-import java.io.File;\r
-import java.io.IOException;\r
-import java.util.List;\r
-import java.util.Vector;\r
-\r
-import org.apache.xmlbeans.XmlCursor;\r
-import org.apache.xmlbeans.XmlException;\r
-import org.tianocore.DbPathAndFilename;\r
-import org.tianocore.IndustryStdIncludesDocument.IndustryStdIncludes;\r
-import org.tianocore.ModuleSurfaceAreaDocument.ModuleSurfaceArea;\r
-import org.tianocore.MsaFilesDocument.MsaFiles;\r
-import org.tianocore.PackageDependenciesDocument.PackageDependencies;\r
-import org.tianocore.PackageSurfaceAreaDocument.PackageSurfaceArea;\r
-import org.tianocore.PlatformSurfaceAreaDocument.PlatformSurfaceArea;\r
-import org.tianocore.SourceFilesDocument.SourceFiles;\r
-import org.tianocore.frameworkwizard.common.DataType;\r
-import org.tianocore.frameworkwizard.common.GlobalData;\r
-import org.tianocore.frameworkwizard.common.Log;\r
-import org.tianocore.frameworkwizard.common.OpenFile;\r
-import org.tianocore.frameworkwizard.common.SaveFile;\r
-import org.tianocore.frameworkwizard.common.Sort;\r
-import org.tianocore.frameworkwizard.common.Tools;\r
-import org.tianocore.frameworkwizard.common.Identifications.Identification;\r
-import org.tianocore.frameworkwizard.far.FarHeader;\r
-import org.tianocore.frameworkwizard.far.FarIdentification;\r
-import org.tianocore.frameworkwizard.module.Identifications.ModuleIdentification;\r
-import org.tianocore.frameworkwizard.module.Identifications.PcdCoded.PcdIdentification;\r
-import org.tianocore.frameworkwizard.module.Identifications.PcdCoded.PcdVector;\r
-import org.tianocore.frameworkwizard.packaging.PackageIdentification;\r
-import org.tianocore.frameworkwizard.platform.PlatformIdentification;\r
-\r
-public class WorkspaceTools {\r
-\r
-    public void addFarToDb(List<String> packageList, List<String> platformList, FarHeader far) {\r
-        //FrameworkDatabase fdb = openFrameworkDb();\r
-\r
-        for (int i = 0; i < packageList.size(); i++) {\r
-            DbPathAndFilename item = DbPathAndFilename.Factory.newInstance();\r
-            item.setFarGuid(far.getGuidValue());\r
-            item.setStringValue(packageList.get(i));\r
-            GlobalData.fdb.getPackageList().getFilenameList().add(item);\r
-        }\r
-\r
-        for (int i = 0; i < platformList.size(); i++) {\r
-            DbPathAndFilename item = DbPathAndFilename.Factory.newInstance();\r
-            item.setFarGuid(far.getGuidValue());\r
-            item.setStringValue(platformList.get(i));\r
-            GlobalData.fdb.getPlatformList().getFilenameList().add(item);\r
-        }\r
-\r
-        DbPathAndFilename farItem = DbPathAndFilename.Factory.newInstance();\r
-        farItem.setFarGuid(far.getGuidValue());\r
-        farItem.setStringValue(far.getFarName());\r
-        GlobalData.fdb.getFarList().getFilenameList().add(farItem);\r
-\r
-        String strFrameworkDbFilePath = Workspace.getCurrentWorkspace() + Workspace.getStrWorkspaceDatabaseFile();\r
-        strFrameworkDbFilePath = Tools.convertPathToCurrentOsType(strFrameworkDbFilePath);\r
-\r
-        try {\r
-            SaveFile.saveDbFile(strFrameworkDbFilePath, GlobalData.fdb);\r
-        } catch (Exception e) {\r
-            Log.err("Save Database File", e.getMessage());\r
-        }\r
-    }\r
-\r
-    public void removeFarFromDb(FarIdentification far) {\r
-        //\r
-        // Remove Packages\r
-        //\r
-        XmlCursor cursor = GlobalData.fdb.getPackageList().newCursor();\r
-        cursor.toFirstChild();\r
-        do {\r
-            DbPathAndFilename item = (DbPathAndFilename) cursor.getObject();\r
-\r
-            if (item.getFarGuid() != null && item.getFarGuid().equalsIgnoreCase(far.getGuid())) {\r
-                cursor.removeXml();\r
-            }\r
-        } while (cursor.toNextSibling());\r
-        cursor.dispose();\r
-\r
-        //\r
-        // Remove Platforms\r
-        //\r
-        cursor = GlobalData.fdb.getPlatformList().newCursor();\r
-        cursor.toFirstChild();\r
-        do {\r
-            DbPathAndFilename item = (DbPathAndFilename) cursor.getObject();\r
-            if (item.getFarGuid() != null && item.getFarGuid().equalsIgnoreCase(far.getGuid())) {\r
-                cursor.removeXml();\r
-            }\r
-        } while (cursor.toNextSibling());\r
-\r
-        //\r
-        // Remove Far\r
-        //\r
-        cursor = GlobalData.fdb.getFarList().newCursor();\r
-        cursor.toFirstChild();\r
-        do {\r
-            DbPathAndFilename item = (DbPathAndFilename) cursor.getObject();\r
-            if (item.getFarGuid() != null && item.getFarGuid().equalsIgnoreCase(far.getGuid())) {\r
-                cursor.removeXml();\r
-            }\r
-        } while (cursor.toNextSibling());\r
-        cursor.dispose();\r
-\r
-        String strFrameworkDbFilePath = Workspace.getCurrentWorkspace() + Workspace.getStrWorkspaceDatabaseFile();\r
-        strFrameworkDbFilePath = Tools.convertPathToCurrentOsType(strFrameworkDbFilePath);\r
-        try {\r
-            SaveFile.saveDbFile(strFrameworkDbFilePath, GlobalData.fdb);\r
-        } catch (Exception e) {\r
-            Log.err("Save Database File", e.getMessage());\r
-        }\r
-    }\r
-\r
-    public String getPackageFarGuid(Identification packageId) {\r
-        for (int index = 0; index < GlobalData.fdb.getPackageList().getFilenameList().size(); index++) {\r
-            DbPathAndFilename item = GlobalData.fdb.getPackageList().getFilenameArray(index);\r
-            String path = Workspace.getCurrentWorkspace() + DataType.FILE_SEPARATOR + item.getStringValue();\r
-            File tempFile = new File(path);\r
-            if (tempFile.getPath().equalsIgnoreCase(packageId.getPath())) {\r
-                return GlobalData.fdb.getPackageList().getFilenameArray(index).getFarGuid();\r
-            }\r
-        }\r
-\r
-        return null;\r
-    }\r
-\r
-    public String getPlatformFarGuid(Identification platformId) {\r
-        for (int index = 0; index < GlobalData.fdb.getPlatformList().getFilenameList().size(); index++) {\r
-            DbPathAndFilename item = GlobalData.fdb.getPlatformList().getFilenameArray(index);\r
-            String path = Workspace.getCurrentWorkspace() + DataType.FILE_SEPARATOR + item.getStringValue();\r
-            File tempFile = new File(path);\r
-            if (tempFile.getPath().equalsIgnoreCase(platformId.getPath())) {\r
-                return GlobalData.fdb.getPlatformList().getFilenameArray(index).getFarGuid();\r
-            }\r
-        }\r
-\r
-        return null;\r
-    }\r
-\r
-    public String getModuleFarGuid(Identification moduleId) {\r
-        PackageIdentification packageId = getPackageIdByModuleId(moduleId);\r
-        if (packageId != null) {\r
-            return getPackageFarGuid(packageId);\r
-        } else {\r
-            return null;\r
-        }\r
-    }\r
-\r
-    /**\r
-     Get all modules' paths from one package\r
-     \r
-     @return a Vector with all modules' path\r
-     \r
-     **/\r
-    public Vector<String> getAllModulesOfPackage(String path) {\r
-        Vector<String> modulePath = new Vector<String>();\r
-        PackageIdentification id = new PackageIdentification(null, null, null, path);\r
-        MsaFiles files = GlobalData.openingPackageList.getPackageSurfaceAreaFromId(id).getMsaFiles();\r
-        if (files != null) {\r
-            for (int index = 0; index < files.getFilenameList().size(); index++) {\r
-                String msaPath = files.getFilenameList().get(index);\r
-                msaPath = Tools.addFileSeparator(Tools.getFilePathOnly(path)) + msaPath;\r
-                msaPath = Tools.convertPathToCurrentOsType(msaPath);\r
-                modulePath.addElement(msaPath);\r
-            }\r
-        }\r
-\r
-        return modulePath;\r
-    }\r
-\r
-    /**\r
-     Get all Industry Std Includes' paths from one package\r
-     \r
-     @return a Vector with all paths\r
-     \r
-     **/\r
-    public Vector<String> getAllIndustryStdIncludesOfPackage(String path) {\r
-        Vector<String> includePath = new Vector<String>();\r
-        PackageIdentification id = new PackageIdentification(null, null, null, path);\r
-        IndustryStdIncludes files = GlobalData.openingPackageList.getPackageSurfaceAreaFromId(id)\r
-                                                                 .getIndustryStdIncludes();\r
-        if (files != null) {\r
-            for (int index = 0; index < files.getIndustryStdHeaderList().size(); index++) {\r
-                String temp = files.getIndustryStdHeaderList().get(index).getIncludeHeader();\r
-                temp = Tools.addFileSeparator(Tools.getFilePathOnly(path)) + temp;\r
-                temp = Tools.convertPathToCurrentOsType(temp);\r
-                includePath.addElement(temp);\r
-            }\r
-        }\r
-        return includePath;\r
-    }\r
-\r
-    /**\r
-     Get all package basic information form the FrameworkDatabase.db file\r
-     \r
-     @return vPackageList A vector includes all packages' basic information\r
-     \r
-     */\r
-    public Vector<PackageIdentification> getAllPackages() {\r
-        return GlobalData.vPackageList;\r
-    }\r
-\r
-    public Vector<FarIdentification> getAllFars() {\r
-\r
-        Vector<FarIdentification> v = new Vector<FarIdentification>();\r
-        for (int index = 0; index < GlobalData.fdb.getFarList().getFilenameList().size(); index++) {\r
-            DbPathAndFilename item = GlobalData.fdb.getFarList().getFilenameList().get(index);\r
-            FarIdentification far = new FarIdentification(item.getFarGuid(), item.getMd5Sum(), item.getStringValue());\r
-            v.addElement(far);\r
-        }\r
-        return v;\r
-    }\r
-\r
-    public Vector<PackageIdentification> getPackagesByFar(FarIdentification far) {\r
-        Identification id = null;\r
-\r
-        Vector<PackageIdentification> v = new Vector<PackageIdentification>();\r
-\r
-        for (int index = 0; index < GlobalData.fdb.getPackageList().getFilenameList().size(); index++) {\r
-            DbPathAndFilename item = GlobalData.fdb.getPackageList().getFilenameArray(index);\r
-            String path = Workspace.getCurrentWorkspace() + DataType.FILE_SEPARATOR + item.getStringValue();\r
-            path = Tools.convertPathToCurrentOsType(path);\r
-\r
-            if (item.getFarGuid() != null && item.getFarGuid().equalsIgnoreCase(far.getGuid())) {\r
-\r
-                try {\r
-                    id = Tools.getId(path, OpenFile.openSpdFile(path));\r
-                    v.addElement(new PackageIdentification(id));\r
-                } catch (IOException e) {\r
-                    Log.err("Open Package Surface Area " + path, e.getMessage());\r
-                } catch (XmlException e) {\r
-                    Log.err("Open Package Surface Area " + path, e.getMessage());\r
-                } catch (Exception e) {\r
-                    Log.err("Open Package Surface Area " + path, "Invalid file type");\r
-                }\r
-            }\r
-        }\r
-        return v;\r
-    }\r
-\r
-    public Vector<PlatformIdentification> getPlatformsByFar(FarIdentification far) {\r
-        Identification id = null;\r
-\r
-        Vector<PlatformIdentification> v = new Vector<PlatformIdentification>();\r
-\r
-        for (int index = 0; index < GlobalData.fdb.getPlatformList().getFilenameList().size(); index++) {\r
-            DbPathAndFilename item = GlobalData.fdb.getPlatformList().getFilenameArray(index);\r
-            String path = Workspace.getCurrentWorkspace() + DataType.FILE_SEPARATOR + item.getStringValue();\r
-            path = Tools.convertPathToCurrentOsType(path);\r
-\r
-            if (item.getFarGuid() != null && item.getFarGuid().equalsIgnoreCase(far.getGuid())) {\r
-                try {\r
-                    id = Tools.getId(path, OpenFile.openFpdFile(path));\r
-                    v.addElement(new PlatformIdentification(id));\r
-                } catch (IOException e) {\r
-                    Log.err("Open Platform Surface Area " + path, e.getMessage());\r
-                } catch (XmlException e) {\r
-                    Log.err("Open Platform Surface Area " + path, e.getMessage());\r
-                } catch (Exception e) {\r
-                    Log.err("Open Platform Surface Area " + path, "Invalid file type");\r
-                }\r
-            }\r
-        }\r
-        return v;\r
-    }\r
-\r
-    /**\r
-     Get all module basic information from a package\r
-     \r
-     @param id Package id\r
-     @return A vector includes all modules' basic information\r
-     \r
-     **/\r
-    public Vector<ModuleIdentification> getAllModules(PackageIdentification pid) {\r
-        Vector<ModuleIdentification> v = new Vector<ModuleIdentification>();\r
-        Vector<String> modulePaths = this.getAllModulesOfPackage(pid.getPath());\r
-        String modulePath = null;\r
-\r
-        for (int index = 0; index < modulePaths.size(); index++) {\r
-            modulePath = modulePaths.get(index);\r
-            ModuleIdentification id = GlobalData.openingModuleList.getIdByPath(modulePath);\r
-            if (id != null) {\r
-                v.addElement(id);\r
-            }\r
-        }\r
-        Sort.sortModules(v, DataType.SORT_TYPE_ASCENDING);\r
-        return v;\r
-    }\r
-\r
-    /**\r
-     Get all module basic information from a platform\r
-     \r
-     @param id Package id\r
-     @return A vector includes all modules' basic information\r
-     \r
-     **/\r
-    public Vector<ModuleIdentification> getAllModules(PlatformIdentification fid) {\r
-        Vector<ModuleIdentification> v = new Vector<ModuleIdentification>();\r
-        PlatformSurfaceArea fpd = GlobalData.openingPlatformList.getOpeningPlatformById(fid).getXmlFpd();\r
-        if (fpd.getFrameworkModules() != null) {\r
-            for (int index = 0; index < fpd.getFrameworkModules().getModuleSAList().size(); index++) {\r
-                String guid = fpd.getFrameworkModules().getModuleSAList().get(index).getModuleGuid();\r
-                String version = fpd.getFrameworkModules().getModuleSAList().get(index).getModuleVersion();\r
-                ModuleIdentification id = GlobalData.openingModuleList.getIdByGuidVersion(guid, version);\r
-                if (id != null) {\r
-                    boolean isFind = false;\r
-                    for (int indexOfModules = 0; indexOfModules < v.size(); indexOfModules++) {\r
-                        if (v.elementAt(indexOfModules).equals(id)) {\r
-                            isFind = true;\r
-                            break;\r
-                        }\r
-                    }\r
-                    if (!isFind) {\r
-                        v.addElement(id);\r
-                    }\r
-                }\r
-            }\r
-        }\r
-        Sort.sortModules(v, DataType.SORT_TYPE_ASCENDING);\r
-        return v;\r
-    }\r
-\r
-    /**\r
-     Get all module basic information form the FrameworkDatabase.db file\r
-     \r
-     @return vModuleList A vector includes all modules' basic information\r
-     \r
-     */\r
-    public Vector<ModuleIdentification> getAllModules() {\r
-        return GlobalData.vModuleList;\r
-    }\r
-\r
-    /**\r
-     Get all platform basic information form the FrameworkDatabase.db file\r
-     \r
-     @return vplatformList A vector includes all platforms' basic information\r
-     \r
-     */\r
-    public Vector<PlatformIdentification> getAllPlatforms() {\r
-        return GlobalData.vPlatformList;\r
-    }\r
-\r
-    /**\r
-     Get all Library Class Definitions from a package\r
-     \r
-     @return Vector\r
-     **/\r
-    public Vector<String> getAllLibraryClassDefinitionsFromPackage(PackageSurfaceArea spd) {\r
-        Vector<String> vector = new Vector<String>();\r
-        if (spd.getLibraryClassDeclarations() != null) {\r
-            if (spd.getLibraryClassDeclarations().getLibraryClassList().size() > 0) {\r
-                for (int index = 0; index < spd.getLibraryClassDeclarations().getLibraryClassList().size(); index++) {\r
-                    vector.addElement(spd.getLibraryClassDeclarations().getLibraryClassList().get(index).getName());\r
-                }\r
-            }\r
-        }\r
-        Sort.sortVectorString(vector, DataType.SORT_TYPE_ASCENDING);\r
-        return vector;\r
-    }\r
-\r
-    /**\r
-     Get all Protocol Definitions from a package\r
-     \r
-     @return Vector\r
-     **/\r
-    public Vector<String> getAllProtocolDeclarationsFromPackage(PackageSurfaceArea spd) {\r
-        Vector<String> vector = new Vector<String>();\r
-        if (spd.getProtocolDeclarations() != null) {\r
-            if (spd.getProtocolDeclarations().getEntryList().size() > 0) {\r
-                for (int index = 0; index < spd.getProtocolDeclarations().getEntryList().size(); index++) {\r
-                    vector.addElement(spd.getProtocolDeclarations().getEntryList().get(index).getCName());\r
-                }\r
-            }\r
-        }\r
-        Sort.sortVectorString(vector, DataType.SORT_TYPE_ASCENDING);\r
-        return vector;\r
-    }\r
-\r
-    /**\r
-     Get all Ppi Definitions from a package\r
-     \r
-     @return Vector\r
-     **/\r
-    public Vector<String> getAllPpiDeclarationsFromPackage(PackageSurfaceArea spd) {\r
-        Vector<String> vector = new Vector<String>();\r
-        if (spd.getPpiDeclarations() != null) {\r
-            if (spd.getPpiDeclarations().getEntryList().size() > 0) {\r
-                for (int index = 0; index < spd.getPpiDeclarations().getEntryList().size(); index++) {\r
-                    vector.addElement(spd.getPpiDeclarations().getEntryList().get(index).getCName());\r
-                }\r
-            }\r
-        }\r
-        Sort.sortVectorString(vector, DataType.SORT_TYPE_ASCENDING);\r
-        return vector;\r
-    }\r
-\r
-    /**\r
-     Get all Guid Definitions from a package\r
-     \r
-     @return Vector\r
-     **/\r
-    public Vector<String> getAllGuidDeclarationsFromPackage(PackageSurfaceArea spd, String type) {\r
-        Vector<String> vector = new Vector<String>();\r
-        boolean isFound = false;\r
-        if (spd.getGuidDeclarations() != null) {\r
-            if (spd.getGuidDeclarations().getEntryList().size() > 0) {\r
-                for (int index = 0; index < spd.getGuidDeclarations().getEntryList().size(); index++) {\r
-                    Vector<String> vArch = Tools.convertListToVector(spd.getGuidDeclarations().getEntryList()\r
-                                                                        .get(index).getGuidTypeList());\r
-                    for (int indexOfArch = 0; indexOfArch < vArch.size(); indexOfArch++) {\r
-                        if (vArch.get(indexOfArch).equals(type)) {\r
-                            isFound = true;\r
-                            break;\r
-                        }\r
-                    }\r
-                    if ((isFound) || (vArch == null) || (vArch.size() < 1)) {\r
-                        vector.addElement(spd.getGuidDeclarations().getEntryList().get(index).getCName());\r
-                        isFound = false;\r
-                    }\r
-                }\r
-            }\r
-        }\r
-        Sort.sortVectorString(vector, DataType.SORT_TYPE_ASCENDING);\r
-        return vector;\r
-    }\r
-\r
-    /**\r
-     Get all Pcd Definitions from a package\r
-     \r
-     @return Vector\r
-     **/\r
-    public PcdVector getAllPcdDeclarationsFromPackage(PackageSurfaceArea spd) {\r
-        PcdVector vector = new PcdVector();\r
-        if (spd.getPcdDeclarations() != null) {\r
-            if (spd.getPcdDeclarations().getPcdEntryList().size() > 0) {\r
-                for (int index = 0; index < spd.getPcdDeclarations().getPcdEntryList().size(); index++) {\r
-                    String name = spd.getPcdDeclarations().getPcdEntryList().get(index).getCName();\r
-                    String guidCName = spd.getPcdDeclarations().getPcdEntryList().get(index).getTokenSpaceGuidCName();\r
-                    String help = spd.getPcdDeclarations().getPcdEntryList().get(index).getHelpText();\r
-                    Vector<String> type = Tools.convertListToVector(spd.getPcdDeclarations().getPcdEntryList()\r
-                                                                       .get(index).getValidUsage());\r
-\r
-                    vector.addPcd(new PcdIdentification(name, guidCName, help, type));\r
-                }\r
-            }\r
-        }\r
-        Sort.sortPcds(vector, DataType.SORT_TYPE_ASCENDING);\r
-        return vector;\r
-    }\r
-\r
-    public Vector<String> getAllLibraryClassDefinitionsFromWorkspace() {\r
-        Vector<String> vector = new Vector<String>();\r
-        for (int index = 0; index < GlobalData.vPackageList.size(); index++) {\r
-            Vector<String> v = getAllLibraryClassDefinitionsFromPackage(GlobalData.openingPackageList\r
-                                                                                                     .getPackageSurfaceAreaFromId(GlobalData.vPackageList\r
-                                                                                                                                                         .get(index)));\r
-            if (v != null && v.size() > 0) {\r
-                vector.addAll(v);\r
-            }\r
-\r
-        }\r
-        Sort.sortVectorString(vector, DataType.SORT_TYPE_ASCENDING);\r
-        return vector;\r
-    }\r
-\r
-    public Vector<String> getAllLibraryClassDefinitionsFromPackages(Vector<PackageIdentification> vpid) {\r
-        Vector<String> vector = new Vector<String>();\r
-        for (int index = 0; index < vpid.size(); index++) {\r
-            Vector<String> v = getAllLibraryClassDefinitionsFromPackage(GlobalData.openingPackageList\r
-                                                                                                     .getPackageSurfaceAreaFromId(vpid\r
-                                                                                                                                      .get(index)));\r
-            if (v != null && v.size() > 0) {\r
-                vector.addAll(v);\r
-            }\r
-\r
-        }\r
-        Sort.sortVectorString(vector, DataType.SORT_TYPE_ASCENDING);\r
-        return vector;\r
-    }\r
-\r
-    public Vector<String> getAllProtocolDeclarationsFromWorkspace() {\r
-        Vector<String> vector = new Vector<String>();\r
-        for (int index = 0; index < GlobalData.vPackageList.size(); index++) {\r
-            Vector<String> v = getAllProtocolDeclarationsFromPackage(GlobalData.openingPackageList\r
-                                                                                                  .getPackageSurfaceAreaFromId(GlobalData.vPackageList\r
-                                                                                                                                                      .get(index)));\r
-            if (v != null && v.size() > 0) {\r
-                vector.addAll(v);\r
-            }\r
-        }\r
-        Sort.sortVectorString(vector, DataType.SORT_TYPE_ASCENDING);\r
-        return vector;\r
-    }\r
-\r
-    public Vector<String> getAllProtocolDeclarationsFromPackages(Vector<PackageIdentification> vpid) {\r
-        Vector<String> vector = new Vector<String>();\r
-        for (int index = 0; index < vpid.size(); index++) {\r
-            Vector<String> v = getAllProtocolDeclarationsFromPackage(GlobalData.openingPackageList\r
-                                                                                                  .getPackageSurfaceAreaFromId(vpid\r
-                                                                                                                                   .get(index)));\r
-            if (v != null && v.size() > 0) {\r
-                vector.addAll(v);\r
-            }\r
-        }\r
-        Sort.sortVectorString(vector, DataType.SORT_TYPE_ASCENDING);\r
-        return vector;\r
-    }\r
-\r
-    public Vector<String> getAllPpiDeclarationsFromWorkspace() {\r
-        Vector<String> vector = new Vector<String>();\r
-        for (int index = 0; index < GlobalData.vPackageList.size(); index++) {\r
-            Vector<String> v = getAllPpiDeclarationsFromPackage(GlobalData.openingPackageList\r
-                                                                                             .getPackageSurfaceAreaFromId(GlobalData.vPackageList\r
-                                                                                                                                                 .get(index)));\r
-            if (v != null && v.size() > 0) {\r
-                vector.addAll(v);\r
-            }\r
-        }\r
-        Sort.sortVectorString(vector, DataType.SORT_TYPE_ASCENDING);\r
-        return vector;\r
-    }\r
-\r
-    public Vector<String> getAllPpiDeclarationsFromPackages(Vector<PackageIdentification> vpid) {\r
-        Vector<String> vector = new Vector<String>();\r
-        for (int index = 0; index < vpid.size(); index++) {\r
-            Vector<String> v = getAllPpiDeclarationsFromPackage(GlobalData.openingPackageList\r
-                                                                                             .getPackageSurfaceAreaFromId(vpid\r
-                                                                                                                              .get(index)));\r
-            if (v != null && v.size() > 0) {\r
-                vector.addAll(v);\r
-            }\r
-        }\r
-        Sort.sortVectorString(vector, DataType.SORT_TYPE_ASCENDING);\r
-        return vector;\r
-    }\r
-\r
-    public Vector<String> getAllGuidDeclarationsFromWorkspace(String type) {\r
-        Vector<String> vector = new Vector<String>();\r
-        for (int index = 0; index < GlobalData.vPackageList.size(); index++) {\r
-            Vector<String> v = getAllGuidDeclarationsFromPackage(\r
-                                                                 GlobalData.openingPackageList\r
-                                                                                              .getPackageSurfaceAreaFromId(GlobalData.vPackageList\r
-                                                                                                                                                  .get(index)),\r
-                                                                 type);\r
-            if (v != null && v.size() > 0) {\r
-                vector.addAll(v);\r
-            }\r
-\r
-        }\r
-        Sort.sortVectorString(vector, DataType.SORT_TYPE_ASCENDING);\r
-        return vector;\r
-    }\r
-\r
-    public Vector<String> getAllGuidDeclarationsFromPackages(Vector<PackageIdentification> vpid, String type) {\r
-        Vector<String> vector = new Vector<String>();\r
-        for (int index = 0; index < vpid.size(); index++) {\r
-            Vector<String> v = getAllGuidDeclarationsFromPackage(\r
-                                                                 GlobalData.openingPackageList\r
-                                                                                              .getPackageSurfaceAreaFromId(vpid\r
-                                                                                                                               .get(index)),\r
-                                                                 type);\r
-            if (v != null && v.size() > 0) {\r
-                vector.addAll(v);\r
-            }\r
-\r
-        }\r
-        Sort.sortVectorString(vector, DataType.SORT_TYPE_ASCENDING);\r
-        return vector;\r
-    }\r
-\r
-    public PcdVector getAllPcdDeclarationsFromWorkspace() {\r
-        PcdVector vector = new PcdVector();\r
-        for (int index = 0; index < GlobalData.openingPackageList.size(); index++) {\r
-            PcdVector v = getAllPcdDeclarationsFromPackage(GlobalData.openingPackageList\r
-                                                                                        .getPackageSurfaceAreaFromId(GlobalData.vPackageList\r
-                                                                                                                                            .get(index)));\r
-            if (v != null && v.size() > 0) {\r
-                vector.addAll(v);\r
-            }\r
-\r
-        }\r
-        Sort.sortPcds(vector, DataType.SORT_TYPE_ASCENDING);\r
-        return vector;\r
-    }\r
-\r
-    public PcdVector getAllPcdDeclarationsFromPackages(Vector<PackageIdentification> vpid) {\r
-        PcdVector vector = new PcdVector();\r
-        for (int index = 0; index < vpid.size(); index++) {\r
-            PcdVector v = getAllPcdDeclarationsFromPackage(GlobalData.openingPackageList\r
-                                                                                        .getPackageSurfaceAreaFromId(vpid\r
-                                                                                                                         .get(index)));\r
-            if (v != null && v.size() > 0) {\r
-                vector.addAll(v);\r
-            }\r
-\r
-        }\r
-        Sort.sortPcds(vector, DataType.SORT_TYPE_ASCENDING);\r
-        return vector;\r
-    }\r
-\r
-    /**\r
-     Find a module's package's id\r
-     \r
-     @param id input module id\r
-     @return package id\r
-     \r
-     **/\r
-    public PackageIdentification getPackageIdByModuleId(Identification id) {\r
-        Vector<String> modulePaths = new Vector<String>();\r
-        Identification mid = null;\r
-        String packagePath = null;\r
-        String modulePath = null;\r
-\r
-        //\r
-        // For each package, get all modules list\r
-        //\r
-        for (int indexI = 0; indexI < GlobalData.vPackageList.size(); indexI++) {\r
-            packagePath = GlobalData.vPackageList.elementAt(indexI).getPath();\r
-            modulePaths = this.getAllModulesOfPackage(packagePath);\r
-            for (int indexJ = 0; indexJ < modulePaths.size(); indexJ++) {\r
-                modulePath = modulePaths.get(indexJ);\r
-                mid = GlobalData.openingModuleList.getIdByPath(modulePath);\r
-                //\r
-                // Check id\r
-                //\r
-                if (mid.equals(id)) {\r
-                    return GlobalData.vPackageList.elementAt(indexI);\r
-                }\r
-\r
-            }\r
-        }\r
-\r
-        return null;\r
-    }\r
-\r
-    /**\r
-     Add module information to package surface area\r
-     \r
-     @param mid\r
-     @throws IOException\r
-     @throws XmlException\r
-     @throws Exception\r
-     \r
-     **/\r
-    public void addModuleToPackage(ModuleIdentification mid, PackageSurfaceArea spd) throws IOException, XmlException,\r
-                                                                                    Exception {\r
-        String packagePath = mid.getPackageId().getPath();\r
-        String modulePath = mid.getPath();\r
-        if (spd == null) {\r
-            spd = OpenFile.openSpdFile(packagePath);\r
-        }\r
-        MsaFiles msaFile = spd.getMsaFiles();\r
-        if (msaFile == null) {\r
-            msaFile = MsaFiles.Factory.newInstance();\r
-        }\r
-        packagePath = packagePath.substring(0, packagePath.lastIndexOf(DataType.FILE_SEPARATOR));\r
-        String fn = Tools.getRelativePath(modulePath, packagePath);\r
-        msaFile.addNewFilename();\r
-        msaFile.setFilenameArray(msaFile.getFilenameList().size() - 1, fn);\r
-        spd.setMsaFiles(msaFile);\r
-        SaveFile.saveSpdFile(mid.getPackageId().getPath(), spd);\r
-    }\r
-\r
-    /**\r
-     Add input package into database\r
-     \r
-     @param id\r
-     * @throws Exception \r
-     \r
-     **/\r
-    public void addPackageToDatabase(PackageIdentification id) throws Exception {\r
-        String path = id.getPath();\r
-        path = Tools.getRelativePath(path, Workspace.getCurrentWorkspace());\r
-\r
-        DbPathAndFilename filename = DbPathAndFilename.Factory.newInstance();\r
-        filename.setStringValue(path);\r
-        GlobalData.fdb.getPackageList().addNewFilename();\r
-        GlobalData.fdb.getPackageList().setFilenameArray(GlobalData.fdb.getPackageList().sizeOfFilenameArray() - 1,\r
-                                                         filename);\r
-        String strFrameworkDbFilePath = Workspace.getCurrentWorkspace() + Workspace.getStrWorkspaceDatabaseFile();\r
-        strFrameworkDbFilePath = Tools.convertPathToCurrentOsType(strFrameworkDbFilePath);\r
-        SaveFile.saveDbFile(strFrameworkDbFilePath, GlobalData.fdb);\r
-    }\r
-\r
-    /**\r
-     Add input package into database\r
-     \r
-     @param id\r
-     * @throws Exception \r
-     \r
-     **/\r
-    public void addPlatformToDatabase(PlatformIdentification id) throws Exception {\r
-        String path = id.getPath();\r
-        path = Tools.getRelativePath(path, Workspace.getCurrentWorkspace());\r
-\r
-        DbPathAndFilename filename = DbPathAndFilename.Factory.newInstance();\r
-        filename.setStringValue(path);\r
-        GlobalData.fdb.getPlatformList().addNewFilename();\r
-        GlobalData.fdb.getPlatformList().setFilenameArray(GlobalData.fdb.getPlatformList().sizeOfFilenameArray() - 1,\r
-                                                          filename);\r
-        String strFrameworkDbFilePath = Workspace.getCurrentWorkspace() + Workspace.getStrWorkspaceDatabaseFile();\r
-        strFrameworkDbFilePath = Tools.convertPathToCurrentOsType(strFrameworkDbFilePath);\r
-        SaveFile.saveDbFile(strFrameworkDbFilePath, GlobalData.fdb);\r
-    }\r
-\r
-    /**\r
-     Get all file's path from one module\r
-     \r
-     @param path\r
-     @return\r
-     @throws IOException\r
-     @throws XmlException\r
-     @throws Exception\r
-     \r
-     **/\r
-    public Vector<String> getAllFilesPathOfModule(String path) {\r
-        Vector<String> v = new Vector<String>();\r
-        path = Tools.convertPathToCurrentOsType(path);\r
-        v.addElement(path);\r
-        ModuleSurfaceArea msa = GlobalData.openingModuleList\r
-                                                            .getModuleSurfaceAreaFromId(GlobalData.openingModuleList\r
-                                                                                                                    .getIdByPath(path));\r
-        if (msa != null) {\r
-            //\r
-            // Get all files' path of a module\r
-            //\r
-            SourceFiles sf = msa.getSourceFiles();\r
-            if (sf != null) {\r
-                for (int index = 0; index < sf.getFilenameList().size(); index++) {\r
-                    String temp = sf.getFilenameList().get(index).getStringValue();\r
-                    temp = Tools.addFileSeparator(Tools.getFilePathOnly(path)) + temp;\r
-                    v.addElement(Tools.convertPathToCurrentOsType(temp));\r
-                }\r
-            }\r
-        }\r
-\r
-        return v;\r
-    }\r
-\r
-    /**\r
-     Get all file's path from one package\r
-     \r
-     @param path\r
-     @return\r
-     @throws IOException\r
-     @throws XmlException\r
-     @throws Exception\r
-     \r
-     **/\r
-    public Vector<String> getAllFilesPathOfPakcage(String path) {\r
-        Vector<String> v = new Vector<String>();\r
-        path = Tools.convertPathToCurrentOsType(path);\r
-        //\r
-        // First add package\r
-        //\r
-        v.addElement(path);\r
-\r
-        //\r
-        // Add the package's industry std includes one by one\r
-        //\r
-        Vector<String> f1 = new Vector<String>();\r
-        f1 = getAllIndustryStdIncludesOfPackage(path);\r
-        for (int index = 0; index < f1.size(); index++) {\r
-            v.addElement(f1.get(index));\r
-        }\r
-\r
-        //\r
-        // Add module's files one by one\r
-        //\r
-        f1 = new Vector<String>();\r
-        f1 = getAllModulesOfPackage(path);\r
-        for (int indexI = 0; indexI < f1.size(); indexI++) {\r
-            Vector<String> f2 = getAllFilesPathOfModule(f1.get(indexI));\r
-            for (int indexJ = 0; indexJ < f2.size(); indexJ++) {\r
-                v.addElement(f2.get(indexJ));\r
-            }\r
-        }\r
-\r
-        return v;\r
-    }\r
-\r
-    /**\r
-     Get a module's all package dependencies\r
-     \r
-     @param mid The module id\r
-     @return A vector of all package dependency ids\r
-     \r
-     **/\r
-    public Vector<PackageIdentification> getPackageDependenciesOfModule(ModuleIdentification mid) {\r
-        Vector<PackageIdentification> vpid = new Vector<PackageIdentification>();\r
-        ModuleSurfaceArea msa = GlobalData.openingModuleList.getModuleSurfaceAreaFromId(mid);\r
-        if (msa != null) {\r
-            PackageDependencies pd = msa.getPackageDependencies();\r
-            if (pd != null) {\r
-                for (int index = 0; index < pd.getPackageList().size(); index++) {\r
-                    String guid = pd.getPackageList().get(index).getPackageGuid();\r
-                    String version = pd.getPackageList().get(index).getPackageVersion();\r
-                    PackageIdentification pid = GlobalData.openingPackageList.getIdByGuidVersion(guid, version);\r
-                    if (pid != null) {\r
-                        vpid.addElement(pid);\r
-                    }\r
-                }\r
-            }\r
-        }\r
-        return vpid;\r
-    }\r
-\r
-    public Vector<String> getAllModuleGuidXref() {\r
-        Vector<String> v = new Vector<String>();\r
-        for (int index = 0; index < GlobalData.openingModuleList.size(); index++) {\r
-            ModuleIdentification id = GlobalData.openingModuleList.getOpeningModuleByIndex(index).getId();\r
-            v.addElement(id.getGuid() + " " + id.getName());\r
-        }\r
-        return v;\r
-    }\r
-\r
-    public Vector<String> getModuleArch(ModuleIdentification id) {\r
-        Vector<String> v = new Vector<String>();\r
-        ModuleSurfaceArea msa = null;\r
-        if (id != null) {\r
-            msa = GlobalData.openingModuleList.getModuleSurfaceAreaFromId(id);\r
-        }\r
-        if (msa != null) {\r
-            if (msa.getModuleDefinitions() != null) {\r
-                v = Tools.convertListToVector(msa.getModuleDefinitions().getSupportedArchitectures());\r
-            }\r
-        }\r
-        return v;\r
-    }\r
-}\r