// Copyright (c) 2007-Present Pivotal Software, Inc. All rights reserved. // // This software, the RabbitMQ Java client library, is triple-licensed under the // Mozilla Public License 1.1 ("MPL"), the GNU General Public License version 2 // ("GPL") and the Apache License version 2 ("ASL"). For the MPL, please see // LICENSE-MPL-RabbitMQ. For the GPL, please see LICENSE-GPL2. For the ASL, // please see LICENSE-APACHE2. // // This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, // either express or implied. See the LICENSE file for specific language governing // rights and limitations of this software. // // If you have any questions regarding licensing, please contact us at // info@rabbitmq.com. package com.rabbitmq.client.impl; import java.io.DataOutputStream; import java.io.IOException; import com.rabbitmq.client.AMQP; import com.rabbitmq.client.impl.AMQImpl.MethodVisitor; /** * Base class for AMQP method objects, specialized by autogenerated * code in AMQP.java. */ public abstract class Method implements com.rabbitmq.client.Method { /** {@inheritDoc} */ @Override public abstract int protocolClassId(); /* properly an unsigned short */ /** {@inheritDoc} */ @Override public abstract int protocolMethodId(); /* properly an unsigned short */ /** {@inheritDoc} */ @Override public abstract String protocolMethodName(); /** * Tell if content is present. * @return true if the wire-protocol for this method should involve a content header and body, * or false if it should just involve a single method frame. */ public abstract boolean hasContent(); /** * Visitor support (double-dispatch mechanism). * @param visitor the visitor object * @return the result of the "visit" operation * @throws IOException if an error is encountered */ public abstract Object visit(MethodVisitor visitor) throws IOException; /** * Private API - Autogenerated writer for this method. * @param writer interface to an object to write the method arguments * @throws IOException if an error is encountered */ public abstract void writeArgumentsTo(MethodArgumentWriter writer) throws IOException; /** * Public API - debugging utility * @param buffer the buffer to append debug data to */ public void appendArgumentDebugStringTo(StringBuilder buffer) { buffer.append("(?)"); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("#method<").append(protocolMethodName()).append(">"); this.appendArgumentDebugStringTo(sb); return sb.toString(); } public Frame toFrame(int channelNumber) throws IOException { Frame frame = new Frame(AMQP.FRAME_METHOD, channelNumber); DataOutputStream bodyOut = frame.getOutputStream(); bodyOut.writeShort(protocolClassId()); bodyOut.writeShort(protocolMethodId()); MethodArgumentWriter argWriter = new MethodArgumentWriter(new ValueWriter(bodyOut)); writeArgumentsTo(argWriter); argWriter.flush(); return frame; } }