/* * 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.Configure; import scouter.agent.Logger; import scouter.agent.plugin.PluginHttpCallTrace; import scouter.agent.proxy.HttpClient43Factory; import scouter.agent.proxy.IHttpClient; import scouter.agent.trace.HookArgs; import scouter.agent.trace.TraceContext; import scouter.lang.step.ApiCallStep; import scouter.util.Hexa32; import scouter.util.IntKeyLinkedMap; import scouter.util.KeyGen; public class ForHttpClient40 implements ApiCallTraceHelper.IHelper { private boolean ok = true; private static IntKeyLinkedMap<IHttpClient> httpclients = new IntKeyLinkedMap<IHttpClient>().setMax(5); public ApiCallStep process(TraceContext ctx, HookArgs hookPoint) { ApiCallStep step = new ApiCallStep(); try { if (ok == false) ctx.apicall_name = hookPoint.class1 + "." + hookPoint.method; if (hookPoint.args != null && hookPoint.args.length >= 2) { IHttpClient httpclient = getProxy(hookPoint); step.txid = KeyGen.next(); transfer(httpclient, ctx, hookPoint.args[0], hookPoint.args[1], step.txid); String host = httpclient.getHost(hookPoint.args[0]); step.opt = 1; step.address = host; if (host != null) ctx.apicall_target = host; ctx.apicall_name = httpclient.getURI(hookPoint.args[1]); } } catch (Exception e) { ok = false; ctx.apicall_name = e.toString(); } if (ctx.apicall_name == null) ctx.apicall_name = hookPoint.class1; return step; } private IHttpClient getProxy(HookArgs hookPoint) { int key = System.identityHashCode(hookPoint.this1.getClass()); IHttpClient httpclient = httpclients.get(key); if (httpclient == null) { synchronized (this) { httpclient = HttpClient43Factory.create(hookPoint.this1.getClass().getClassLoader()); httpclients.put(key, httpclient); } } return httpclient; } private void transfer(IHttpClient httpclient, TraceContext ctx, Object host, Object req, long calleeTxid) { Configure conf = Configure.getInstance(); if (conf.trace_interservice_enabled) { try { if (ctx.gxid == 0) { ctx.gxid = ctx.txid; } httpclient.addHeader(req, conf._trace_interservice_gxid_header_key, Hexa32.toString32(ctx.gxid)); httpclient.addHeader(req, conf._trace_interservice_caller_header_key, Hexa32.toString32(ctx.txid)); httpclient.addHeader(req, conf._trace_interservice_callee_header_key, Hexa32.toString32(calleeTxid)); PluginHttpCallTrace.call(ctx, req); } catch (Throwable e) { Logger.println("A001", e); ok = false; } } } }