summaryrefslogtreecommitdiffstats
path: root/tags/cpp-1.0-incubating-M2-RC1/sca/tools/scagen/src/org/apache/tuscany/sca/cpp/tools/common/Headers.java
blob: 533e1fd14a16ccfdf62dcdbe185f7ff1b256e6cb (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
/**
 *
 *  Licensed to the Apache Software Foundation (ASF) under one
 *  or more contributor license agreements.  See the NOTICE file
 *  distributed with this work for additional information
 *  regarding copyright ownership.  The ASF licenses this file
 *  to you 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.
 */

/* @version $Rev$ $Date$ */

/*
 * Branched from the original class that was also contributed to the
 * org.apache.axis.tools.common package.
 */
package org.apache.tuscany.sca.cpp.tools.common;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

public class Headers implements FileActor {
    private ArrayList instanceMethods = new ArrayList();

    private ArrayList staticMethods = new ArrayList();

    private ArrayList allMethods = new ArrayList();

    private ArrayList classNames = new ArrayList();

    private boolean failed = false;

    public void actOnFile(File header, File ignored, int depth)
            throws Exception {
        if (Configuration.fileExcluded(header.getName())) {
            Utils.outputDebugString("excluding " + header + "...");
            return;
        }

        Utils.outputDebugString("pre-parsing " + header + "...");
        FileReader fr = null;
        try {
            fr = new FileReader(header);
        } catch (FileNotFoundException fnfe) {
            throw fnfe;
        }
        BufferedReader inputFile = new BufferedReader(fr);

        try {
            InputCppSourceCode code = new InputCppSourceCode(inputFile, header
                    .getName());
            Iterator it = code.getPartIterator();
            while (it.hasNext()) {
                FilePart fp = (FilePart) (it.next());
                if (fp.getType() != FilePart.PROTOTYPE)
                    continue;
                PrototypePart pp = (PrototypePart) fp;
                String className = pp.className();
                if (null == className)
                    continue;
                String trimClassName = className;
                if (className.endsWith("::"))
                    trimClassName = className.substring(0,
                            className.length() - 2);
                if (!classNames.contains(trimClassName))
                    classNames.add(trimClassName);

                Signature sign = new Signature(fp.toString());
                sign.setClassName(className);
                //Tuscany
                sign.setScope(pp.getSignature().getScope());
                sign.setNamespace(pp.getSignature().getNamespace());

                // "Clean" the signature by stripping off attributes,
                // semicolons, etc
                Signature cleaned = new Signature(sign.toStringWithoutAttrs());
                //Tuscany - problem
                cleaned.setClassName(className);
                cleaned.setScope(pp.getSignature().getScope());
                cleaned.setNamespace(pp.getSignature().getNamespace());
                //Tuscany - end of problem
                
                
                if (-1 == sign.getAttributes().indexOf("static"))
                    instanceMethods.add(cleaned);
                else
                    staticMethods.add(cleaned);
            }
        } catch (ParsingException pe) {
            failed = true;
        }

        inputFile.close();
        allMethods.addAll(staticMethods);
        allMethods.addAll(instanceMethods);
    }

    public boolean failed() {
        return failed;
    }

    public boolean isInstanceMethod(Signature sign) {
        Iterator it = instanceMethods.iterator();
        while (it.hasNext()) {
            Signature s = (Signature) it.next();
            if (s.equals(sign))
                return true;
        }
        return false;
    }

    public boolean isStaticMethod(Signature sign) {
        Iterator it = staticMethods.iterator();
        while (it.hasNext()) {
            Signature s = (Signature) it.next();
            if (s.equals(sign))
                return true;
        }
        return false;
    }

    public List getMethods(String method) {
        ArrayList list = new ArrayList();
        if (null == method)
            return list;

        Iterator it = allMethods.iterator();
        while (it.hasNext()) {
            Signature s = (Signature) it.next();
            if (method.equals(s.getMethodName()))
                list.add(s);
        }
        return list;
    }

    /**
     * Tuscany change - a method to get all the method signatures at once
     */
    public List getAllMethods() {
        ArrayList list = new ArrayList();
        Iterator it = allMethods.iterator();
        while (it.hasNext()) {
            Signature s = (Signature) it.next();
            list.add(s);
        }
        return list;
    }

    public boolean isClassName(String text) {
        return classNames.contains(text);
    }
}