/* * 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. */ #include #include #include #include // // NOTE!: This file is autogenerated - do not modify! // if you need to make a change, please see the Java Classes in the // activemq-core module // using namespace std; using namespace activemq; using namespace activemq::exceptions; using namespace activemq::commands; using namespace activemq::wireformat; using namespace activemq::wireformat::openwire; using namespace activemq::wireformat::openwire::marshal; using namespace activemq::wireformat::openwire::utils; using namespace activemq::wireformat::openwire::marshal::generated; using namespace decaf; using namespace decaf::io; using namespace decaf::lang; /////////////////////////////////////////////////////////////////////////////// DataStructure* MessageAckMarshaller::createObject() const { return new MessageAck(); } /////////////////////////////////////////////////////////////////////////////// unsigned char MessageAckMarshaller::getDataStructureType() const { return MessageAck::ID_MESSAGEACK; } /////////////////////////////////////////////////////////////////////////////// void MessageAckMarshaller::tightUnmarshal(OpenWireFormat* wireFormat, DataStructure* dataStructure, DataInputStream* dataIn, BooleanStream* bs) { try { BaseCommandMarshaller::tightUnmarshal(wireFormat, dataStructure, dataIn, bs); MessageAck* info = dynamic_cast(dataStructure); int wireVersion = wireFormat->getVersion(); info->setDestination(Pointer(dynamic_cast( tightUnmarshalCachedObject(wireFormat, dataIn, bs)))); info->setTransactionId(Pointer(dynamic_cast( tightUnmarshalCachedObject(wireFormat, dataIn, bs)))); info->setConsumerId(Pointer(dynamic_cast( tightUnmarshalCachedObject(wireFormat, dataIn, bs)))); info->setAckType(dataIn->readByte()); info->setFirstMessageId(Pointer(dynamic_cast( tightUnmarshalNestedObject(wireFormat, dataIn, bs)))); info->setLastMessageId(Pointer(dynamic_cast( tightUnmarshalNestedObject(wireFormat, dataIn, bs)))); info->setMessageCount(dataIn->readInt()); if (wireVersion >= 7) { info->setPoisonCause(Pointer(dynamic_cast( tightUnmarshalBrokerError(wireFormat, dataIn, bs)))); } } AMQ_CATCH_RETHROW(decaf::io::IOException) AMQ_CATCH_EXCEPTION_CONVERT(exceptions::ActiveMQException, decaf::io::IOException) AMQ_CATCHALL_THROW(decaf::io::IOException) } /////////////////////////////////////////////////////////////////////////////// int MessageAckMarshaller::tightMarshal1(OpenWireFormat* wireFormat, DataStructure* dataStructure, BooleanStream* bs) { try { MessageAck* info = dynamic_cast(dataStructure); int rc = BaseCommandMarshaller::tightMarshal1(wireFormat, dataStructure, bs); int wireVersion = wireFormat->getVersion(); rc += tightMarshalCachedObject1(wireFormat, info->getDestination().get(), bs); rc += tightMarshalCachedObject1(wireFormat, info->getTransactionId().get(), bs); rc += tightMarshalCachedObject1(wireFormat, info->getConsumerId().get(), bs); rc += tightMarshalNestedObject1(wireFormat, info->getFirstMessageId().get(), bs); rc += tightMarshalNestedObject1(wireFormat, info->getLastMessageId().get(), bs); if (wireVersion >= 7) { rc += tightMarshalBrokerError1(wireFormat, info->getPoisonCause().get(), bs); } return rc + 5; } AMQ_CATCH_RETHROW(decaf::io::IOException) AMQ_CATCH_EXCEPTION_CONVERT(exceptions::ActiveMQException, decaf::io::IOException) AMQ_CATCHALL_THROW(decaf::io::IOException) } /////////////////////////////////////////////////////////////////////////////// void MessageAckMarshaller::tightMarshal2(OpenWireFormat* wireFormat, DataStructure* dataStructure, DataOutputStream* dataOut, BooleanStream* bs) { try { BaseCommandMarshaller::tightMarshal2(wireFormat, dataStructure, dataOut, bs ); MessageAck* info = dynamic_cast(dataStructure); int wireVersion = wireFormat->getVersion(); tightMarshalCachedObject2(wireFormat, info->getDestination().get(), dataOut, bs); tightMarshalCachedObject2(wireFormat, info->getTransactionId().get(), dataOut, bs); tightMarshalCachedObject2(wireFormat, info->getConsumerId().get(), dataOut, bs); dataOut->write(info->getAckType()); tightMarshalNestedObject2(wireFormat, info->getFirstMessageId().get(), dataOut, bs); tightMarshalNestedObject2(wireFormat, info->getLastMessageId().get(), dataOut, bs); dataOut->writeInt(info->getMessageCount()); if (wireVersion >= 7) { tightMarshalBrokerError2(wireFormat, info->getPoisonCause().get(), dataOut, bs); } } AMQ_CATCH_RETHROW(decaf::io::IOException) AMQ_CATCH_EXCEPTION_CONVERT( exceptions::ActiveMQException, decaf::io::IOException) AMQ_CATCHALL_THROW(decaf::io::IOException) } /////////////////////////////////////////////////////////////////////////////// void MessageAckMarshaller::looseUnmarshal(OpenWireFormat* wireFormat, DataStructure* dataStructure, DataInputStream* dataIn) { try { BaseCommandMarshaller::looseUnmarshal(wireFormat, dataStructure, dataIn); MessageAck* info = dynamic_cast(dataStructure); int wireVersion = wireFormat->getVersion(); info->setDestination(Pointer(dynamic_cast( looseUnmarshalCachedObject(wireFormat, dataIn)))); info->setTransactionId(Pointer(dynamic_cast( looseUnmarshalCachedObject(wireFormat, dataIn)))); info->setConsumerId(Pointer(dynamic_cast( looseUnmarshalCachedObject(wireFormat, dataIn)))); info->setAckType(dataIn->readByte()); info->setFirstMessageId(Pointer(dynamic_cast( looseUnmarshalNestedObject(wireFormat, dataIn)))); info->setLastMessageId(Pointer(dynamic_cast( looseUnmarshalNestedObject(wireFormat, dataIn)))); info->setMessageCount(dataIn->readInt()); if (wireVersion >= 7) { info->setPoisonCause(Pointer(dynamic_cast< BrokerError*>( looseUnmarshalBrokerError(wireFormat, dataIn)))); } } AMQ_CATCH_RETHROW(decaf::io::IOException) AMQ_CATCH_EXCEPTION_CONVERT(exceptions::ActiveMQException, decaf::io::IOException) AMQ_CATCHALL_THROW(decaf::io::IOException) } /////////////////////////////////////////////////////////////////////////////// void MessageAckMarshaller::looseMarshal(OpenWireFormat* wireFormat, DataStructure* dataStructure, DataOutputStream* dataOut) { try { MessageAck* info = dynamic_cast(dataStructure); BaseCommandMarshaller::looseMarshal(wireFormat, dataStructure, dataOut); int wireVersion = wireFormat->getVersion(); looseMarshalCachedObject(wireFormat, info->getDestination().get(), dataOut); looseMarshalCachedObject(wireFormat, info->getTransactionId().get(), dataOut); looseMarshalCachedObject(wireFormat, info->getConsumerId().get(), dataOut); dataOut->write(info->getAckType()); looseMarshalNestedObject(wireFormat, info->getFirstMessageId().get(), dataOut); looseMarshalNestedObject(wireFormat, info->getLastMessageId().get(), dataOut); dataOut->writeInt(info->getMessageCount()); if (wireVersion >= 7) { looseMarshalBrokerError(wireFormat, info->getPoisonCause().get(), dataOut); } } AMQ_CATCH_RETHROW(decaf::io::IOException) AMQ_CATCH_EXCEPTION_CONVERT(exceptions::ActiveMQException, decaf::io::IOException) AMQ_CATCHALL_THROW(decaf::io::IOException) }