summaryrefslogtreecommitdiff
path: root/Tools/Java/Source/ContextTool/org/tianocore/context/TargetFile.java
blob: 122adf03ce6646c0112ffa458db3519b672fd0ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
/** @file
  File is TargetFile class which is used to generate the new target.txt. 
 
Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution.  The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
 
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
**/
package org.tianocore.context;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;

public class TargetFile {

   
    
    /** 
     * validate the filename
     * @param String filename : the name of target file
     * 
     * @return true or false
     **/
    public static boolean validateFilename(String filename) {
        
        String workspacePath = System.getenv("WORKSPACE");
        
        Fd = new File(workspacePath + File.separator + "Tools" + File.separator + "Conf" + File.separator + filename);
        
        if (Fd.exists() == true && Fd.canRead() == true)
            return true;
        else
            return false;
    }
    

    /**
     * create a empty temp file, which is located at the same directory with target file
     * @param String filename : the name of target temp file
     * @return true or false
     **/
    public static boolean createTempFile(String filename) {

        String workspacePath = System.getenv("WORKSPACE");
        
        TempFd = new File(workspacePath + File.separator + "Tools" + File.separator + "Conf" + File.separator + filename + "tmp");

        if (TempFd.exists() == true) {
            if (TempFd.delete() == false) {
                System.out.printf("%n%s%n", "target.txttmp has been existed, and failed in deletion!");
                return false;
            }
        }
        try {
            TempFd.createNewFile();
        } catch (IOException e) {
            System.out.printf("%n%s%n", "Failed in creation of the temp file:target.txttmp!");
            return false;
        }

        return true;
    }

    /**
     * read from target.txt and write to target.txttmp, del target.txt, rename
     * @param no paremeter
     * @return true or false
     **/
    public static boolean readwriteFile() {

        if (Fd.canRead() != true)
            return false;

        BufferedReader br = null;
        BufferedWriter bw = null;
        String textLine = null;

        try {
            br = new BufferedReader(new FileReader(Fd));
        } catch (FileNotFoundException e) {
            System.out
                    .println("\n# Creating BufferedReader fail!");
            return false;
        }
        try {
            bw = new BufferedWriter(new FileWriter(TempFd));
        } catch (IOException e) {
            System.out.println("\n# Creating the BufferedWriter fail!");
            return false;
        }
        
        //
        //TARGET_ARCH must be in front of TARGET!!! according to the target.txt
        //
        try {
            while ((textLine = br.readLine()) != null) {
                //
                // the line is composed of Space
                //
                if (textLine.trim().compareToIgnoreCase("") == 0) {
                    bw.write(textLine);
                    bw.newLine();
                } 
                //
                // the line starts with "#", and no "="
                //
                else if ((textLine.trim().charAt(0) == '#') && (textLine.indexOf("=") == -1)){
                    bw.write(textLine);
                    bw.newLine();
                } else {
                    //
                    //modify at the first time, and there should be "*ACTIVE_PLATFORM*=*" in the line
                    //
                    if (textLine.indexOf("ACTIVE_PLATFORM") != -1) {
                        if(pflag == true){
                            if(textLine.trim().charAt(0) == '#'){
                                if(ParseParameter.npflag == true) {
                                    bw.write(ParseParameter.curpstr);
                                }else{
                                    bw.write(textLine);
                                }
                                bw.newLine();
                                pflag = false;
                                continue;
                            }
                            if(ParseParameter.npflag == true) {
                                bw.write(ParseParameter.curpstr);
                            } else {
                                bw.write(textLine);
                            }
                            bw.newLine();
                            pflag = false;
                        }
                    } else if (textLine.indexOf("TARGET_ARCH") != -1) {
                        if(aflag == true){
                            if(textLine.trim().charAt(0) == '#'){
                                if(ParseParameter.naflag == true) {
                                    bw.write(ParseParameter.curastr);
                                }else{
                                    bw.write(textLine);
                                }
                                bw.newLine();
                                aflag = false;
                                continue;
                            }
                            if(ParseParameter.naflag == true) {
                                bw.write(ParseParameter.curastr);
                            } else {
                                bw.write(textLine);
                            }
                            bw.newLine();
                            aflag = false;
                        }
                    } else if (textLine.indexOf("TARGET") != -1) {
                        if(tflag == true){
                            if(textLine.trim().charAt(0) == '#'){
                                if(ParseParameter.ntflag == true) {
                                    bw.write(ParseParameter.curtstr);
                                }else{
                                    bw.write(textLine);
                                }
                                bw.newLine();
                                tflag = false;
                                continue;
                            }
                            if(ParseParameter.ntflag == true) {
                                bw.write(ParseParameter.curtstr);
                            } else {
                                bw.write(textLine);
                            }
                            bw.newLine();
                            tflag = false;
                        }
                    } else if (textLine.indexOf("TOOL_CHAIN_CONF") != -1) {
                        if(cflag == true){
                            if(textLine.trim().charAt(0) == '#'){
                                if(ParseParameter.ncflag == true) {
                                    bw.write(ParseParameter.curcstr);
                                }else{
                                    bw.write(textLine);
                                }
                                bw.newLine();
                                cflag = false;
                                continue;
                            }
                            if(ParseParameter.ncflag == true) {
                                bw.write(ParseParameter.curcstr);
                            } else {
                                bw.write(textLine);
                            }
                            bw.newLine();
                            cflag = false;
                        }
                    } else if (textLine.indexOf("TOOL_CHAIN_TAG") != -1) {
                        if(nflag == true){
                            if(textLine.trim().charAt(0) == '#'){
                                if(ParseParameter.nnflag == true) {
                                    bw.write(ParseParameter.curnstr);
                                }else{
                                    bw.write(textLine);
                                }
                                bw.newLine();
                                nflag = false;
                                continue;
                            }
                            if(ParseParameter.nnflag == true) {
                                bw.write(ParseParameter.curnstr);
                            } else {
                                bw.write(textLine);
                            }
                            bw.newLine();
                            nflag = false;
                        }
                    } else if (textLine.indexOf("MAX_CONCURRENT_THREAD_NUMBER") != -1) {
                        if(mflag == true){
                            if(textLine.trim().charAt(0) == '#'){
                                if(ParseParameter.nmflag == true) {
                                    bw.write(ParseParameter.curmstr);
                                }else{
                                    bw.write(textLine);
                                }
                                bw.newLine();
                                mflag = false;
                                continue;
                            }
                            if(ParseParameter.nmflag == true) {
                                bw.write(ParseParameter.curmstr);
                            } else {
                                bw.write(textLine);
                            }
                            bw.newLine();
                            mflag = false;
                        }
                    }else if (textLine.indexOf("MULTIPLE_THREAD") != -1) {
                        if(meflag == true){
                            if(textLine.trim().charAt(0) == '#'){
                                if(ParseParameter.nmeflag == true) {
                                    bw.write(ParseParameter.curmestr);
                                }else{
                                    bw.write(textLine);
                                }
                                bw.newLine();
                                meflag = false;
                                continue;
                            }
                            if(ParseParameter.nmeflag == true) {
                                bw.write(ParseParameter.curmestr);
                            } else {
                                bw.write(textLine);
                            }
                            bw.newLine();
                            meflag = false;
                        }
                    }
                }
            }
            //
            //user maybe delete the line *ACTIVE_PLATFORM*=*
            //
            if( (pflag == true) && (ParseParameter.npflag == true) ){
                bw.write(ParseParameter.curpstr);
                bw.newLine();
            } else if ( (tflag == true) && (ParseParameter.ntflag == true) ){
                bw.write(ParseParameter.curtstr);
                bw.newLine();
            } else if ( (aflag == true) && (ParseParameter.naflag == true) ){
                bw.write(ParseParameter.curastr);
                bw.newLine();
            } else if ( (cflag == true) && (ParseParameter.ncflag == true) ){
                bw.write(ParseParameter.curcstr);
                bw.newLine();
            } else if ( (nflag == true) && (ParseParameter.nnflag == true) ){
                bw.write(ParseParameter.curnstr);
                bw.newLine();
            } else if ( (meflag == true) && (ParseParameter.nmeflag == true) ){
                bw.write(ParseParameter.curmestr);
                bw.newLine();
            } else if ( (mflag == true) && (ParseParameter.nmflag == true) ){
                bw.write(ParseParameter.curmstr);
                bw.newLine();
            }
        } catch (IOException e) {
            System.out.println("\n# Reading or Writing file fail!");
            return false;
        }

        try {
            br.close();
            bw.close();
        } catch (IOException e) {
            System.out
                    .println("\n# Closing BufferedReader&BufferedWriter fail!");
            return false;
        }

        if (Fd.delete() == false) {
            System.out.println("\n# Deleting file fail!");
            return false;
        }
        if (TempFd.renameTo(Fd) == false) {
            System.out.println("\n#  Renaming file failed!");
            return false;
        }

        return true;
    }
    
    /**
     * read the file and output the lines which include setting
     * @param File fd : the File of the target file
     * @return String: the current setting
     **/
    public static boolean readFile() {
        
        BufferedReader br = null;
        String textLine = null;

        try {
            br = new BufferedReader(new FileReader(Fd));
        } catch (FileNotFoundException e) {
            System.out
                    .println("\n# Creating BufferedReader fail!");
            return false;
        }
        try {
            while ((textLine = br.readLine()) != null) {
                //
                // the line is composed of Space
                //
                if (textLine.trim().compareToIgnoreCase("") == 0) {
                    continue;
                } 
                //
                // the line starts with "#"
                //
                else if ((textLine.trim().charAt(0) == '#')){
                    continue;
                } else {
                    if (textLine.indexOf("ACTIVE_PLATFORM") != -1) {
                        ParseParameter.curpstr = textLine;
                    } else if (textLine.indexOf("TARGET_ARCH") != -1) {
                        ParseParameter.curastr = textLine;
                    } else if (textLine.indexOf("TARGET") != -1) {
                        ParseParameter.curtstr = textLine;
                    } else if (textLine.indexOf("TOOL_CHAIN_CONF") != -1) {
                        ParseParameter.curcstr = textLine;
                    } else if (textLine.indexOf("TOOL_CHAIN_TAG") != -1) {
                        ParseParameter.curnstr = textLine;
                    } else if (textLine.indexOf("MAX_CONCURRENT_THREAD_NUMBER") != -1) {
                        ParseParameter.curmstr = textLine;
                    } else if (textLine.indexOf("MULTIPLE_THREAD") != -1) {
                        ParseParameter.curmestr = textLine;
                    }
                }
            }
        } catch (IOException e) {
            System.out.println("\n# Reading file fail!");
            return false;
        }

        try {
            br.close();
        } catch (IOException e) {
            System.out
                    .println("\n# Closing BufferedReader fail!");
            return false;
        }
        return true;
    }
    

    ///
    /// point to target.txttmp, a temp file, which is created and deleted during the tool's runtime.
    ///
    private static File TempFd;
    
    ///
    /// point to target.txt.
    ///
    private static File Fd;
    
    ///
    /// when the flag is true, the corresponding str should be add at the end of file.
    ///
    private static boolean pflag = true;
    private static boolean tflag = true;
    private static boolean aflag = true;
    private static boolean cflag = true;
    private static boolean nflag = true;
    private static boolean mflag = true;
    private static boolean meflag = true;


}