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

com.xiaomi.infra.galaxy.talos.client.ThreadSafeClient Maven / Gradle / Ivy

There is a newer version: 2.6.1.4
Show newest version
package com.xiaomi.infra.galaxy.talos.client;

import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import libthrift091.protocol.TCompactProtocol;
import libthrift091.protocol.TProtocol;
import org.apache.http.client.HttpClient;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.xiaomi.infra.galaxy.rpc.thrift.Credential;
import com.xiaomi.infra.galaxy.rpc.thrift.ThriftProtocol;
import com.xiaomi.infra.galaxy.rpc.util.clock.AdjustableClock;

public class ThreadSafeClient {
  private static class ThreadSafeInvocationHandler implements InvocationHandler {
    private static final Logger LOG = LoggerFactory.getLogger(ThreadSafeInvocationHandler.class);
    private static final Map ctorCache =
        new ConcurrentHashMap();
    private final HttpClient client;
    private final Map customHeaders;
    private final Credential credential;
    private final AdjustableClock clock;
    final Class ifaceClass;
    final Class implClass;
    final String url;
    private int socketTimeout = 0;
    private int connTimeout = 0;
    private boolean supportAccountKey = false;
    private String sid;

    private ThreadSafeInvocationHandler(HttpClient client, Map customHeaders,
        Credential credential, AdjustableClock clock, Class ifaceClass,
        Class implClass, String url, int socketTimeout, int connTimeout,
        boolean supportAccountKey, String sid) {
      this.client = client;
      this.customHeaders = customHeaders;
      this.credential = credential;
      this.clock = clock;
      this.ifaceClass = ifaceClass;
      this.implClass = implClass;
      this.url = url;
      this.socketTimeout = socketTimeout;
      this.connTimeout = connTimeout;
      this.supportAccountKey = supportAccountKey;
      this.sid = sid;
    }

    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
      try {
        TalosHttpClient talosHttpClient = new TalosHttpClient(url, client, this.credential, clock);
        talosHttpClient.setSocketTimeout(socketTimeout)
            .setConnectTimeout(connTimeout)
            .setProtocol(ThriftProtocol.TCOMPACT)
            .setQueryString("type=" + method.getName())
            .setSupportAccountKey(supportAccountKey)
            .setSid(sid);

        TProtocol proto = new TCompactProtocol(talosHttpClient);

        if (customHeaders != null) {
          for (Map.Entry header : customHeaders.entrySet()) {
            talosHttpClient.setCustomHeader(header.getKey(), header.getValue());
          }
        }

        Impl client = getDeclaredConstructor(implClass).newInstance(proto);
        return method.invoke(client, args);
      } catch (InvocationTargetException e) {
        throw e.getCause();
      }
    }

    public static  Constructor getDeclaredConstructor(Class clazz)
        throws NoSuchMethodException {
      Constructor ctor = ctorCache.get(clazz);
      if (ctor == null) {
        ctor = clazz.getDeclaredConstructor(TProtocol.class);
        ctorCache.put(clazz, ctor);
      }
      return ctor;
    }
  }

  /**
   * Create client wrapper which automatically retry the RPC calls for retryable errors until
   * success or reaches max retry time.
   */
  @SuppressWarnings("unchecked")
  public static  IFace getClient(HttpClient client, Map customHeaders,
      Credential credential, AdjustableClock clock, Class ifaceClass, Class implClass,
      String url, int socketTimeout, int connTimeout, boolean supportAccountKey, String sid) {
    return (IFace) Proxy.newProxyInstance(ThreadSafeClient.class.getClassLoader(),
        new Class[] { ifaceClass },
        new ThreadSafeInvocationHandler(client, customHeaders, credential, clock,
            ifaceClass, implClass, url, socketTimeout, connTimeout, supportAccountKey, sid)
    );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy