Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
shell0dh committed May 29, 2013
1 parent 7e19d85 commit cc9da01
Show file tree
Hide file tree
Showing 3 changed files with 184 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
package com.jd.bdp.hydra.wrapper;

import com.jd.bdp.hydra.Span;
import com.jd.bdp.hydra.agent.Tracer;

import java.util.concurrent.Callable;

/**
* Date: 13-5-29
* Time: 上午9:44
*/
public class TraceCallable<V> implements Callable<V> {

private final Callable<V> impl;
private final Span parent;
private final Tracer tracer = Tracer.getTracer();

public TraceCallable(Callable<V> impl) {
this.parent = tracer.getParentSpan();
this.impl = impl;
}

public TraceCallable(Span parent, Callable<V> impl) {
this.impl = impl;
this.parent = parent;
}

@Override
public V call() throws Exception {
if (parent != null) {
tracer.setParentSpan(parent);
}
return impl.call();
}

public Callable<V> getImpl() {
return impl;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
/*
* 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 com.jd.bdp.hydra.wrapper;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.concurrent.*;


public class TraceExecutorService implements ExecutorService {

private final ExecutorService impl;

public TraceExecutorService(ExecutorService impl) {
this.impl = impl;
}

@Override
public void execute(Runnable command) {
impl.execute(new TraceRunnable(command));
}

@Override
public void shutdown() {
impl.shutdown();
}

@Override
public List<Runnable> shutdownNow() {
return impl.shutdownNow();
}

@Override
public boolean isShutdown() {
return impl.isShutdown();
}

@Override
public boolean isTerminated() {
return impl.isTerminated();
}

@Override
public boolean awaitTermination(long timeout, TimeUnit unit)
throws InterruptedException {
return impl.awaitTermination(timeout, unit);
}

@Override
public <T> Future<T> submit(Callable<T> task) {
return impl.submit(new TraceCallable<T>(task));
}

@Override
public <T> Future<T> submit(Runnable task, T result) {
return impl.submit(new TraceRunnable(task), result);
}

@Override
public Future<?> submit(Runnable task) {
return impl.submit(new TraceRunnable(task));
}

private <T> Collection<? extends Callable<T>> wrapCollection(
Collection<? extends Callable<T>> tasks) {
List<Callable<T>> result = new ArrayList<Callable<T>>();
for (Callable<T> task : tasks) {
result.add(new TraceCallable<T>(task));
}
return result;
}

@Override
public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks)
throws InterruptedException {
return impl.invokeAll(wrapCollection(tasks));
}

@Override
public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks,
long timeout, TimeUnit unit) throws InterruptedException {
return impl.invokeAll(wrapCollection(tasks), timeout, unit);
}

@Override
public <T> T invokeAny(Collection<? extends Callable<T>> tasks)
throws InterruptedException, ExecutionException {
return impl.invokeAny(wrapCollection(tasks));
}

@Override
public <T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout,
TimeUnit unit) throws InterruptedException, ExecutionException,
TimeoutException {
return impl.invokeAny(wrapCollection(tasks), timeout, unit);
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package com.jd.bdp.hydra.wrapper;

import com.jd.bdp.hydra.Span;
import com.jd.bdp.hydra.agent.Tracer;

/**
* Date: 13-5-29
* Time: 上午9:50
*/
public class TraceRunnable implements Runnable{
private final Span parent;
private final Runnable runnable;
private Tracer tracer = Tracer.getTracer();


public TraceRunnable(Runnable r){
this.parent = tracer.getParentSpan();
this.runnable = r;
}

public TraceRunnable(Runnable r, Span p){
this.runnable = r;
this.parent = p;
}
@Override
public void run() {
if(parent != null){
tracer.setParentSpan(parent);
}
runnable.run();
}
}

0 comments on commit cc9da01

Please sign in to comment.