summaryrefslogtreecommitdiff
path: root/Tools/Java/Source/Cpptasks/net/sf/antcontrib/cpptasks/compiler/CommandLineAssemblerConfiguration.java
blob: 542d4415590aebb2a6adaa56d6a84c17f8f68fdc (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
/*
 * 
 * Copyright 2001-2005 The Ant-Contrib project
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
package net.sf.antcontrib.cpptasks.compiler;

import java.io.File;

import org.apache.tools.ant.BuildException;

import net.sf.antcontrib.cpptasks.CCTask;
import net.sf.antcontrib.cpptasks.ProcessorParam;

/**
 * A configuration for an assember
 * 
 */
public final class CommandLineAssemblerConfiguration implements
                AssemblerConfiguration {

    private String[] args;

    private CommandLineAssembler assembler;

    private String[] endArgs;

    //
    // include path from environment variable
    // not explicitly stated in Ant script
    //
    private File[] envIncludePath;

    private String[] exceptFiles;

    private File[] includePath;

    private boolean rebuild;

    private File[] sysIncludePath;

    public CommandLineAssemblerConfiguration (CommandLineAssembler assembler,
                    File[] includePath, File[] sysIncludePath,
                    File[] envIncludePath, String[] args, boolean rebuild,
                    String[] endArgs, String[] exceptFiles) {
        if (assembler == null) {
            throw new NullPointerException("assembler");
        }
        if (args == null) {
            this.args = new String[0];
        } else {
            this.args = (String[]) args.clone();
        }
        if (includePath == null) {
            this.includePath = new File[0];
        } else {
            this.includePath = (File[]) includePath.clone();
        }
        if (sysIncludePath == null) {
            this.sysIncludePath = new File[0];
        } else {
            this.sysIncludePath = (File[]) sysIncludePath.clone();
        }
        if (envIncludePath == null) {
            this.envIncludePath = new File[0];
        } else {
            this.envIncludePath = (File[]) envIncludePath.clone();
        }
        this.assembler = assembler;
        this.rebuild = rebuild;
        this.endArgs = (String[]) endArgs.clone();
        this.exceptFiles = (String[]) exceptFiles.clone();
    }

    public int bid(String inputFile) {
        int assembleBid = assembler.bid(inputFile);
        return assembleBid;
    }

    public void assembler(CCTask task, File outputDir, String[] sourceFiles)
                    throws BuildException {
        try {
            assembler.assembler(task, outputDir, sourceFiles, args, endArgs);
        } catch (BuildException ex) {
            throw ex;
        }
    }

    public String getOutputFileName(String inputFile) {
        return assembler.getOutputFileName(inputFile);
    }

    public String getIdentifier() {
        return assembler.getCommand();
    }

    public ProcessorParam[] getParams() {
        return new ProcessorParam[0];
    }

    public boolean getRebuild() {
        return rebuild;
    }

    public String[] getPreArguments() {
        return (String[]) args.clone();
    }

    public String[] getEndArguments() {
        return (String[]) endArgs.clone();
    }
}