]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/GenBuild/org/tianocore/build/global/OutputManager.java
Fixed EDKT102;
[mirror_edk2.git] / Tools / Source / GenBuild / org / tianocore / build / global / OutputManager.java
1 /** @file
2 OutputManager class.
3
4 OutputManager class set output directories for every module by BUILD_MODE.
5
6 Copyright (c) 2006, Intel Corporation
7 All rights reserved. This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
9 which accompanies this distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
11
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14 **/
15 package org.tianocore.build.global;
16
17 import org.apache.tools.ant.Project;
18 import java.io.File;
19
20 /**
21 OutputManager class is used to setup output directories (BIN_DIR, DEST_DIR_OUTPUT,
22 DEST_DIR_DEBUG).
23
24 @since GenBuild 1.0
25 **/
26 public class OutputManager {
27
28 ///
29 /// means intermediate files will put under Module's dir
30 ///
31 private String MODULE = "MODULE";
32
33 ///
34 /// mean intermediate files will put under a unify dir
35 ///
36 private String UNIFIED = "UNIFIED";
37
38
39 private String userdir;
40
41 private String type;
42 ///
43 /// Singleton Design Pattern
44 ///
45 private static OutputManager object;
46
47 public synchronized static OutputManager getInstance() {
48 if ( object == null ) {
49 object = new OutputManager();
50 }
51 return object;
52 }
53
54 public void setup(String userdir, String type) {
55 this.userdir = userdir;
56 this.type = type;
57 }
58
59 /**
60 Setup BIN_DIR, DEST_DIR_OUTPUT and DEST_DIR_OUTPUT, following are the rules:
61
62 <p>Divide all output files into two types: one is final files, such as FFS
63 file for driver module while LIB file for library module; another is
64 intermediate files, such AutoGen.c, OBJ files, Section files and so on.
65
66 <p>In FPD, OutputDirectory element is used to specify where to put the output
67 files to. There are two mode (MODULE | UNIFIED). MODULE mode means that all
68 output files will put to the module directory while UNIFIED mode means that
69 all output files will put together. Default is UNIFIED mode.
70
71 <p>BUILD_DIR is the base directory for current module build. By default,
72 BUILD_DIR is PLATFORM_DIR/Build in UNIFIED mode while is MODULE_DIR/Build
73 in MODULE mode. Of course, user can customize BUILD_DIR. If user-defined
74 BUILD_DIR is relative path, then look as related to WORKSPACE_DIR.
75
76 <p>Then, BIN_DIR is BUILD_DIR/TARGET/TOOLCHAIN/ARCH;
77
78 <p>FV_DIR is BUILD_DIR/TARGET/TOOLCHAIN/FV;
79
80 <p>DEST_DIR_DEBUG | DEST_DIR_OUTPUT is:
81 BIN_DIR/PACKAGE_RELATIVE_DIR/MODULE_RELATIVE_DIR/DEBUG | OUTPUT
82
83
84 @param project current ANT build Project
85 @param userdir user-defined directory
86 @param type the module build type (MODULE or UNIFIED)
87 **/
88 public void update(Project project) {
89 // GlobalData.log.info("" + userdir + ":" + type);
90 //
91 // Default mode is UNIFIED.
92 //
93 if (type != null && type.equalsIgnoreCase(MODULE)) {
94 type = MODULE;
95 }
96 else {
97 type = UNIFIED;
98 }
99
100 //
101 // default BUILD_DIR value
102 //
103 String buildDir;
104 if(type.equals(MODULE)){
105 buildDir = project.getProperty("MODULE_DIR") + File.separatorChar + "Build";
106 }
107 else {
108 buildDir = project.getProperty("PLATFORM_DIR") + File.separatorChar + "Build";
109 }
110
111 //
112 // If user define BUILD_DIR
113 //
114 if (userdir != null && ! userdir.equals("")) {
115 File buildFile = new File(userdir);
116 if (buildFile.isAbsolute()){
117 buildDir = userdir;
118 }
119 //
120 // If path is not absolute, then look as related to WORKSPACE_DIR
121 //
122 else {
123 buildDir = GlobalData.getWorkspacePath() + File.separatorChar + userdir;
124 }
125 }
126
127 //
128 // Define BIN_DIR and FV_DIR
129 //
130 String binDir = buildDir + File.separatorChar + project.getProperty("TARGET")
131 + File.separatorChar + project.getProperty("TOOLCHAIN")
132 + File.separatorChar + project.getProperty("ARCH") ;
133
134 String fvDir = buildDir + File.separatorChar + project.getProperty("TARGET")
135 + File.separatorChar + project.getProperty("TOOLCHAIN")
136 + File.separatorChar + "FV";
137
138 //
139 // Define DEST_DIR_OUTPUT and DEST_DIR_DEBUG
140 //
141 String destDir = binDir + File.separatorChar + project.getProperty("PACKAGE_RELATIVE_DIR")
142 + File.separatorChar + project.getProperty("MODULE_RELATIVE_DIR");
143
144 //
145 // Set properties
146 //
147 project.setProperty("BUILD_DIR", buildDir.replaceAll("(\\\\)", "/"));
148 project.setProperty("FV_DIR", fvDir.replaceAll("(\\\\)", "/"));
149 project.setProperty("BIN_DIR", binDir.replaceAll("(\\\\)", "/"));
150 project.setProperty("DEST_DIR_DEBUG", (destDir + File.separatorChar + "DEBUG").replaceAll("(\\\\)", "/"));
151 project.setProperty("DEST_DIR_OUTPUT", (destDir + File.separatorChar + "OUTPUT").replaceAll("(\\\\)", "/"));
152
153 //
154 // Create all directory if necessary
155 //
156 (new File(buildDir)).mkdirs();
157 (new File(fvDir)).mkdirs();
158 (new File(binDir)).mkdirs();
159 (new File(destDir + File.separatorChar + "DEBUG")).mkdirs();
160 (new File(destDir + File.separatorChar + "OUTPUT")).mkdirs();
161 }
162
163 public boolean prepareBuildDir(Project project){
164 boolean isUnified = true;
165
166 if (type.equalsIgnoreCase("MODULE")) {
167 isUnified = false;
168 }
169
170 String buildDir = project.getProperty("PLATFORM_DIR") + File.separatorChar + "Build";
171 //
172 // If user define BUILD_DIR
173 //
174 if (userdir != null && ! userdir.equals("")) {
175 File buildFile = new File(userdir);
176 if (buildFile.isAbsolute()){
177 buildDir = userdir;
178 }
179 //
180 // If path is not absolute, then look as related to WORKSPACE_DIR
181 //
182 else {
183 buildDir = GlobalData.getWorkspacePath() + File.separatorChar + userdir;
184 }
185 }
186 //
187 // Set to property
188 //
189 project.setProperty("BUILD_DIR", buildDir.replaceAll("(\\\\)", "/"));
190
191 //
192 // Create all directory if necessary
193 //
194 (new File(buildDir)).mkdirs();
195 return isUnified;
196 }
197
198 }