blob: 769a3ca6bf4eae049c0ab23f4c1c4c352957f9fa [file] [log] [blame]
/*
* 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.
*/
package org.apache.qpid.protonj2.codec.encoders.messaging;
import org.apache.qpid.protonj2.buffer.ProtonBuffer;
import org.apache.qpid.protonj2.codec.EncoderState;
import org.apache.qpid.protonj2.codec.encoders.AbstractDescribedMapTypeEncoder;
import org.apache.qpid.protonj2.types.Symbol;
import org.apache.qpid.protonj2.types.UnsignedLong;
import org.apache.qpid.protonj2.types.messaging.DeliveryAnnotations;
/**
* Encoder of AMQP DeliveryAnnotations type values to a byte stream.
*/
public final class DeliveryAnnotationsTypeEncoder extends AbstractDescribedMapTypeEncoder<Symbol, Object, DeliveryAnnotations> {
@Override
public Class<DeliveryAnnotations> getTypeClass() {
return DeliveryAnnotations.class;
}
@Override
public UnsignedLong getDescriptorCode() {
return DeliveryAnnotations.DESCRIPTOR_CODE;
}
@Override
public Symbol getDescriptorSymbol() {
return DeliveryAnnotations.DESCRIPTOR_SYMBOL;
}
@Override
public boolean hasMap(DeliveryAnnotations value) {
return value.getValue() != null;
}
@Override
public int getMapSize(DeliveryAnnotations value) {
if (value.getValue() != null) {
return value.getValue().size();
} else {
return 0;
}
}
@Override
public void writeMapEntries(ProtonBuffer buffer, EncoderState state, DeliveryAnnotations annotations) {
// Write the Map elements and then compute total size written.
annotations.getValue().forEach((key, value) -> {
state.getEncoder().writeSymbol(buffer, state, key);
state.getEncoder().writeObject(buffer, state, value);
});
}
}