1
1
package de .espend .idea .php .toolbox .type ;
2
2
3
3
import com .intellij .openapi .application .ApplicationManager ;
4
- import com .intellij .openapi .project .DumbService ;
5
4
import com .intellij .openapi .project .Project ;
6
5
import com .intellij .psi .PsiElement ;
7
6
import com .intellij .util .containers .ContainerUtil ;
8
7
import com .jetbrains .php .PhpIndex ;
9
8
import com .jetbrains .php .lang .psi .elements .*;
10
- import com .jetbrains .php .lang .psi .resolve .types .PhpTypeProvider2 ;
9
+ import com .jetbrains .php .lang .psi .resolve .types .PhpType ;
10
+ import com .jetbrains .php .lang .psi .resolve .types .PhpTypeProvider3 ;
11
11
import de .espend .idea .php .toolbox .PhpToolboxApplicationService ;
12
12
import de .espend .idea .php .toolbox .dict .json .JsonRawLookupElement ;
13
13
import de .espend .idea .php .toolbox .dict .json .JsonRegistrar ;
14
14
import de .espend .idea .php .toolbox .dict .json .JsonSignature ;
15
15
import de .espend .idea .php .toolbox .extension .PhpToolboxProviderInterface ;
16
16
import de .espend .idea .php .toolbox .matcher .php .container .ContainerConditions ;
17
+ import de .espend .idea .php .toolbox .symfony .Symfony2InterfacesUtil ;
17
18
import de .espend .idea .php .toolbox .type .utils .PhpTypeProviderUtil ;
18
19
import de .espend .idea .php .toolbox .utils .ExtensionProviderUtil ;
19
- import de .espend .idea .php .toolbox .symfony .Symfony2InterfacesUtil ;
20
20
import org .apache .commons .lang .StringUtils ;
21
21
import org .jetbrains .annotations .NotNull ;
22
22
import org .jetbrains .annotations .Nullable ;
26
26
/**
27
27
* @author Daniel Espendiller <daniel@espendiller.net>
28
28
*/
29
- public class PhpToolboxTypeProvider implements PhpTypeProvider2 {
29
+ public class PhpToolboxTypeProvider implements PhpTypeProvider3 {
30
30
31
31
final static char TRIM_KEY = '\u0195' ;
32
32
@@ -37,12 +37,7 @@ public char getKey() {
37
37
38
38
@ Nullable
39
39
@ Override
40
- public String getType (PsiElement e ) {
41
-
42
- if (DumbService .getInstance (e .getProject ()).isDumb ()) {
43
- return null ;
44
- }
45
-
40
+ public PhpType getType (PsiElement e ) {
46
41
if (!(e instanceof FunctionReference )) {
47
42
return null ;
48
43
}
@@ -56,7 +51,7 @@ public String getType(PsiElement e) {
56
51
Set <String > methods = new HashSet <>();
57
52
Set <String > functions = new HashSet <>();
58
53
for (JsonRegistrar type : types ) {
59
- for (JsonSignature signature : ContainerUtil .filter (type .getSignatures (), ContainerConditions .RETURN_TYPE_TYPE )) {
54
+ for (JsonSignature signature : ContainerUtil .filter (new ArrayList <>( type .getSignatures () ), ContainerConditions .RETURN_TYPE_TYPE )) {
60
55
if (signature .getFunction () != null && StringUtils .isNotBlank (signature .getFunction ())) {
61
56
functions .add (signature .getFunction ());
62
57
}
@@ -71,22 +66,28 @@ public String getType(PsiElement e) {
71
66
// Foo::app('bar')
72
67
if (e instanceof MethodReference ) {
73
68
if (methods .contains (((FunctionReference ) e ).getName ())) {
74
- return PhpTypeProviderUtil .getReferenceSignature ((FunctionReference ) e , TRIM_KEY );
69
+ String referenceSignature = PhpTypeProviderUtil .getReferenceSignature ((FunctionReference ) e , TRIM_KEY );
70
+ if (referenceSignature != null ) {
71
+ return new PhpType ().add ("#" + this .getKey () + referenceSignature );
72
+ }
75
73
}
76
74
77
75
return null ;
78
76
}
79
77
80
78
// foo('bar')
81
79
if (functions .contains (((FunctionReference ) e ).getName ())) {
82
- return PhpTypeProviderUtil .getReferenceSignature ((FunctionReference ) e , TRIM_KEY );
80
+ String referenceSignature = PhpTypeProviderUtil .getReferenceSignature ((FunctionReference ) e , TRIM_KEY );
81
+ if (referenceSignature != null ) {
82
+ return new PhpType ().add ("#" + this .getKey () + referenceSignature );
83
+ }
83
84
}
84
85
85
86
return null ;
86
87
}
87
88
88
89
@ Override
89
- public Collection <? extends PhpNamedElement > getBySignature (String expression , Project project ) {
90
+ public Collection <? extends PhpNamedElement > getBySignature (String expression , Set < String > visited , int depth , Project project ) {
90
91
91
92
// get back our original call
92
93
// since phpstorm 7.1.2 we need to validate this
0 commit comments