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

io.vertx.serviceproxy.ServiceExceptionMessageCodec Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR3
Show newest version
/*
 * Copyright 2021 Red Hat, Inc.
 *
 *  All rights reserved. This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License v1.0
 *  and Apache License v2.0 which accompanies this distribution.
 *
 *  The Eclipse Public License is available at
 *  http://www.eclipse.org/legal/epl-v10.html
 *
 *  The Apache License v2.0 is available at
 *  http://www.opensource.org/licenses/apache2.0.php
 *
 *  You may elect to redistribute this code under either of these licenses.
 */
package io.vertx.serviceproxy;

import io.netty.util.CharsetUtil;
import io.vertx.core.buffer.Buffer;
import io.vertx.core.eventbus.MessageCodec;
import io.vertx.core.json.JsonObject;

/**
 * A MessageCodec for ServiceException
 *
 * @author Dan O'Reilly
 */
public class ServiceExceptionMessageCodec implements MessageCodec {

  @Override
  public void encodeToWire(Buffer buffer, ServiceException body) {
    buffer.appendInt(body.failureCode());
    if (body.getMessage() == null) {
      buffer.appendByte((byte)0);
    } else {
      buffer.appendByte((byte)1);
      byte[] encoded = body.getMessage().getBytes(CharsetUtil.UTF_8);
      buffer.appendInt(encoded.length);
      buffer.appendBytes(encoded);
    }
    body.getDebugInfo().writeToBuffer(buffer);
  }

  @Override
  public ServiceException decodeFromWire(int pos, Buffer buffer) {
    int failureCode = buffer.getInt(pos);
    pos += 4;
    boolean isNull = buffer.getByte(pos) == (byte)0;
    pos++;
    String message;
    if (!isNull) {
      int strLength = buffer.getInt(pos);
      pos += 4;
      byte[] bytes = buffer.getBytes(pos, pos + strLength);
      message = new String(bytes, CharsetUtil.UTF_8);
      pos += strLength;
    } else {
      message = null;
    }
    JsonObject debugInfo = new JsonObject();
    debugInfo.readFromBuffer(pos, buffer);
    return new ServiceException(failureCode, message, debugInfo);
  }

  @Override
  public ServiceException transform(ServiceException exception) {
    return exception;
  }

  @Override
  public String name() {
    return "ServiceException";
  }

  @Override
  public byte systemCodecID() {
    return -1;
  }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy