/* * Copyright (C) 2005 Alfresco, Inc. * * This program 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. * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * As a special exception to the terms and conditions of version 2.0 of * the GPL, you may redistribute this Program in connection with Free/Libre * and Open Source Software ("FLOSS") applications as described in Alfresco's * FLOSS exception. You should have recieved a copy of the text describing * the FLOSS exception, and it is also available here: * http://www.alfresco.com/legal/licensing" */ package org.alfresco.filesys.server.oncrpc; import java.io.*; import java.net.*; /** * RPC Client Class * *

Provides either a socket or datagram connection to an RPC server. * * @author GKSpencer */ public abstract class RpcClient { // Network address and port to connect to on the remote RPC server private InetAddress m_server; private int m_port; // Protocol type private int m_protocol; // Maximum RPC size to send/receive private int m_maxRpcSize; /** * Class constructor * * @param addr InetAddress * @param port int * @param proto int * @param maxRpcSize int * @throws IOException * @throws SocketException */ protected RpcClient(InetAddress addr, int port, int proto, int maxRpcSize) throws IOException, SocketException { // Save the server address, port and the protocol type m_server = addr; m_port = port; m_protocol = proto; // Set the maximum RPC size to send/recieve m_maxRpcSize = maxRpcSize; } /** * Return the maximum RPC size * * @return int */ public final int getMaximumRpcSize() { return m_maxRpcSize; } /** * Return the server address * * @return InetAddress */ public final InetAddress getServerAddress() { return m_server; } /** * Return the server port * * @return int */ public final int getServerPort() { return m_port; } /** * Return the protocol type * * @return int */ public final int isProtocol() { return m_protocol; } /** * Send an RPC request to the server * * @param rpc RpcPacket * @param rxRpc RpcPacket * @return RpcPacket * @throws IOException */ public abstract RpcPacket sendRPC(RpcPacket rpc, RpcPacket rxRpc) throws IOException; /** * Close the connection to the remote RPC server */ public abstract void closeConnection(); /** * Return the RPC connection details as a string * * @return String */ public String toString() { StringBuffer str = new StringBuffer(); str.append("["); str.append(isProtocol() == Rpc.TCP ? "TCP:" : "UDP:"); str.append(getServerAddress().getHostAddress()); str.append(":"); str.append(getServerPort()); str.append(","); str.append(getMaximumRpcSize()); str.append("]"); return str.toString(); } }