/* * The MIT License * * Copyright (c) 2014 Red Hat, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package com.github.olivergondza.dumpling.query; import java.io.ByteArrayOutputStream; import java.io.PrintStream; import javax.annotation.Nonnull; import com.github.olivergondza.dumpling.model.ModelObject.Mode; import com.github.olivergondza.dumpling.model.ProcessRuntime; import com.github.olivergondza.dumpling.model.ProcessThread; import com.github.olivergondza.dumpling.model.ThreadSet; /** * Query single {@link ThreadSet}. * * Run query against a subset of runtime threads passed in using * {@link #query(ThreadSet)}. Query can access whore runtime and all its threads * using <tt>initialSet.getProcessRuntime()</tt>. It is up to query implementation * to decide that an "initial set" mean in its context. * * For instance {@link Deadlocks} detect only those deadlocks where at least * one of initial threads are part of the cycle. * * @author ogondza * @see ThreadSet#query(SingleThreadSetQuery) * @see ProcessRuntime#query(SingleThreadSetQuery) */ public interface SingleThreadSetQuery<ResultType extends SingleThreadSetQuery.Result<?, ?, ?>> { /** * Get typed result of the query. */ public @Nonnull < SetType extends ThreadSet<SetType, RuntimeType, ThreadType>, RuntimeType extends ProcessRuntime<RuntimeType, SetType, ThreadType>, ThreadType extends ProcessThread<ThreadType, SetType, RuntimeType> > ResultType query(@Nonnull SetType initialSet); /** * Query result that filter/arrange threads. * * Data holder to uniformly represent query results in both CLI and #toString * when used from groovy. * * Result consists of 3 parts: * - query result description ({@link #printResult(PrintStream)}), * - involved thread listing (optional), * - query result summary ({@link #printSummary(PrintStream)}). * * @author ogondza * @see SingleThreadSetQuery */ public static abstract class Result< SetType extends ThreadSet<SetType, RuntimeType, ThreadType>, RuntimeType extends ProcessRuntime<RuntimeType, SetType, ThreadType>, ThreadType extends ProcessThread<ThreadType, SetType, RuntimeType> > { /** * Show stack traces of involved threads. */ private final boolean showStackTraces; protected Result(boolean showStackTraces) { this.showStackTraces = showStackTraces; } /** * Print query result. */ protected abstract void printResult(@Nonnull PrintStream out); /** * Threads that are involved in result. * * These threads will be listed if <tt>showStackTraces</tt> equal true. */ protected abstract @Nonnull SetType involvedThreads(); /** * Print optional summary for a query. * * To be overriden when there is any summary to report. */ protected void printSummary(@SuppressWarnings("unused") @Nonnull PrintStream out) {} /** * Exit code to report when run from CLI. * * @return By default it is number of involved threads, implementation can * provide custom value. */ public int exitCode() { final SetType involvedThreads = involvedThreads(); return involvedThreads.size(); } @Override public final String toString() { ByteArrayOutputStream buffer = new ByteArrayOutputStream(); printInto(new PrintStream(buffer)); return buffer.toString(); } /** * Print whole query result into stream. */ protected final void printInto(@Nonnull PrintStream out) { printResult(out); out.printf("%n%n"); final ThreadSet<?, ?, ?> involvedThreads = involvedThreads(); if (showStackTraces && !involvedThreads.isEmpty()) { involvedThreads.toString(out, Mode.HUMAN); out.println(); } printSummary(out); } } }