File: AnonInnerDefaults.java

package info (click to toggle)
checker-framework-java 3.2.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 22,840 kB
  • sloc: java: 145,910; xml: 839; sh: 518; makefile: 401; perl: 26
file content (231 lines) | stat: -rw-r--r-- 8,142 bytes parent folder | download | duplicates (3)
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
import java.util.Random;
import org.checkerframework.checker.guieffect.qual.PolyUI;
import org.checkerframework.checker.guieffect.qual.PolyUIEffect;
import org.checkerframework.checker.guieffect.qual.PolyUIType;
import org.checkerframework.checker.guieffect.qual.SafeEffect;
import org.checkerframework.checker.guieffect.qual.UI;
import org.checkerframework.checker.guieffect.qual.UIEffect;
import org.checkerframework.checker.guieffect.qual.UIType;

public class AnonInnerDefaults {

    private static Random random;

    private static boolean maybe() {
        return random.nextBoolean();
    }

    public static interface SafeIface {
        public void doStuff();
    }

    public static interface ExplicitUIIface {
        @UIEffect
        public void doStuff();
    }

    @UIType
    public static interface UITypeIface {
        public void doStuff();
    }

    @PolyUIType
    public static interface PolyIface {
        @PolyUIEffect
        public void doStuff();
    }

    @PolyUIType
    public static interface ParlyPolyIface {
        @PolyUIEffect
        public void doPolyUIStuff();

        public void doSafeStuff();
    }

    public static interface IndirectPolyIface extends PolyIface {}

    @PolyUIType
    public static interface IPolyIfaceCaller {

        @PolyUIEffect
        public void call(final @PolyUI PolyIface p);
    }

    public PolyIface getSafePolyIface(final UIElement e) {
        // :: error: (return.type.incompatible)
        return new PolyIface() { // Anonymous inner class inference for @UI
            @Override
            public void doStuff() {
                // Safe due to anonymous inner class effect inference
                e.dangerous(); // should be okay
            }
        };
    }

    public @UI PolyIface getUIPolyIface(final UIElement e) {
        return new PolyIface() { // Anonymous inner class inference for @UI
            @Override
            public void doStuff() {
                // Safe due to anonymous inner class effect inference
                e.dangerous(); // should be okay
            }
        };
    }

    public void callSafePolyIface(final PolyIface p) {
        p.doStuff();
    }

    @UIEffect
    public void callUIPolyIface(final @UI PolyIface p) {
        p.doStuff();
    }

    @UIEffect
    public void tryStuff(final UIElement e) {
        SafeIface s =
                new SafeIface() {
                    @Override
                    public void doStuff() {
                        // :: error: (call.invalid.ui)
                        e.dangerous();
                    }
                };
        ExplicitUIIface ex =
                new ExplicitUIIface() {
                    @Override
                    public void doStuff() {
                        e.dangerous(); // should be okay
                    }
                };
        UITypeIface u =
                new UITypeIface() {
                    @Override
                    public void doStuff() {
                        e.dangerous(); // should be okay
                    }
                };
        @UI PolyIface p =
                new @UI PolyIface() {
                    @Override
                    public void doStuff() {
                        e.dangerous(); // should be okay
                    }
                };
        @UI PolyIface p2 =
                new PolyIface() {
                    @Override
                    public void doStuff() {
                        // Safe due to anonymous inner class effect inference
                        e.dangerous(); // should be okay
                    }
                };
        PolyIface p3 =
                // :: error: (assignment.type.incompatible)
                new PolyIface() { // Anonymous inner class inference for @UI
                    @Override
                    public void doStuff() {
                        // Safe due to anonymous inner class effect inference
                        e.dangerous(); // should be okay
                    }
                };
        @UI PolyIface p4 =
                new IndirectPolyIface() {
                    @Override
                    public void doStuff() {
                        // Safe due to anonymous inner class effect inference
                        e.dangerous(); // should be okay
                    }
                };
        @UI ParlyPolyIface p5 =
                new ParlyPolyIface() {
                    @Override
                    public void doPolyUIStuff() {
                        // Safe due to anonymous inner class effect inference
                        e.dangerous(); // should be okay
                    }

                    @Override
                    @SafeEffect
                    public void doSafeStuff() {
                        e.repaint();
                    }
                };
        ParlyPolyIface p6 =
                new ParlyPolyIface() {
                    @Override
                    public void doPolyUIStuff() {
                        e.repaint(); // Safe
                    }

                    @Override
                    public void doSafeStuff() {
                        // :: error: (call.invalid.ui)
                        e.dangerous(); // No inference here, just as an invalid call
                    }
                };
        @UI ParlyPolyIface p7 =
                new ParlyPolyIface() {
                    @Override
                    public void doPolyUIStuff() {
                        // Safe due to anonymous inner class effect inference
                        e.dangerous(); // should be okay
                    }

                    @Override
                    @SafeEffect
                    public void doSafeStuff() {
                        // :: error: (call.invalid.ui)
                        e.dangerous(); // No inference here, just as an invalid call
                    }
                };
        callSafePolyIface(
                // :: error: (argument.type.incompatible)
                new PolyIface() { // Anonymous inner class inference for @UI
                    @Override
                    public void doStuff() {
                        // Safe due to anonymous inner class effect inference
                        e.dangerous(); // should be okay
                    }
                });
        callUIPolyIface(
                new PolyIface() { // Anonymous inner class inference for @UI
                    @Override
                    public void doStuff() {
                        // Safe due to anonymous inner class effect inference
                        e.dangerous(); // should be okay
                    }
                });
        callSafePolyIface(getSafePolyIface(e));
        callUIPolyIface(getUIPolyIface(e));
        (new IPolyIfaceCaller() { // Anonymous inner class inference for @UI
                    @Override
                    public void call(final @UI PolyIface p) { // No global inference
                        p.doStuff();
                    }
                })
                .call(
                        new PolyIface() { // Anonymous inner class inference for @UI
                            @Override
                            public void doStuff() {
                                // Safe due to anonymous inner class effect inference
                                e.dangerous(); // should be okay
                            }
                        });
        PolyIface maybeUIInstance =
                // :: error: (assignment.type.incompatible)
                (maybe()
                        ? new PolyIface() { // Anonymous inner class inference for @UI
                            @Override
                            public void doStuff() {
                                // Safe due to anonymous inner class effect inference
                                e.dangerous(); // should be okay
                            }
                        }
                        : new PolyIface() {
                            @Override
                            public void doStuff() {}
                        });
    }
}