summaryrefslogtreecommitdiff
path: root/Tools/Java/Source/GenBuild/org/tianocore/build/toolchain/ToolChainConfig.java
blob: 9989ab65f848450b4090b404f4694536f8e888e9 (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
/** @file
  ToolChainConfig class.
  
  ToolChainConfig class parse all config files and get tool chain information.
  
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.build.toolchain;

import java.io.File;
import java.util.Iterator;
import java.util.Set;

import org.apache.tools.ant.Project;
import org.tianocore.build.exception.GenBuildException;
import org.tianocore.build.toolchain.ToolChainKey;
import org.tianocore.build.toolchain.ToolChainMap;


/**
 
  ToolChainConfig class parse all config files and get tool chain information.
  
 **/
public class ToolChainConfig {
    //
    // tool chain definitions
    //
    private ToolChainMap config = null;
    //
    // tool chain information (how many targets, archs, etc.)
    // 
    private ToolChainInfo info = new ToolChainInfo();

    /**
      Public construct method.
      
      @param toolChainFile File object representing the tool chain configuration file
    **/
    public ToolChainConfig (Project prj, File toolChainFile) throws GenBuildException {
        config = getToolChainConfig(prj, toolChainFile);
        parseToolChainDefKey(config.keySet());
    }

    /**
       Read tool chain definitions from specified file and put them in 
       ToolChainMap class.

       @param ConfigFile    The file containing tool chain definitions
       
       @return ToolChainMap
     **/
    private ToolChainMap getToolChainConfig(Project prj, File ConfigFile) throws GenBuildException {
        ToolChainMap map = new ToolChainMap();
        String[][] toolChainDef = ConfigReader.parse(prj, ConfigFile);
    
        for (int i = 0; i < toolChainDef[0].length; ++i) {
            map.put(toolChainDef[0][i], toolChainDef[1][i]);
        }

        return map;
    }

    /**
     Collect target, tool chain tag, arch and command information from key part
     of configuration
      
     @param toolChainDefKey The set of keys in tool chain configuration
     **/
    private void parseToolChainDefKey (Set<ToolChainKey> toolChainDefKey) {
        Iterator it = toolChainDefKey.iterator();
        while (it.hasNext()) {
            ToolChainKey key = (ToolChainKey)it.next();
            String[] keySet = key.getKeySet();
            info.addTargets(keySet[ToolChainElement.TARGET.value]);
            info.addTagnames(keySet[ToolChainElement.TOOLCHAIN.value]);
            info.addArchs(keySet[ToolChainElement.ARCH.value]);
            info.addCommands(keySet[ToolChainElement.TOOLCODE.value]);
            info.normalize();
        }
    }

    /**
     Return the tool chain configuration information in a Map form 
      
     @return ToolChainMap Tool chain configurations in a ToolChainMap
     **/
    public ToolChainMap getConfig() {
        return config;
    }

    /**
     Return the tool chain's target, arch, tag and commands information
     
      @return ToolChainInfo Tool chain information summary
     **/
    public ToolChainInfo getConfigInfo() {
        return info;
    }

    /**
     override toString()
     
     @return String The converted configuration string in name=value form
     **/
    public String toString() {
        StringBuffer ts = new StringBuffer(10240);

        Iterator it = config.keySet().iterator();
        while (it.hasNext()) {
            ToolChainKey key = (ToolChainKey)it.next();
            ts.append(key.toString() + " = ");
            ts.append(config.get(key) + "\n");
        }

        return ts.toString();
    }
}