-
Notifications
You must be signed in to change notification settings - Fork 620
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add thrift plugin support thrift TMultiplexedProcessor. (#22)
- Loading branch information
Showing
8 changed files
with
374 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
82 changes: 82 additions & 0 deletions
82
...c/main/java/org/apache/skywalking/apm/plugin/thrift/TMultiplexedProcessorInterceptor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
* 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.skywalking.apm.plugin.thrift; | ||
|
||
import java.lang.reflect.Method; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
import org.apache.skywalking.apm.agent.core.context.ContextManager; | ||
import org.apache.skywalking.apm.agent.core.logging.api.ILog; | ||
import org.apache.skywalking.apm.agent.core.logging.api.LogManager; | ||
import org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.EnhancedInstance; | ||
import org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.InstanceConstructorInterceptor; | ||
import org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.InstanceMethodsAroundInterceptor; | ||
import org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.MethodInterceptResult; | ||
import org.apache.skywalking.apm.plugin.thrift.wrapper.Context; | ||
import org.apache.skywalking.apm.plugin.thrift.wrapper.ServerInProtocolWrapper; | ||
import org.apache.thrift.ProcessFunction; | ||
import org.apache.thrift.TBaseAsyncProcessor; | ||
|
||
/** | ||
* To wrap the ProcessFunction for getting arguments of method. | ||
* | ||
* @see TBaseAsyncProcessor | ||
* @see TBaseProcessorInterceptor | ||
* @see TMultiplexedProcessorInterceptor | ||
*/ | ||
public class TMultiplexedProcessorInterceptor implements InstanceConstructorInterceptor, InstanceMethodsAroundInterceptor { | ||
private Map<String, ProcessFunction> processMap = new HashMap<>(); | ||
|
||
private static final ILog LOGGER = LogManager.getLogger(TMultiplexedProcessorInterceptor.class); | ||
|
||
@Override | ||
public void onConstruct(final EnhancedInstance objInst, final Object[] allArguments) throws Throwable { | ||
objInst.setSkyWalkingDynamicField(processMap); | ||
} | ||
|
||
@Override | ||
public void beforeMethod(EnhancedInstance objInst, | ||
Method method, | ||
Object[] allArguments, | ||
Class<?>[] argumentsTypes, | ||
MethodInterceptResult result) throws Throwable { | ||
|
||
ServerInProtocolWrapper in = (ServerInProtocolWrapper) allArguments[0]; | ||
in.initial(new Context(processMap)); | ||
} | ||
|
||
@Override | ||
public Object afterMethod(EnhancedInstance objInst, | ||
Method method, | ||
Object[] allArguments, | ||
Class<?>[] argumentsTypes, | ||
Object ret) throws Throwable { | ||
ContextManager.stopSpan(); | ||
return ret; | ||
} | ||
|
||
@Override | ||
public void handleMethodException(EnhancedInstance objInst, | ||
Method method, | ||
Object[] allArguments, | ||
Class<?>[] argumentsTypes, | ||
Throwable t) { | ||
ContextManager.activeSpan().log(t); | ||
} | ||
} |
80 changes: 80 additions & 0 deletions
80
.../apache/skywalking/apm/plugin/thrift/TMultiplexedProcessorRegisterDefaultInterceptor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
* 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.skywalking.apm.plugin.thrift; | ||
|
||
import java.lang.reflect.Method; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
import org.apache.skywalking.apm.agent.core.logging.api.ILog; | ||
import org.apache.skywalking.apm.agent.core.logging.api.LogManager; | ||
import org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.EnhancedInstance; | ||
import org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.InstanceMethodsAroundInterceptor; | ||
import org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.MethodInterceptResult; | ||
import org.apache.thrift.ProcessFunction; | ||
import org.apache.thrift.TBaseAsyncProcessor; | ||
import org.apache.thrift.TBaseProcessor; | ||
import org.apache.thrift.TProcessor; | ||
|
||
public class TMultiplexedProcessorRegisterDefaultInterceptor implements InstanceMethodsAroundInterceptor { | ||
|
||
private static final ILog LOGGER = LogManager.getLogger(TMultiplexedProcessorRegisterDefaultInterceptor.class); | ||
|
||
@Override | ||
public void beforeMethod(EnhancedInstance objInst, | ||
Method method, | ||
Object[] allArguments, | ||
Class<?>[] argumentsTypes, | ||
MethodInterceptResult result) throws Throwable { | ||
|
||
Map<String, ProcessFunction> processMap = (Map<String, ProcessFunction>) objInst.getSkyWalkingDynamicField(); | ||
TProcessor processor = (TProcessor) allArguments[0]; | ||
processMap.putAll(getProcessMap(processor)); | ||
} | ||
|
||
@Override | ||
public Object afterMethod(EnhancedInstance objInst, | ||
Method method, | ||
Object[] allArguments, | ||
Class<?>[] argumentsTypes, | ||
Object ret) throws Throwable { | ||
return ret; | ||
} | ||
|
||
@Override | ||
public void handleMethodException(EnhancedInstance objInst, | ||
Method method, | ||
Object[] allArguments, | ||
Class<?>[] argumentsTypes, | ||
Throwable t) { | ||
} | ||
|
||
private Map<String, ProcessFunction> getProcessMap(TProcessor processor) { | ||
Map<String, ProcessFunction> hashMap = new HashMap<>(); | ||
if (processor instanceof TBaseProcessor) { | ||
Map<String, ProcessFunction> processMapView = ((TBaseProcessor) processor).getProcessMapView(); | ||
hashMap.putAll(processMapView); | ||
} else if (processor instanceof TBaseAsyncProcessor) { | ||
Map<String, ProcessFunction> processMapView = ((TBaseProcessor) processor).getProcessMapView(); | ||
hashMap.putAll(processMapView); | ||
} else { | ||
LOGGER.warn("Not support this processor:{}", processor.getClass().getName()); | ||
} | ||
return hashMap; | ||
} | ||
} |
82 changes: 82 additions & 0 deletions
82
...ava/org/apache/skywalking/apm/plugin/thrift/TMultiplexedProcessorRegisterInterceptor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
* 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.skywalking.apm.plugin.thrift; | ||
|
||
import java.lang.reflect.Method; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
import org.apache.skywalking.apm.agent.core.logging.api.ILog; | ||
import org.apache.skywalking.apm.agent.core.logging.api.LogManager; | ||
import org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.EnhancedInstance; | ||
import org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.InstanceMethodsAroundInterceptor; | ||
import org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.MethodInterceptResult; | ||
import org.apache.thrift.ProcessFunction; | ||
import org.apache.thrift.TBaseAsyncProcessor; | ||
import org.apache.thrift.TBaseProcessor; | ||
import org.apache.thrift.TProcessor; | ||
import org.apache.thrift.protocol.TMultiplexedProtocol; | ||
|
||
public class TMultiplexedProcessorRegisterInterceptor implements InstanceMethodsAroundInterceptor { | ||
|
||
private static final ILog LOGGER = LogManager.getLogger(TMultiplexedProcessorRegisterInterceptor.class); | ||
|
||
@Override | ||
public void beforeMethod(EnhancedInstance objInst, | ||
Method method, | ||
Object[] allArguments, | ||
Class<?>[] argumentsTypes, | ||
MethodInterceptResult result) throws Throwable { | ||
|
||
Map<String, ProcessFunction> processMap = (Map<String, ProcessFunction>) objInst.getSkyWalkingDynamicField(); | ||
String serviceName = (String) allArguments[0]; | ||
TProcessor processor = (TProcessor) allArguments[1]; | ||
processMap.putAll(getProcessMap(serviceName, processor)); | ||
} | ||
|
||
@Override | ||
public Object afterMethod(EnhancedInstance objInst, | ||
Method method, | ||
Object[] allArguments, | ||
Class<?>[] argumentsTypes, | ||
Object ret) throws Throwable { | ||
return ret; | ||
} | ||
|
||
@Override | ||
public void handleMethodException(EnhancedInstance objInst, | ||
Method method, | ||
Object[] allArguments, | ||
Class<?>[] argumentsTypes, | ||
Throwable t) { | ||
} | ||
|
||
private Map<String, ProcessFunction> getProcessMap(String serviceName, TProcessor processor) { | ||
Map<String, ProcessFunction> hashMap = new HashMap<>(); | ||
if (processor instanceof TBaseProcessor) { | ||
Map<String, ProcessFunction> processMapView = ((TBaseProcessor) processor).getProcessMapView(); | ||
processMapView.forEach((k, v) -> hashMap.put(serviceName + TMultiplexedProtocol.SEPARATOR + k, v)); | ||
} else if (processor instanceof TBaseAsyncProcessor) { | ||
Map<String, ProcessFunction> processMapView = ((TBaseAsyncProcessor) processor).getProcessMapView(); | ||
processMapView.forEach((k, v) -> hashMap.put(serviceName + TMultiplexedProtocol.SEPARATOR + k, v)); | ||
} else { | ||
LOGGER.warn("Not support this processor:{}", processor.getClass().getName()); | ||
} | ||
return hashMap; | ||
} | ||
} |
Oops, something went wrong.