Rely upon Constants.CHARSET over Constants.CHARACTER_ENCODING
[egit/zawir.git] / org.spearce.jgit / src / org / spearce / jgit / transport / PacketLineIn.java
blobf87517d0c27342dd1d3a41846e83eccd88b27792
1 /*
2 * Copyright (C) 2008, Robin Rosenberg <robin.rosenberg@dewire.com>
3 * Copyright (C) 2008, Shawn O. Pearce <spearce@spearce.org>
5 * All rights reserved.
7 * Redistribution and use in source and binary forms, with or
8 * without modification, are permitted provided that the following
9 * conditions are met:
11 * - Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
14 * - Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer in the documentation and/or other materials provided
17 * with the distribution.
19 * - Neither the name of the Git Development Community nor the
20 * names of its contributors may be used to endorse or promote
21 * products derived from this software without specific prior
22 * written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
25 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
26 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
29 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
32 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
33 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
34 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
36 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 package org.spearce.jgit.transport;
41 import java.io.IOException;
42 import java.io.InputStream;
43 import java.util.Arrays;
45 import org.spearce.jgit.errors.PackProtocolException;
46 import org.spearce.jgit.lib.Constants;
47 import org.spearce.jgit.lib.MutableObjectId;
48 import org.spearce.jgit.lib.ProgressMonitor;
49 import org.spearce.jgit.util.NB;
50 import org.spearce.jgit.util.RawParseUtils;
52 class PacketLineIn {
53 private static final byte fromhex[];
55 static {
56 fromhex = new byte['f' + 1];
57 Arrays.fill(fromhex, (byte) -1);
58 for (char i = '0'; i <= '9'; i++)
59 fromhex[i] = (byte) (i - '0');
60 for (char i = 'a'; i <= 'f'; i++)
61 fromhex[i] = (byte) ((i - 'a') + 10);
64 static enum AckNackResult {
65 /** NAK */
66 NAK,
67 /** ACK */
68 ACK,
69 /** ACK + continue */
70 ACK_CONTINUE
73 private final InputStream in;
75 private final byte[] lenbuffer;
77 PacketLineIn(final InputStream i) {
78 in = i;
79 lenbuffer = new byte[4];
82 InputStream sideband(final ProgressMonitor pm) {
83 return new SideBandInputStream(this, in, pm);
86 AckNackResult readACK(final MutableObjectId returnedId) throws IOException {
87 final String line = readString();
88 if (line.length() == 0)
89 throw new PackProtocolException("Expected ACK/NAK, found EOF");
90 if ("NAK".equals(line))
91 return AckNackResult.NAK;
92 if (line.startsWith("ACK ")) {
93 returnedId.fromString(line.substring(4, 44));
94 if (line.indexOf("continue", 44) != -1)
95 return AckNackResult.ACK_CONTINUE;
96 return AckNackResult.ACK;
98 throw new PackProtocolException("Expected ACK/NAK, got: " + line);
101 String readString() throws IOException {
102 int len = readLength();
103 if (len == 0)
104 return "";
106 len -= 5; // length header (4 bytes) and trailing LF.
108 final byte[] raw = new byte[len];
109 NB.readFully(in, raw, 0, len);
110 readLF();
111 return RawParseUtils.decode(Constants.CHARSET, raw, 0, len);
114 private void readLF() throws IOException {
115 if (in.read() != '\n')
116 throw new IOException("Protocol error: expected LF");
119 int readLength() throws IOException {
120 NB.readFully(in, lenbuffer, 0, 4);
121 try {
122 int r = fromhex[lenbuffer[0]] << 4;
124 r |= fromhex[lenbuffer[1]];
125 r <<= 4;
127 r |= fromhex[lenbuffer[2]];
128 r <<= 4;
130 r |= fromhex[lenbuffer[3]];
131 if (r < 0)
132 throw new ArrayIndexOutOfBoundsException();
133 return r;
134 } catch (ArrayIndexOutOfBoundsException err) {
135 throw new IOException("Invalid packet line header: "
136 + (char) lenbuffer[0] + (char) lenbuffer[1]
137 + (char) lenbuffer[2] + (char) lenbuffer[3]);