Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2015 the original author or authors.
* @https://github.com/scouter-project/scouter
*
* 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.
*/
package scouter.agent.trace.api;
import scouter.agent.trace.HookArgs;
import scouter.agent.trace.TraceContext;
import scouter.lang.step.ApiCallStep;
import java.util.HashMap;
import java.util.Map;
public class ApiCallTraceHelper {
static interface IHelper {
public ApiCallStep process(TraceContext ctx, HookArgs hookPoint);
public void processEnd(TraceContext ctx, ApiCallStep step, Object rtn, HookArgs hookPoint);
}
static Map handlers = new HashMap();
static ForHttpClient43 forHttpClient43 = new ForHttpClient43();
static ForSpringAsyncRestTemplate forSpringAsyncRestTemplate = new ForSpringAsyncRestTemplate();
static void put(String name, IHelper o) {
name = name.replace('.', '/');
handlers.put(name, o);
}
public static IHelper get(String name) {
return handlers.get(name);
}
static {
put("sun/net/www/protocol/http/HttpURLConnection", new ForHttpURLConnection());
put("sun/net/www/http/HttpClient", new ForSunHttpClient());
put("org/apache/commons/httpclient/HttpClient", new ForHttpClient());
put("org/apache/http/impl/client/InternalHttpClient", new ForHttpClient43());
put("org/apache/http/impl/client/AbstractHttpClient", new ForHttpClient40());
put("com/sap/mw/jco/JCO$Client", new ForJCOClient());
put("com/netflix/ribbon/transport/netty/http/LoadBalancingHttpClient", new ForRibbonLB());
put("io/reactivex/netty/protocol/http/client/HttpClientImpl", new ForNettyHttpRequest());
put("org/springframework/web/client/RestTemplate", new ForSpringRestTemplate());
put("org/springframework/web/client/AsyncRestTemplate", new ForSpringAsyncRestTemplate());
}
private static IHelper defaultObj = new ForDefault();
public static ApiCallStep start(TraceContext ctx, HookArgs hookPoint) {
IHelper plug = handlers.get(hookPoint.class1);
if (plug == null)
return defaultObj.process(ctx, hookPoint);
return plug.process(ctx, hookPoint);
}
public static void end(TraceContext ctx, ApiCallStep step, Object rtn, HookArgs hookPoint) {
IHelper plug = handlers.get(hookPoint.class1);
if (plug == null)
defaultObj.processEnd(ctx, step, rtn, hookPoint);
plug.processEnd(ctx, step, rtn, hookPoint);
}
public static void setCalleeToCtxInHttpClientResponse(TraceContext ctx, Object _this, Object response) {
forHttpClient43.processSetCalleeToCtx(ctx, _this, response);
}
public static void setCalleeToCtxInSpringClientHttpResponse(TraceContext ctx, Object _this, Object response) {
forSpringAsyncRestTemplate.processSetCalleeToCtx(ctx, _this, response);
}
}