All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fisco.bcos.sdk.service.model.BlockNumberMessageDecoder Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
/**
 * Copyright 2014-2020 [fisco-dev]
 *
 * 

Licensed 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.fisco.bcos.sdk.service.model; import java.io.IOException; import org.fisco.bcos.sdk.channel.model.EnumChannelProtocolVersion; import org.fisco.bcos.sdk.model.Message; import org.fisco.bcos.sdk.utils.ObjectMapperFactory; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class BlockNumberMessageDecoder { private static Logger logger = LoggerFactory.getLogger(BlockNumberMessageDecoder.class); public BlockNumberNotification decode(EnumChannelProtocolVersion version, Message message) { BlockNumberNotification blockNumberNotification; switch (version) { case VERSION_1: { blockNumberNotification = decodeV1(message); } break; default: { blockNumberNotification = decodeByDefault(message); } break; } return blockNumberNotification; } /** * @param message the notification message * @return the decoded block number information */ protected BlockNumberNotification decodeByDefault(Message message) { try { return ObjectMapperFactory.getObjectMapper() .readValue(message.getData(), BlockNumberNotification.class); } catch (IOException e) { logger.error( "BlockNumberMessageDecoder: decode BlockNumberNotification message failed, type: {}, seq: {}, size: {}, reason: {}", message.getType(), message.getSeq(), message.getLength(), e.getMessage()); return null; } } /** * @param message the notification message * @return the decoded block number information */ protected BlockNumberNotification decodeV1(Message message) { String[] split = message.getData().toString().split(","); if (split.length != 2) { return null; } return new BlockNumberNotification(split[0], split[1]); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy