blob: f80b56260f04366bf2e505a6fde1dc028528b43a [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.ApplicationProperties;
/**
* Encoder of AMQP ApplicationProperties type values to a byte stream.
*/
public final class ApplicationPropertiesTypeEncoder extends AbstractDescribedMapTypeEncoder<String, Object, ApplicationProperties> {
@Override
public Class<ApplicationProperties> getTypeClass() {
return ApplicationProperties.class;
}
@Override
public UnsignedLong getDescriptorCode() {
return ApplicationProperties.DESCRIPTOR_CODE;
}
@Override
public Symbol getDescriptorSymbol() {
return ApplicationProperties.DESCRIPTOR_SYMBOL;
}
@Override
public boolean hasMap(ApplicationProperties value) {
return value.getValue() != null;
}
@Override
public int getMapSize(ApplicationProperties value) {
if (value.getValue() != null) {
return value.getValue().size();
} else {
return 0;
}
}
@Override
public void writeMapEntries(ProtonBuffer buffer, EncoderState state, ApplicationProperties properties) {
// Write the Map elements and then compute total size written.
properties.getValue().forEach((key, value) -> {
state.getEncoder().writeString(buffer, state, key);
state.getEncoder().writeObject(buffer, state, value);
});
}
}