Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d14024c684ba0e841d3ad68cfab5e132994b443d (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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*******************************************************************************
 * Copyright (c) 2011, 2015 Wind River Systems, Inc. and others. All rights reserved.
 * This program and the accompanying materials are made available under the terms
 * of the Eclipse Public License v1.0 which accompanies this distribution, and is
 * available at http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * William Chen (Wind River) - [345552] Edit the remote files with a proper editor
 *******************************************************************************/
package org.eclipse.tcf.te.tcf.filesystem.core.internal.url;

import java.io.IOException;
import java.io.OutputStream;

import org.eclipse.tcf.protocol.IToken;
import org.eclipse.tcf.services.IFileSystem.DoneWrite;
import org.eclipse.tcf.services.IFileSystem.FileSystemException;
import org.eclipse.tcf.te.tcf.filesystem.core.nls.Messages;

/**
 * The TCF output stream returned by {@link TcfURLConnection#getOutputStream()}.
 */
public class TcfOutputStream extends OutputStream {
	// Default chunk size while pumping the data.
	private static final int DEFAULT_CHUNK_SIZE = 5 * 1024;

	// Current writing position
	long position;
	// The byte array used to buffer data.
	byte[] buffer;
	// The offset being written in the buffer.
	int offset;

	// If the stream has been closed.
	boolean closed;
	// The current error during writing.
	Exception ERROR;

	// The URL Connection
	TcfURLConnection connection;
	/**
	 * Create a TCF output stream connected the specified peer with specified
	 * path to the remote resource.
	 *
	 */
	public TcfOutputStream(TcfURLConnection connection) {
		this(connection, DEFAULT_CHUNK_SIZE);
	}

	/**
	 * Create a TCF output stream connected the specified peer with specified
	 * path to the remote resource using the specified buffer size.
	 *
	 * @param chunk_size
	 *            The buffer size.
	 */
	public TcfOutputStream(TcfURLConnection connection, int chunk_size) {
		this.connection = connection;
		buffer = new byte[chunk_size];
		offset = 0;
	}

	/* (non-Javadoc)
	 * @see java.io.OutputStream#write(int)
	 */
	@Override
	public void write(int b) throws IOException {
		if (closed)
			throw new IOException(Messages.TcfOutputStream_StreamClosed);
		if (ERROR != null) {
			IOException exception = new IOException(ERROR.toString());
			exception.initCause(ERROR);
			throw exception;
		}
		if (offset < buffer.length) {
			buffer[offset++] = (byte) b;
		}
		if (offset == buffer.length)
			flush();
	}

	/* (non-Javadoc)
	 * @see java.io.OutputStream#flush()
	 */
	@Override
	public void flush() throws IOException {
		if (offset > 0) {
			connection.service.write(connection.handle, position, buffer, 0, offset, new DoneWrite() {
				@Override
				public void doneWrite(IToken token, FileSystemException error) {
					if (error != null) {
						ERROR = error;
					}
					position += offset;
					offset = 0;
				}
			});
		}
	}

	/* (non-Javadoc)
	 * @see java.io.OutputStream#close()
	 */
	@Override
	public void close() throws IOException {
		if (!closed) {
			connection.closeStream(this);
			closed = true;
		}
	}
}

Back to the top