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

org.vootoo.server.netty.ProtobufResponseSetter Maven / Gradle / Ivy

There is a newer version: 0.5.2
Show newest version
/*
 * 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.vootoo.server.netty;

import org.apache.solr.common.SolrException;
import org.apache.solr.common.util.FastOutputStream;
import org.apache.solr.common.util.NamedList;
import org.apache.solr.response.SolrQueryResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.vootoo.client.netty.protocol.SolrProtocol;
import org.vootoo.client.netty.util.ByteStringer;
import org.vootoo.client.netty.util.ProtobufUtil;
import org.vootoo.common.MemoryOutputStream;
import org.vootoo.server.ResponseSetter;

import java.io.ByteArrayOutputStream;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

/**
 * @author chenlb on 2015-05-25 17:28.
 */
public class ProtobufResponseSetter implements ResponseSetter {

  private static final Logger logger = LoggerFactory.getLogger(ProtobufResponseSetter.class);

  private SolrProtocol.SolrResponse.Builder protocolResponseBuilder = SolrProtocol.SolrResponse.newBuilder();
  private SolrProtocol.ResponseBody.Builder responseBodyBuilder;

  private SolrQueryResponse solrQueryResponse;
  private MemoryOutputStream responeOutput;

  public ProtobufResponseSetter(long rid) {
    protocolResponseBuilder.setRid(rid);
  }

  private void checkResponseBodyBuilder() {
    if(responseBodyBuilder == null) {
      responseBodyBuilder = SolrProtocol.ResponseBody.newBuilder();
    }
  }

  @Override
  public void setContentType(String contentType) {
    checkResponseBodyBuilder();
    responseBodyBuilder.setContentType(contentType);
  }

  @Override
  public OutputStream getResponseOutputStream() {
    if(responeOutput == null) {
      responeOutput = new MemoryOutputStream();
    }
    return responeOutput;
  }

  @Override
  public void setSolrResponseException(int code, NamedList info) {
    SolrProtocol.ExceptionBody.Builder exceptionBody = SolrProtocol.ExceptionBody.newBuilder();

    exceptionBody.setCode(code);

    ProtobufUtil.fillErrorMetadata(exceptionBody, (NamedList) info.get("metadata"));

    Object msg = info.get("msg");
    if(msg != null) {
      exceptionBody.setMessage(String.valueOf(msg));
    }

    String trace = (String)info.get("trace");
    if(trace != null) {
      exceptionBody.setTrace(trace);
    }

    protocolResponseBuilder.addExceptionBody(exceptionBody);
  }

  @Override
  public void addError(int code, String message) {
    SolrProtocol.ExceptionBody.Builder exceptionBody = SolrProtocol.ExceptionBody.newBuilder();
    exceptionBody.setCode(code);
    exceptionBody.setMessage(message);

    protocolResponseBuilder.addExceptionBody(exceptionBody);
  }

  @Override
  public void addError(Throwable ex) {
    addError(500, ex);
  }

  @Override
  public void addError(int code, Throwable ex) {
    SolrProtocol.ExceptionBody.Builder exceptionBody = SolrProtocol.ExceptionBody.newBuilder();
    int errorCode = ProtobufUtil.getErrorInfo(ex, exceptionBody);

    if(errorCode == 500 && code != 500 && code >= 100) {
      // extend code
      exceptionBody.setCode(code);
    }

    protocolResponseBuilder.addExceptionBody(exceptionBody);
    //TODO check need
    logger.error(ex.getMessage(), ex);
  }

  @Override
  public void writeQueryResponseComplete(SolrQueryResponse solrQueryResponse) {
    this.solrQueryResponse = solrQueryResponse;
    if(responeOutput != null) {
      checkResponseBodyBuilder();
      responseBodyBuilder.setBody(ByteStringer.wrap(responeOutput.getBuffer(), 0, responeOutput.getCount()));
      protocolResponseBuilder.setResponseBody(responseBodyBuilder);
    } else {
      logger.warn("SolrQueryResponse write completed, but not found in OutputStream, responeOutput is null.");
    }
  }

  @Override
  public SolrQueryResponse getSolrQueryResponse() {
    return solrQueryResponse;
  }

  @Override
  public SolrProtocol.SolrResponse buildProtocolResponse() {
    return protocolResponseBuilder.build();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy