-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
442 lines (332 loc) · 9.05 KB
/
__init__.py
File metadata and controls
442 lines (332 loc) · 9.05 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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
"""Provides for system input and output through data streams,
serialization and the file system.
Unless otherwise noted, passing a null argument to a constructor or
method in any class or interface in this package will cause a
NullPointerException to be thrown.
"""
from __future__ import print_function
__all__ = [
"BufferedReader",
"BufferedWriter",
"ByteArrayInputStream",
"ByteArrayOutputStream",
"Closeable",
"DataOutputStream",
"File",
"FileDescriptor",
"FileInputStream",
"FileOutputStream",
"FilterOutputStream",
"Flushable",
"IOException",
"InputStream",
"InputStreamReader",
"OutputStream",
"PrintStream",
"PrintWriter",
"Reader",
"Writer",
]
from typing import Any, Optional, Union
from java.lang import (
Appendable,
AutoCloseable,
CharSequence,
Exception,
Object,
Readable,
Throwable,
)
from java.nio.channels import FileChannel
from java.nio.charset import Charset, CharsetDecoder
class Closeable(AutoCloseable):
def close(self):
# type: () -> None
raise NotImplementedError
class Flushable(object):
def flush(self):
# type: () -> None
raise NotImplementedError
class File(Object):
pathSeparator = None # type: Union[str, unicode]
pathSeparatorChar = None # type: Union[str, unicode]
separator = None # type: Union[str, unicode]
separatorChar = None # type: Union[str, unicode]
def __init__(self, *args):
# type: (*Any) -> None
super(File, self).__init__()
print(args)
class FileDescriptor(Object):
def sync(self):
# type: () -> None
pass
def valid(self):
# type: () -> bool
return True
class OutputStream(Object, Closeable, Flushable):
def close(self):
# type: () -> None
pass
def flush(self):
# type: () -> None
pass
@staticmethod
def nullOutputStream():
# type: () -> OutputStream
pass
def write(self, *args):
# type: (*Any) -> None
pass
class ByteArrayOutputStream(OutputStream):
def __init__(self, size=0):
# type: (int) -> None
super(ByteArrayOutputStream, self).__init__()
print(size)
def reset(self):
# type: () -> None
pass
def size(self):
# type: () -> int
pass
def toByteArray(self):
# type: () -> bytearray
pass
def writeTo(self, arg):
# type: (Union[bytearray, OutputStream]) -> None
pass
class FileOutputStream(OutputStream):
def __init__(self, *args):
# type: (*Any) -> None
super(FileOutputStream, self).__init__()
print(args)
def getChannel(self):
# type: () -> Any
pass
def getFD(self):
# type: () -> FileDescriptor
pass
class FilterOutputStream(OutputStream):
_out = None # type: OutputStream
def __init__(self, out):
# type: (OutputStream) -> None
super(FilterOutputStream, self).__init__()
self._out = out
class DataOutputStream(FilterOutputStream):
out = None # type: OutputStream
def __init__(self, out):
# type: (OutputStream) -> None
self.out = out
super(DataOutputStream, self).__init__(out)
def size(self):
# type: () -> int
pass
def writeBoolean(self, v):
# type: (bool) -> None
pass
def writeByte(self, v):
# type: (int) -> None
pass
def writeBytes(self, s):
# type: (Union[str, unicode]) -> None
pass
def writeChar(self, v):
# type: (int) -> None
pass
def writeChars(self, s):
# type: (Union[str, unicode]) -> None
pass
def writeDouble(self, v):
# type: (float) -> None
pass
def writeFloat(self, v):
# type: (float) -> None
pass
def writeInt(self, v):
# type: (int) -> None
pass
def writeLong(self, v):
# type: (long) -> None
pass
def writeShort(self, v):
# type: (int) -> None
pass
def writeUTF(self, s):
# type: (Union[str, unicode]) -> None
pass
class PrintStream(FilterOutputStream):
_out = OutputStream()
def __init__(self, *args):
# type: (*Any) -> None
print(args)
super(PrintStream, self).__init__(self._out)
def append(self, *args):
# type: (*Any) -> PrintStream
pass
def checkError(self):
# type: () -> bool
return True
def format(self, *args):
# type: (*Any) -> PrintStream
pass
def print(self, arg):
# type: (Any) -> None
pass
def printf(self, *args):
# type: (*Any) -> None
pass
def println(self, arg):
# type: (Any) -> None
pass
class InputStream(Object, Closeable):
def available(self):
# type: () -> int
pass
def close(self):
# type: () -> None
pass
def mark(self, readlimit):
# type: (int) -> None
pass
def markSupported(self):
# type: () -> bool
return True
@staticmethod
def nullInputStream():
# type: () -> InputStream
pass
def read(self, *args):
# type: (*Any) -> int
pass
def readAllBytes(self):
# type: () -> bytearray
pass
def readNBytes(self, *args):
# type: (*Any) -> int
pass
def reset(self):
# type: () -> None
pass
def skip(self, n):
# type: (long) -> long
pass
def transferTo(self, out):
# type: (OutputStream) -> long
pass
class ByteArrayInputStream(InputStream):
def __init__(self, buf, offset=0, length=-1):
# type: (bytearray, int, int) -> None
super(ByteArrayInputStream, self).__init__()
print(buf, offset, length)
class FileInputStream(InputStream):
def __init__(self, *args):
# type: (*Any) -> None
super(FileInputStream, self).__init__()
print(args)
def getChannel(self):
# type: () -> FileChannel
pass
def getFD(self):
# type: () -> FileDescriptor
pass
class IOException(Exception):
def __init__(self, message=None, cause=None):
# type: (Optional[str], Optional[Throwable]) -> None
super(IOException, self).__init__(message, cause)
class Reader(Object, Readable, Closeable):
def __init__(self, lock=None):
# type: (Optional[Object]) -> None
print(lock)
super(Reader, self).__init__()
def close(self):
# type: () -> None
pass
def mark(self, readAheadLimit):
# type: (int) -> None
pass
def markSupported(self):
# type: () -> bool
return True
@staticmethod
def nullReader():
# type: () -> Reader
pass
def read(self, *args):
# type: (*Any) -> int
pass
def ready(self):
# type: () -> bool
return True
def reset(self):
# type: () -> None
pass
def skip(self, n):
# type: (long) -> long
pass
def transferTo(self, out):
# type: (Writer) -> long
pass
class BufferedReader(Reader):
def __init__(self, in_, sz=None):
# type: (Reader, Optional[int]) -> None
super(BufferedReader, self).__init__()
print(in_, sz)
class InputStreamReader(Reader):
def __init__(
self,
in_, # type: InputStream
arg=None, # type: Optional[Union[str, unicode, Charset, CharsetDecoder]]
):
# type: (...) -> None
super(InputStreamReader, self).__init__()
print(in_, arg)
def getEncoding(self):
# type: () -> Union[str, unicode]
pass
class Writer(Object, Appendable, Closeable, Flushable):
def append(self, c_csq, start=0, end=-1):
# type: (Union[CharSequence, str], int, int) -> Writer
pass
def close(self):
# type: () -> None
pass
def flush(self):
# type: () -> None
pass
@staticmethod
def nullWriter():
# type: () -> Writer
pass
def write(self, *args):
# type: (*Any) -> None
pass
class BufferedWriter(Writer):
def __init__(self, out, sz=None):
# type: (Writer, Optional[int]) -> None
super(BufferedWriter, self).__init__()
print(out, sz)
class PrintWriter(Writer):
def __init__(self, *args):
# type: (*Any) -> None
super(PrintWriter, self).__init__()
print(args)
def append(self, c_csq, start=0, end=-1):
# type: (Union[CharSequence, str], int, int) -> PrintWriter
pass
def checkError(self):
# type: () -> bool
return True
def format(self, *args):
# type: (*Any) -> PrintWriter
pass
def print(self, arg):
# type: (Any) -> None
pass
def printf(self, *args):
# type: (*Any) -> PrintWriter
pass
def println(self, arg):
# type: (Any) -> None
pass
def write(self, *args):
# type: (*Any) -> None
pass