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

org.apache.calcite.avatica.server.AvaticaJsonHandler Maven / Gradle / Ivy

The 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.apache.calcite.avatica.server;

import org.apache.calcite.avatica.AvaticaUtils;
import org.apache.calcite.avatica.remote.Handler.HandlerResponse;
import org.apache.calcite.avatica.remote.JsonHandler;
import org.apache.calcite.avatica.remote.Service;
import org.apache.calcite.avatica.remote.Service.RpcMetadataResponse;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import org.eclipse.jetty.server.Request;
import org.eclipse.jetty.server.handler.AbstractHandler;

import java.io.IOException;
import java.util.Objects;

import javax.servlet.ServletException;
import javax.servlet.ServletInputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Jetty handler that executes Avatica JSON request-responses.
 */
public class AvaticaJsonHandler extends AbstractHandler implements AvaticaHandler {
  private static final Log LOG = LogFactory.getLog(AvaticaJsonHandler.class);

  final Service service;
  final JsonHandler jsonHandler;

  public AvaticaJsonHandler(Service service) {
    this.service = Objects.requireNonNull(service);
    this.jsonHandler = new JsonHandler(service);
  }

  public void handle(String target, Request baseRequest,
      HttpServletRequest request, HttpServletResponse response)
      throws IOException, ServletException {
    response.setContentType("application/json;charset=utf-8");
    response.setStatus(HttpServletResponse.SC_OK);
    if (request.getMethod().equals("POST")) {
      // First look for a request in the header, then look in the body.
      // The latter allows very large requests without hitting HTTP 413.
      String rawRequest = request.getHeader("request");
      if (rawRequest == null) {
        try (ServletInputStream inputStream = request.getInputStream()) {
          rawRequest = AvaticaUtils.readFully(inputStream);
        }
      }
      final String jsonRequest =
          new String(rawRequest.getBytes("ISO-8859-1"), "UTF-8");
      if (LOG.isTraceEnabled()) {
        LOG.trace("request: " + jsonRequest);
      }

      final HandlerResponse jsonResponse = jsonHandler.apply(jsonRequest);
      if (LOG.isTraceEnabled()) {
        LOG.trace("response: " + jsonResponse);
      }
      baseRequest.setHandled(true);
      // Set the status code and write out the response.
      response.setStatus(jsonResponse.getStatusCode());
      response.getWriter().println(jsonResponse.getResponse());
    }
  }

  @Override public void setServerRpcMetadata(RpcMetadataResponse metadata) {
    // Set the metadata for the normal service calls
    service.setRpcMetadata(metadata);
    // Also add it to the handler to include with exceptions
    jsonHandler.setRpcMetadata(metadata);
  }
}

// End AvaticaJsonHandler.java




© 2015 - 2025 Weber Informatics LLC | Privacy Policy