]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - Tools/Java/Source/GenBuild/org/tianocore/build/id/PlatformIdentification.java
Added a test to check the # of threads iff threading is enabled. If it's not enabled...
[mirror_edk2.git] / Tools / Java / Source / GenBuild / org / tianocore / build / id / PlatformIdentification.java
... / ...
CommitLineData
1/** @file\r
2This file is to define PlatformIdentification class.\r
3\r
4Copyright (c) 2006, Intel Corporation\r
5All rights reserved. This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12**/\r
13\r
14package org.tianocore.build.id;\r
15import java.io.File;\r
16\r
17import org.tianocore.build.global.GlobalData;\r
18\r
19/**\r
20 This class is used to identify a platform. \r
21\r
22 @since GenBuild 1.0\r
23**/\r
24public class PlatformIdentification extends Identification{\r
25 \r
26 ///\r
27 /// FPD file\r
28 ///\r
29 private File fpdFile;\r
30 \r
31 /**\r
32 @param guid Guid\r
33 @param version Version\r
34 **/\r
35 public PlatformIdentification(String guid, String version){\r
36 super(guid, version);\r
37 }\r
38 \r
39 /**\r
40 @param name Name\r
41 @param guid Guid\r
42 @param version Version\r
43 **/\r
44 public PlatformIdentification(String name, String guid, String version){\r
45 super(name, guid, version);\r
46 }\r
47 \r
48 /**\r
49 @param name Name\r
50 @param guid Guid\r
51 @param version Version\r
52 @param fpdFilename Fpd File Name\r
53 **/\r
54 public PlatformIdentification(String name, String guid, String version, String fpdFilename){\r
55 super(name, guid, version);\r
56 this.fpdFile = new File(fpdFilename);\r
57 }\r
58 \r
59 /**\r
60 @param name Name\r
61 @param guid Guid\r
62 @param version Version\r
63 @param fpdFile Fpd File\r
64 **/\r
65 public PlatformIdentification(String name, String guid, String version, File fpdFile){\r
66 super(name, guid, version);\r
67 this.fpdFile = fpdFile;\r
68 }\r
69 \r
70 public String toString(){\r
71 return "Platform " + name + "["+guid+"]";\r
72 }\r
73\r
74 /**\r
75 Set FPD file. \r
76 @param fpdFile FPD File\r
77 **/\r
78 public void setFpdFile(File fpdFile) {\r
79 this.fpdFile = fpdFile;\r
80 }\r
81\r
82 /**\r
83 Get FPD file. \r
84 @return Fpd File\r
85 **/\r
86 public File getFpdFile() {\r
87 return fpdFile;\r
88 }\r
89 \r
90 /**\r
91 Get FPD relative file to workspace. \r
92 @return Fpd Relative file. \r
93 **/\r
94 public String getRelativeFpdFile (){\r
95 String relativeDir = fpdFile.getPath().substring(GlobalData.getWorkspacePath().length());\r
96 if(relativeDir.startsWith("\\") || relativeDir.startsWith("/")) {\r
97 relativeDir = relativeDir.substring(1);\r
98 }\r
99 return relativeDir;\r
100 }\r
101 \r
102 /**\r
103 Get Platform relative directory to workspace. \r
104 @return Platform relative directory\r
105 **/\r
106 public String getPlatformRelativeDir(){\r
107 String relativeDir = fpdFile.getParent().substring(GlobalData.getWorkspacePath().length());\r
108 if(relativeDir.startsWith("\\") || relativeDir.startsWith("/")) {\r
109 relativeDir = relativeDir.substring(1);\r
110 }\r
111 return relativeDir;\r
112 }\r
113}