Java tutorial
/** * Copyright 2014 Groupon.com * * 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 com.groupon.vertx.memcache.codec; import java.util.HashMap; import java.util.Map; import io.vertx.core.buffer.Buffer; import io.vertx.core.eventbus.MessageCodec; import io.vertx.core.eventbus.impl.CodecManager; import io.vertx.core.json.JsonObject; import com.groupon.vertx.memcache.client.JsendStatus; import com.groupon.vertx.memcache.client.response.RetrieveCommandResponse; /** * A MessageCodec for passing the RetrieveCommandResponse in Vertx * * @author Stuart Siegrist (fsiegrist at groupon dot com) * @since 3.1.0 */ public class RetrieveCommandResponseCodec implements MessageCodec<RetrieveCommandResponse, RetrieveCommandResponse> { @Override public void encodeToWire(Buffer buffer, RetrieveCommandResponse commandResponse) { JsonObject json = new JsonObject(); json.put("status", commandResponse.getStatus()); json.put("message", commandResponse.getMessage()); json.put("data", commandResponse.getData()); CodecManager.JSON_OBJECT_MESSAGE_CODEC.encodeToWire(buffer, json); } @Override public RetrieveCommandResponse decodeFromWire(int i, Buffer buffer) { JsonObject json = CodecManager.JSON_OBJECT_MESSAGE_CODEC.decodeFromWire(i, buffer); JsendStatus status = JsendStatus.valueOf(json.getString("status")); String message = json.getString("message"); JsonObject jsonData = json.getJsonObject("data"); Map<String, String> data = null; if (jsonData != null) { data = new HashMap<>(); for (Map.Entry<String, Object> entry : jsonData.getMap().entrySet()) { data.put(entry.getKey(), entry.getValue() != null ? entry.getValue().toString() : null); } } return new RetrieveCommandResponse.Builder().setStatus(status).setMessage(message).setData(data).build(); } @Override public RetrieveCommandResponse transform(RetrieveCommandResponse commandResponse) { return commandResponse; } @Override public String name() { return this.getClass().getSimpleName(); } @Override public byte systemCodecID() { return -1; } }