summaryrefslogtreecommitdiff
path: root/platform/java/src/com/artifex/mupdf/fitz/FileStream.java
blob: 3d9ad0d31c8d4323df0750191dad107a4be06fba (plain)
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
package com.artifex.mupdf.fitz;

import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;

public class FileStream implements SeekableInputStream, SeekableOutputStream
{
	protected RandomAccessFile file;

	public FileStream(String path, String mode) throws IOException {
		file = new RandomAccessFile(path, mode);
	}

	public FileStream(File path, String mode) throws IOException {
		file = new RandomAccessFile(path, mode);
	}

	public int read(byte[] buf) throws IOException {
		return file.read(buf);
	}

	public void write(byte[] buf, int off, int len) throws IOException {
		file.write(buf, off, len);
	}

	public long seek(long offset, int whence) throws IOException {
		switch (whence) {
		case SEEK_SET: file.seek(offset); break;
		case SEEK_CUR: file.seek(file.getFilePointer() + offset); break;
		case SEEK_END: file.seek(file.length() + offset); break;
		}
		return file.getFilePointer();
	}

	public long position() throws IOException {
		return file.getFilePointer();
	}

	public void close() throws IOException {
		file.close();
	}
}