/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
*/
public class Compress {
interface CompressConstants {
// constants for 6-bit code values
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ ,.!?\"'()";
}
public static class CompressRMIClientSocketFactory
throws IOException {
}
}
public static class CompressRMIServerSocketFactory
implements RMIServerSocketFactory,
throws IOException {
}
}
public CompressSocket() { super(); }
}
}
return in;
}
}
return out;
}
}
super(port);
}
Socket s = new CompressSocket();
implAccept(s);
return s;
}
}
implements CompressConstants
{
super(in);
}
// buffer of unpacked 6-bit codes from last 32-word read
// position of next code to read in buffer (5 == end of buffer)
try {
int code;
do {
} else
} catch (EOFException e) {
return -1;
}
}
if (len <= 0) {
return 0;
}
int c = read();
if (c == -1) {
return -1;
}
b[off] = (byte)c;
int i = 1;
/*****
try {
for (; i < len ; i++) {
c = read();
if (c == -1) {
break;
}
if (b != null) {
b[off + i] = (byte)c;
}
}
} catch (IOException ee) {
}
*****/
return i;
}
if (bufPos == 5) {
throw new EOFException();
bufPos = 0;
}
}
}
implements CompressConstants
{
super(out);
}
// buffer of 6-bit codes to pack into next 32-bit word
// number of valid codes pending in buffer
b &= 0xFF; // force argument to a byte
if (pos != -1)
else {
writeCode(b >> 4);
writeCode(b & 0xF);
}
}
/*
* This is quite an inefficient implementation, because it has to
* call the other write method for every byte in the array. It
* could be optimized for performance by doing all the processing
* in this method.
*/
for (int i = 0; i < len; i++)
}
while (bufPos > 0)
}
bufPos = 0;
}
}
}
}