forked from cdklabs/jsii-srcmak
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsrcmak.test.ts.snap
More file actions
400 lines (339 loc) · 16.8 KB
/
srcmak.test.ts.snap
File metadata and controls
400 lines (339 loc) · 16.8 KB
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`java + different entrypoint 1`] = `
Object {
"src/main/java/hello/world/$Module.java": "package hello.world;
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.IOException;
import java.io.Reader;
import java.io.UncheckedIOException;
import java.nio.charset.StandardCharsets;
import java.util.HashMap;
import java.util.Map;
import software.amazon.jsii.JsiiModule;
public final class $Module extends JsiiModule {
private static final Map<String, String> MODULE_TYPES = load();
private static Map<String, String> load() {
final Map<String, String> result = new HashMap<>();
final ClassLoader cl = $Module.class.getClassLoader();
try (final InputStream is = cl.getResourceAsStream(\\"hello/world/$Module.txt\\");
final Reader rd = new InputStreamReader(is, StandardCharsets.UTF_8);
final BufferedReader br = new BufferedReader(rd)) {
br.lines()
.filter(line -> !line.trim().isEmpty())
.forEach(line -> {
final String[] parts = line.split(\\"=\\", 2);
final String fqn = parts[0];
final String className = parts[1];
result.put(fqn, className);
});
}
catch (final IOException exception) {
throw new UncheckedIOException(exception);
}
return result;
}
private final Map<String, Class<?>> cache = new HashMap<>();
public $Module() {
super(\\"javapackage\\", \\"0.0.0\\", $Module.class, \\"javapackage@0.0.0.jsii.tgz\\");
}
@Override
protected Class<?> resolveClass(final String fqn) throws ClassNotFoundException {
if (!MODULE_TYPES.containsKey(fqn)) {
throw new ClassNotFoundException(\\"Unknown JSII type: \\" + fqn);
}
String className = MODULE_TYPES.get(fqn);
if (!this.cache.containsKey(className)) {
this.cache.put(className, this.findClass(className));
}
return this.cache.get(className);
}
private Class<?> findClass(final String binaryName) {
try {
return Class.forName(binaryName);
}
catch (final ClassNotFoundException exception) {
throw new RuntimeException(exception);
}
}
}
",
"src/main/java/hello/world/Hello.java": "package hello.world;
@software.amazon.jsii.Jsii(module = hello.world.$Module.class, fqn = \\"javapackage.Hello\\")
public class Hello extends software.amazon.jsii.JsiiObject {
protected Hello(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
}
protected Hello(final software.amazon.jsii.JsiiObject.InitializationMode initializationMode) {
super(initializationMode);
}
public Hello() {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this);
}
public @org.jetbrains.annotations.NotNull java.lang.Number add(final @org.jetbrains.annotations.NotNull hello.world.Operands ops) {
return this.jsiiCall(\\"add\\", java.lang.Number.class, new Object[] { java.util.Objects.requireNonNull(ops, \\"ops is required\\") });
}
}
",
"src/main/java/hello/world/Operands.java": "package hello.world;
@software.amazon.jsii.Jsii(module = hello.world.$Module.class, fqn = \\"javapackage.Operands\\")
@software.amazon.jsii.Jsii.Proxy(Operands.Jsii$Proxy.class)
public interface Operands extends software.amazon.jsii.JsiiSerializable {
@org.jetbrains.annotations.NotNull java.lang.Number getLhs();
@org.jetbrains.annotations.NotNull java.lang.Number getRhs();
/**
* @return a {@link Builder} of {@link Operands}
*/
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link Operands}
*/
public static final class Builder implements software.amazon.jsii.Builder<Operands> {
private java.lang.Number lhs;
private java.lang.Number rhs;
/**
* Sets the value of {@link Operands#getLhs}
* @param lhs the value to be set. This parameter is required.
* @return {@code this}
*/
public Builder lhs(java.lang.Number lhs) {
this.lhs = lhs;
return this;
}
/**
* Sets the value of {@link Operands#getRhs}
* @param rhs the value to be set. This parameter is required.
* @return {@code this}
*/
public Builder rhs(java.lang.Number rhs) {
this.rhs = rhs;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link Operands}
* @throws NullPointerException if any required attribute was not provided
*/
@Override
public Operands build() {
return new Jsii$Proxy(lhs, rhs);
}
}
/**
* An implementation for {@link Operands}
*/
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements Operands {
private final java.lang.Number lhs;
private final java.lang.Number rhs;
/**
* Constructor that initializes the object based on values retrieved from the JsiiObject.
* @param objRef Reference to the JSII managed object.
*/
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
this.lhs = this.jsiiGet(\\"lhs\\", java.lang.Number.class);
this.rhs = this.jsiiGet(\\"rhs\\", java.lang.Number.class);
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
private Jsii$Proxy(final java.lang.Number lhs, final java.lang.Number rhs) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.lhs = java.util.Objects.requireNonNull(lhs, \\"lhs is required\\");
this.rhs = java.util.Objects.requireNonNull(rhs, \\"rhs is required\\");
}
@Override
public java.lang.Number getLhs() {
return this.lhs;
}
@Override
public java.lang.Number getRhs() {
return this.rhs;
}
@Override
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
data.set(\\"lhs\\", om.valueToTree(this.getLhs()));
data.set(\\"rhs\\", om.valueToTree(this.getRhs()));
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set(\\"fqn\\", om.valueToTree(\\"javapackage.Operands\\"));
struct.set(\\"data\\", data);
final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
obj.set(\\"$jsii.struct\\", struct);
return obj;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Operands.Jsii$Proxy that = (Operands.Jsii$Proxy) o;
if (!lhs.equals(that.lhs)) return false;
return this.rhs.equals(that.rhs);
}
@Override
public int hashCode() {
int result = this.lhs.hashCode();
result = 31 * result + (this.rhs.hashCode());
return result;
}
}
}
",
"src/main/resources/hello/world/$Module.txt": "javapackage.Hello=hello.world.Hello
javapackage.Operands=hello.world.Operands
",
"src/main/resources/hello/world/javapackage@0.0.0.jsii.tgz": "� �ko�H�����K���6��D�.£$���SU������v�S��o��UM������;�����xlE{P&���1����R*q��J�r�{�(V*� � IG��I���e�BA��������8�W\\\\gjQ���g07��� Q�A�_�(�Y�Q� t��k>���_�����F��\`���ΔG��nň�Z�� ��c�
����!�,� �+y�{����T:FGe� �$XC&[�:!S���TdԆ|�l�aǢ���g�Nd�K�V
c;�3��з �E!�
!6A[����g07�Gd&|gR��i�W��\\"�P˵�������X_yD���( �B*�8��iYOԱ��2愔��/#�Ma*�9E0�'!�����
���ҵm�\\\\�����'�����6�,�%(��1&(��Lj\\"�)��zy�%L��Sm��@�z2�����4�>-��'V�I�8�]O��O���Ii��8�IJ�
��Dv��س!M�P�z��5��Қ\\"ǥ&�t�-x�b��q���*��NY�q4���>B0}J��=��+��P=wb���Mx���O�wi#ޣ�Z�Ԃ5�g��2�B*˘��a�pE%Y��l��ٖ����)\\"����a�R�%�����L�E����Lt