Package com.getperka.flatpack.client.impl

Source Code of com.getperka.flatpack.client.impl.FlatPackRequestBase

/*
* #%L
* FlatPack Client
* %%
* Copyright (C) 2012 Perka Inc.
* %%
* 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.
* #L%
*/
package com.getperka.flatpack.client.impl;

import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.Reader;
import java.io.Writer;
import java.lang.reflect.Type;
import java.net.HttpURLConnection;

import org.slf4j.Logger;

import com.getperka.flatpack.FlatPackEntity;
import com.getperka.flatpack.TraversalMode;
import com.getperka.flatpack.client.FlatPackRequest;
import com.getperka.flatpack.client.StatusCodeException;
import com.getperka.flatpack.util.FlatPackTypes;
import com.getperka.flatpack.util.IoObserver;

public class FlatPackRequestBase<R extends FlatPackRequest<R, X>, X>
    extends RequestBase<R, FlatPackEntity<X>> implements FlatPackRequest<R, X> {
  private final Logger logger;
  private final Type returnType;
  private FlatPackEntity<X> toSend;
  private final IoObserver ioObserver;

  protected FlatPackRequestBase(ApiBase api, Type returnType,
      String method, String path, boolean hasPayload, Object... args) {

    super(api, method, path, hasPayload, args);
    logger = api.getLogger();
    this.returnType = returnType;
    this.ioObserver = api.getIoObserver();
  }

  @Override
  public FlatPackEntity<X> getEntity() {
    return toSend;
  }

  @Override
  public FlatPackEntity<X> peek() {
    return getEntity();
  }

  @Override
  @SuppressWarnings("unchecked")
  public void setEntity(Object entity) {
    toSend = (FlatPackEntity<X>) FlatPackEntity.create(Object.class, entity, null);
    toSend.withTraversalMode(TraversalMode.DEEP);
  }

  @Override
  protected FlatPackEntity<X> execute(HttpURLConnection conn) throws IOException {
    Reader reader;
    int status = conn.getResponseCode();
    if (!isOk(status)) {
      InputStream errorStream = conn.getErrorStream();
      reader = errorStream == null ? null : new InputStreamReader(errorStream, FlatPackTypes.UTF8);
    } else {
      reader = new InputStreamReader(conn.getInputStream(), FlatPackTypes.UTF8);
    }

    reader = ioObserver.observe(reader);

    Throwable cause = null;
    FlatPackEntity<X> entity = null;
    if (reader != null) {
      try {
        entity = getApi().getFlatPack().getUnpacker().unpack(returnType, reader, null);
      } catch (IOException e) {
        cause = e;
        status = 0;
      } catch (RuntimeException e) {
        cause = e;
        status = 0;
      }
    }

    // Treat any non-2XX response as an error
    if (!isOk(status)) {
      StatusCodeException sce = new StatusCodeException(status, cause);
      sce.setEntity(entity);
      throw sce;
    }

    return entity;
  }

  @Override
  protected void writeEntity(HttpURLConnection connection) throws IOException {
    if (getEntity() == null) {
      return;
    }
    connection.setRequestProperty("Content-Type", "application/json; charset=UTF8");
    Writer out = new OutputStreamWriter(connection.getOutputStream(), FlatPackTypes.UTF8);
    out = ioObserver.observe(out);
    getApi().getFlatPack().getPacker().pack(toSend, out);
    out.close();
  }
}
TOP

Related Classes of com.getperka.flatpack.client.impl.FlatPackRequestBase

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.