/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ /* vim:set softtabstop=3 shiftwidth=3 tabstop=3 expandtab tw=72: $Id: Util.java,v 1.7 2003/07/27 09:00:52 rsdio Exp $ Parts of this file (the toHexString methods) are derived from the gnu.crypto.util.Util class in GNU Crypto. Util: Basic utility functions. Copyright (C) 2001,2002 The Free Software Foundation, Inc. Copyright (C) 2003 Casey Marshall <rsdio@metastatic.org> This file is a part of Jarsync. Jarsync is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. Jarsync 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 for more details. You should have received a copy of the GNU General Public License along with Jarsync; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Linking Jarsync statically or dynamically with other modules is making a combined work based on Jarsync. Thus, the terms and conditions of the GNU General Public License cover the whole combination. */ package io.milton.zsync; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.io.RandomAccessFile; import java.nio.channels.FileChannel; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * A number of useful, static methods. * * @version $Revision: 1.7 $ */ public final class Util { private static final Logger log = LoggerFactory.getLogger(Util.class); // Constants and variables. // ----------------------------------------------------------------------- /** The characters for Base64 encoding. */ public static final String BASE_64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; // Constructors. // ----------------------------------------------------------------------- /** This class cannot be instantiated. */ private Util() { } // Class methods. // ----------------------------------------------------------------------- /** * Base-64 encode a byte array, returning the returning string. * * <p>Note that this method exists merely to be compatible with the * challenge-response authentication method of rsyncd. It is * <em>not</em> technincally a Base-64 encoder. * * @param buf The byte array to encode. * @return <tt>buf</tt> encoded in Base64. */ public static String base64(byte[] buf) { int bitOffset, byteOffset, index = 0; int bytes = (buf.length * 8 + 5) / 6; StringBuilder out = new StringBuilder(bytes); for (int i = 0; i < bytes; i++) { byteOffset = (i * 6) / 8; bitOffset = (i * 6) % 8; if (bitOffset < 3) { index = (buf[byteOffset] >>> (2 - bitOffset)) & 0x3f; } else { index = (buf[byteOffset] << (bitOffset - 2)) & 0x3f; if (byteOffset + 1 < buf.length) { index |= (buf[byteOffset + 1] & 0xff) >>> (8 - (bitOffset - 2)); } } out.append(BASE_64.charAt(index)); } return out.toString(); } /** * Write a String as a sequece of ASCII bytes. * * @param out The {@link java.io.OutputStream} to write to. * @param ascii The ASCII string to write. * @throws java.io.IOException If writing fails. */ public static void writeASCII(OutputStream out, String ascii) throws IOException { try { out.write(ascii.getBytes("US-ASCII")); } catch (java.io.UnsupportedEncodingException shouldNotHappen) { } } /** * Read up to a '\n' or '\r', and return the resulting string. The * input is assumed to be ISO-8859-1. * * @param in The {@link java.io.InputStream} to read from. * @return The line read, without the line terminator. */ public static String readLine(InputStream in) throws IOException { StringBuilder s = new StringBuilder(); int c = in.read(); while (c != -1 && c != '\n') { if (c != '\r') { s.append((char) (c & 0xff)); } c = in.read(); } if (s.length() == 0 && c == -1) { return null; } return s.toString(); } // From gnu.crypto.util.Util /** Hexadecimal digits. */ private static final char[] HEX_DIGITS = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' }; /** * Convert a byte array to a big-endian ordered hexadecimal string. * * @param b The bytes to convert. * @return A hexadecimal representation to <tt>b</tt>. */ public static String toHexString(byte[] b) { return toHexString(b, 0, b.length); } /** * Convert a byte array to a big-endian ordered hexadecimal string. * * @param b The bytes to convert. * @return A hexadecimal representation to <tt>b</tt>. */ public static String toHexString(byte[] b, int off, int len) { char[] buf = new char[len * 2]; for (int i = 0, j = 0, k; i < len;) { k = b[off + i++]; buf[j++] = HEX_DIGITS[(k >>> 4) & 0x0F]; buf[j++] = HEX_DIGITS[ k & 0x0F]; } return new String(buf); } public static void close(RandomAccessFile randAccess) { if( randAccess != null ) { try { randAccess.close(); } catch (IOException ex) { log.warn("Exception closing random access file", ex); } } } public static void close(FileChannel rc) { if( rc != null ) { try { rc.close(); } catch (IOException ex) { log.warn("EXception closing channel", ex); } } } }