summaryrefslogtreecommitdiff
path: root/plugins/java-decompiler/engine/src/org/jetbrains/java/decompiler/struct/gen/MethodDescriptor.java
blob: 7dbc16c317f2e11a0e05ccf78d3e6433a408b4ed (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
/*
 * Copyright 2000-2014 JetBrains s.r.o.
 *
 * 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 org.jetbrains.java.decompiler.struct.gen;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class MethodDescriptor {

  public VarType[] params;

  public VarType ret;


  public static MethodDescriptor parseDescriptor(String mdescr) {

    MethodDescriptor md = new MethodDescriptor();

    List<String> lst = new ArrayList<String>();
    String[] pars = mdescr.split("[()]");

    String par = pars[1];

    int indexFrom = -1, ind, index = 0;
    int len = par.length();

    for (; index < len; index++) {

      switch (par.charAt(index)) {
        case '[':
          if (indexFrom < 0) {
            indexFrom = index;
          }
          break;
        case 'L':
          ind = par.indexOf(";", index);
          lst.add(par.substring(indexFrom < 0 ? index : indexFrom, ind + 1));
          index = ind;
          indexFrom = -1;
          break;
        default:
          lst.add(par.substring(indexFrom < 0 ? index : indexFrom, index + 1));
          indexFrom = -1;
      }
    }

    lst.add(pars[2]);


    md.params = new VarType[lst.size() - 1];

    int i = 0;
    for (; i < lst.size() - 1; i++) {
      md.params[i] = new VarType(lst.get(i));
    }
    md.ret = new VarType(lst.get(i));

    return md;
  }

  public String getDescriptor() {
    String res = "(";

    for (int j = 0; j < params.length; j++) {
      res += params[j].toString();
    }

    res += ")" + ret.toString();

    return res;
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) return true;
    if (o == null || !(o instanceof MethodDescriptor)) return false;

    MethodDescriptor md = (MethodDescriptor)o;
    return ret.equals(md.ret) && Arrays.equals(params, md.params);
  }

  @Override
  public int hashCode() {
    int result = ret.hashCode();
    result = 31 * result + params.length;
    return result;
  }
}