summaryrefslogtreecommitdiffstats
path: root/obex/javax/obex/PrivateInputStream.java
blob: 2dc02da511f1c4389db46cdb451ab3724aee2c20 (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
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
/*
 * Copyright (c) 2008-2009, Motorola, Inc.
 *
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * - Redistributions of source code must retain the above copyright notice,
 * this list of conditions and the following disclaimer.
 *
 * - Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * - Neither the name of the Motorola, Inc. nor the names of its contributors
 * may be used to endorse or promote products derived from this software
 * without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

package javax.obex;

import java.io.InputStream;
import java.io.IOException;

/**
 * This object provides an input stream to the Operation objects used in this
 * package.
 *
 * @hide
 */
public final class PrivateInputStream extends InputStream {

    private BaseStream mParent;

    private byte[] mData;

    private int mIndex;

    private boolean mOpen;

    /**
     * Creates an input stream for the <code>Operation</code> to read from
     *
     * @param p the connection this input stream is for
     */
    public PrivateInputStream(BaseStream p) {
        mParent = p;
        mData = new byte[0];
        mIndex = 0;
        mOpen = true;
    }

    /**
     * Returns the number of bytes that can be read (or skipped over) from this
     * input stream without blocking by the next caller of a method for this
     * input stream. The next caller might be the same thread or or another
     * thread.
     *
     * @return the number of bytes that can be read from this input stream
     * without blocking
     *
     * @throws IOException if an I/O error occurs
     */
    @Override
    public synchronized int available() throws IOException {
        ensureOpen();
        return mData.length - mIndex;
    }

    /**
     * Reads the next byte of data from the input stream. The value byte is
     * returned as an int in the range 0 to 255. If no byte is available
     * because the end of the stream has been reached, the value -1 is
     * returned. This method blocks until input data is available, the end of
     * the stream is detected, or an exception is thrown.
     *
     * @return the byte read from the input stream or -1 if it reaches the end
     * of stream
     *
     * @throws IOException if an I/O error occurs
     */
    @Override
    public synchronized int read() throws IOException {
        ensureOpen();
        while (mData.length == mIndex) {
            if (!mParent.continueOperation(true, true)) {
                return -1;
            }
        }
        return (mData[mIndex++] & 0xFF);
    }

    @Override
    public int read(byte[] b) throws IOException {
        return read(b, 0, b.length);
    }

    @Override
    public synchronized int read(byte[] b, int offset, int length) throws IOException {

        if (b == null) {
            throw new IOException("buffer is null");
        }
        if ((offset | length) < 0 || length > b.length - offset) {
            throw new ArrayIndexOutOfBoundsException("index outof bound");
        }
        ensureOpen();

        int currentDataLength = mData.length - mIndex;
        int remainReadLength = length;
        int offset1 = offset;
        int result = 0;

        while (currentDataLength <= remainReadLength) {
            System.arraycopy(mData, mIndex, b, offset1, currentDataLength);
            mIndex += currentDataLength;
            offset1 += currentDataLength;
            result += currentDataLength;
            remainReadLength -= currentDataLength;

            if (!mParent.continueOperation(true, true)) {
                return result == 0 ? -1 : result;
            }
            currentDataLength = mData.length - mIndex;
        }
        if (remainReadLength > 0) {
            System.arraycopy(mData, mIndex, b, offset1, remainReadLength);
            mIndex += remainReadLength;
            result += remainReadLength;
        }
        return result;
    }

    /**
     * Allows the <code>OperationImpl</code> thread to add body data to the
     * input stream.
     *
     * @param body the data to add to the stream
     *
     * @param start the start of the body to array to copy
     */
    public synchronized void writeBytes(byte[] body, int start) {

        int length = (body.length - start) + (mData.length - mIndex);
        byte[] temp = new byte[length];

        System.arraycopy(mData, mIndex, temp, 0, mData.length - mIndex);
        System.arraycopy(body, start, temp, mData.length - mIndex, body.length - start);

        mData = temp;
        mIndex = 0;
        notifyAll();
    }

    /**
     * Verifies that this stream is open
     *
     * @throws IOException if the stream is not open
     */
    private void ensureOpen() throws IOException {
        mParent.ensureOpen();
        if (!mOpen) {
            throw new IOException("Input stream is closed");
        }
    }

    /**
     * Closes the input stream.  If the input stream is already closed, do
     * nothing.
     *
     * @throws IOException this will never happen
     */
    @Override
    public void close() throws IOException {
        mOpen = false;
        mParent.streamClosed(true);
    }
}