Skip to main content
summaryrefslogtreecommitdiffstats
blob: 167e31f16b5689c8b41e775489dc3f30e50148c0 (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2000, 2003 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.internal.image;

import java.io.*;

final class TIFFRandomFileAccess {

	LEDataInputStream inputStream;
	int start, current, next;
	byte[][] buffers;

	static final int CHUNK_SIZE = 8192;
	static final int LIST_SIZE = 128;

public TIFFRandomFileAccess(LEDataInputStream stream) {
	inputStream = stream;
	start = current = next = inputStream.getPosition();
	buffers = new byte[LIST_SIZE][];
}

void seek(int pos) throws IOException {
	if (pos == current) return;
	if (pos < start) throw new IOException();
	current = pos;	
	if (current > next) {
		int n = current - next;
		/* store required bytes */
		int index = next / CHUNK_SIZE;
		int offset = next % CHUNK_SIZE;
		while (n > 0) {
			if (index >= buffers.length) {
				byte[][] oldBuffers = buffers;
				buffers = new byte[Math.max(index + 1, oldBuffers.length + LIST_SIZE)][];
				System.arraycopy(oldBuffers, 0, buffers, 0, oldBuffers.length);
			}
			if (buffers[index] == null) buffers[index] = new byte[CHUNK_SIZE];
			int cnt = inputStream.read(buffers[index], offset, Math.min(n, CHUNK_SIZE - offset));
			n -= cnt;
			next += cnt;
			index++;
			offset = 0;
		}
	}
}

void read(byte b[]) throws IOException {
	int size = b.length;
	int nCached = Math.min(size, next - current);
	int nMissing = size - next + current;
	int destNext = 0;
	if (nCached > 0) {
		/* Get cached bytes */
		int index = current / CHUNK_SIZE;
		int offset = current % CHUNK_SIZE;		
		while (nCached > 0) {
			int cnt = Math.min(nCached, CHUNK_SIZE - offset);
			System.arraycopy(buffers[index], offset, b, destNext, cnt);
			nCached -= cnt; 
			destNext += cnt;
			index++;
			offset = 0;
		}
	}
	if (nMissing > 0) {
		/* Read required bytes */
		int index = next / CHUNK_SIZE;
		int offset = next % CHUNK_SIZE;
		while (nMissing > 0) {
			if (index >= buffers.length) {
				byte[][] oldBuffers = buffers;
				buffers = new byte[Math.max(index, oldBuffers.length + LIST_SIZE)][];
				System.arraycopy(oldBuffers, 0, buffers, 0, oldBuffers.length);
			}
			if (buffers[index] == null) buffers[index] = new byte[CHUNK_SIZE];
			int cnt = inputStream.read(buffers[index], offset, Math.min(nMissing, CHUNK_SIZE - offset));
			System.arraycopy(buffers[index], offset, b, destNext, cnt);
			nMissing -= cnt;
			next += cnt;
			destNext += cnt;
			index++;
			offset = 0;
		}
	}
	current += size;
}

}

Back to the top