-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathRandomAccessFile.php
More file actions
436 lines (400 loc) Β· 13.7 KB
/
RandomAccessFile.php
File metadata and controls
436 lines (400 loc) Β· 13.7 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\io;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\lang\Object_;
// use PHPJava\Packages\java\io\DataOutput;
// use PHPJava\Packages\java\lang\AutoCloseable;
/**
* The `RandomAccessFile` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class RandomAccessFile extends Object_ // implements DataOutput, AutoCloseable
{
/**
* Closes this random access file stream and releases any system resources associated with the stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#close
* @param null|mixed $a
* @throws NotImplementedException
*/
public function close($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the unique FileChannel object associated with this file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#getChannel
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getChannel($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the opaque file descriptor object associated with this stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#getFD
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getFD($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the current offset in this file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#getFilePointer
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getFilePointer($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the length of this file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#length
* @param null|mixed $a
* @throws NotImplementedException
*/
public function length($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads a byte of data from this file.
* Reads up to b.length bytes of data from this file into an array of bytes.
* Reads up to len bytes of data from this file into an array of bytes.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#read
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public function read($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads a boolean from this file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readBoolean
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readBoolean($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads a signed eight-bit value from this file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readByte
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readByte($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads a character from this file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readChar
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readChar($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads a double from this file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readDouble
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readDouble($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads a float from this file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readFloat
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readFloat($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads b.length bytes from this file into the byte array, starting at the current file pointer.
* Reads exactly len bytes from this file into the byte array, starting at the current file pointer.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readFully
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public function readFully($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads a signed 32-bit integer from this file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readInt
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readInt($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads the next line of text from this file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readLine
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readLine($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads a signed 64-bit integer from this file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readLong
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readLong($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads a signed 16-bit number from this file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readShort
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readShort($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads an unsigned eight-bit number from this file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readUnsignedByte
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readUnsignedByte($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads an unsigned 16-bit number from this file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readUnsignedShort
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readUnsignedShort($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads in a string from this file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readUTF
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readUTF($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Sets the file-pointer offset, measured from the beginning of this file, at which the next read or write occurs.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#seek
* @param null|mixed $a
* @throws NotImplementedException
*/
public function seek($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Sets the length of this file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#setLength
* @param null|mixed $a
* @throws NotImplementedException
*/
public function setLength($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Attempts to skip over n bytes of input discarding the skipped bytes.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#skipBytes
* @param null|mixed $a
* @throws NotImplementedException
*/
public function skipBytes($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes b.length bytes from the specified byte array to this file, starting at the current file pointer.
* Writes len bytes from the specified byte array starting at offset off to this file.
* Writes the specified byte to this file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#write
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public function write($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes a boolean to the file as a one-byte value.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeBoolean
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeBoolean($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes a byte to the file as a one-byte value.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeByte
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeByte($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes the string to the file as a sequence of bytes.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeBytes
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeBytes($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes a char to the file as a two-byte value, high byte first.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeChar
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeChar($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes a string to the file as a sequence of characters.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeChars
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeChars($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Converts the double argument to a long using the doubleToLongBits method in class Double, and then writes that long value to the file as an eight-byte quantity, high byte first.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeDouble
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeDouble($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Converts the float argument to an int using the floatToIntBits method in class Float, and then writes that int value to the file as a four-byte quantity, high byte first.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeFloat
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeFloat($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes an int to the file as four bytes, high byte first.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeInt
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeInt($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes a long to the file as eight bytes, high byte first.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeLong
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeLong($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes a short to the file as two bytes, high byte first.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeShort
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeShort($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes a string to the file using modified UTF-8 encoding in a machine-independent manner.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeUTF
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeUTF($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}