import org.opensolaris.os.dtrace.*;
import java.util.NoSuchElementException;
public class TestAbort {
static boolean aborted = false;
public static void
main(String[] args)
{
Consumer consumer = new LocalConsumer();
try {
consumer.open();
consumer.compile("syscall:::entry { @[execname] = count(); } " +
"tick-101ms { printa(@); }");
consumer.enable();
consumer.go();
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
System.exit(1);
}
consumer.close();
} catch (DTraceException e) {
e.printStackTrace();
System.exit(1);
}
consumer = new LocalConsumer();
try {
aborted = false;
consumer.addConsumerListener(new ConsumerAdapter() {
public void consumerStopped(ConsumerEvent e) {
aborted = true;
}
});
consumer.abort();
consumer.open();
consumer.compile("syscall:::entry { @[execname] = count(); } " +
"tick-101ms { printa(@); }");
consumer.enable();
consumer.go();
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
System.exit(1);
}
if (!aborted) {
throw new IllegalStateException("consumer not aborted");
}
consumer.close();
} catch (Exception e) {
e.printStackTrace();
System.exit(1);
}
consumer = new LocalConsumer();
try {
consumer.abort();
consumer.open();
consumer.abort();
consumer.compile("syscall:::entry { @[execname] = count(); } " +
"tick-101ms { printa(@); }");
consumer.abort();
consumer.enable();
consumer.abort();
consumer.go();
consumer.abort();
consumer.close();
try {
consumer.abort();
} catch (NoSuchElementException e) {
e.printStackTrace();
System.exit(1);
}
} catch (Exception e) {
e.printStackTrace();
System.exit(1);
}
consumer = new LocalConsumer();
try {
consumer.open();
consumer.compile("syscall:::entry { @[execname] = count(); } " +
"tick-101ms { printa(@); }");
consumer.enable();
consumer.go();
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
System.exit(1);
}
try {
synchronized (consumer) {
consumer.close();
}
} catch (IllegalThreadStateException e) {
try {
consumer.close();
System.out.println("Successful");
System.exit(0);
} catch (NoSuchElementException x) {
x.printStackTrace();
System.exit(1);
}
}
} catch (DTraceException e) {
e.printStackTrace();
System.exit(1);
}
System.err.println("Failed");
System.exit(1);
}
}