-
Notifications
You must be signed in to change notification settings - Fork 309
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
338 additions
and
30 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
76 changes: 76 additions & 0 deletions
76
visualvm/heapviewer/src/org/graalvm/visualvm/heapviewer/java/ThreadStateNode.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,76 @@ | ||
/* | ||
* Copyright (c) 2017, 2022, Oracle and/or its affiliates. All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. Oracle designates this | ||
* particular file as subject to the "Classpath" exception as provided | ||
* by Oracle in the LICENSE file that accompanied this code. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
package org.graalvm.visualvm.heapviewer.java; | ||
|
||
import java.util.List; | ||
import org.graalvm.visualvm.heapviewer.model.DataType; | ||
import org.graalvm.visualvm.heapviewer.model.HeapViewerNode; | ||
import org.graalvm.visualvm.heapviewer.model.NodesCache; | ||
import org.graalvm.visualvm.lib.jfluid.heap.Heap; | ||
|
||
/** | ||
* | ||
* @author Tomas Hurka | ||
*/ | ||
public class ThreadStateNode extends HeapViewerNode { | ||
private final Thread.State state; | ||
|
||
public ThreadStateNode(Thread.State state, List<HeapViewerNode> children) { | ||
this.state = state; | ||
setChildren(children.toArray(NO_NODES)); | ||
} | ||
|
||
public String getName() { | ||
if (state == null) return "Undefined"; // NOI18N | ||
return state.toString(); | ||
} | ||
|
||
public Thread.State getState() { | ||
return state; | ||
} | ||
|
||
public String toString() { | ||
return getName(); | ||
} | ||
|
||
protected void resetChildren() {} | ||
|
||
public void forgetChildren(NodesCache cache) {} | ||
|
||
protected Object getValue(DataType type, Heap heap) { | ||
if (type == DataType.NAME) return getName(); | ||
if (type == DataType.COUNT) return DataType.COUNT.getUnsupportedValue(); | ||
if (type == DataType.OWN_SIZE) return DataType.OWN_SIZE./*getNoValue()*/getUnsupportedValue(); | ||
if (type == DataType.RETAINED_SIZE) return DataType.RETAINED_SIZE./*getNoValue()*/getUnsupportedValue(); | ||
|
||
if (type == DataType.INSTANCE) return DataType.INSTANCE./*getNoValue()*/getUnsupportedValue(); | ||
if (type == DataType.CLASS) return DataType.CLASS./*getNoValue()*/getUnsupportedValue(); | ||
|
||
if (type == DataType.LOGICAL_VALUE) return DataType.LOGICAL_VALUE./*getNoValue()*/getUnsupportedValue(); | ||
|
||
return super.getValue(type, heap); | ||
} | ||
|
||
} |
95 changes: 95 additions & 0 deletions
95
visualvm/heapviewer/src/org/graalvm/visualvm/heapviewer/java/ThreadStateNodeRenderer.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,95 @@ | ||
/* | ||
* Copyright (c) 2017, 2022, Oracle and/or its affiliates. All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. Oracle designates this | ||
* particular file as subject to the "Classpath" exception as provided | ||
* by Oracle in the LICENSE file that accompanied this code. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
package org.graalvm.visualvm.heapviewer.java; | ||
|
||
import java.awt.Font; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
import javax.swing.Icon; | ||
import org.graalvm.visualvm.heapviewer.ui.HeapViewerRenderer; | ||
import org.graalvm.visualvm.lib.jfluid.global.CommonConstants; | ||
import org.graalvm.visualvm.lib.profiler.api.icons.Icons; | ||
import org.graalvm.visualvm.lib.profiler.api.icons.ProfilerIcons; | ||
import org.graalvm.visualvm.lib.ui.swing.renderer.LabelRenderer; | ||
import org.graalvm.visualvm.lib.ui.threads.ThreadStateIcon; | ||
|
||
/** | ||
* | ||
* @author Tomas Hurka | ||
*/ | ||
public class ThreadStateNodeRenderer extends LabelRenderer implements HeapViewerRenderer { | ||
|
||
private static final Icon ICON = Icons.getIcon(ProfilerIcons.THREAD); | ||
|
||
public ThreadStateNodeRenderer() { | ||
setIcon(ICON); | ||
setFont(getFont().deriveFont(Font.BOLD)); | ||
} | ||
|
||
|
||
public void setValue(Object value, int row) { | ||
Icon i; | ||
ThreadStateNode node = (ThreadStateNode)value; | ||
setText(node.getName()); | ||
setIcon(getIcon(node.getState())); | ||
} | ||
|
||
public String getShortName() { | ||
return getText(); | ||
} | ||
|
||
private static final int THREAD_ICON_SIZE = 9; | ||
private static final Map<Thread.State, Icon> STATE_ICONS_CACHE = new HashMap(); | ||
|
||
private static Icon getIcon(Thread.State state) { | ||
Icon icon = STATE_ICONS_CACHE.get(state); | ||
|
||
if (icon == null) { | ||
int pState; | ||
switch (state) { | ||
case RUNNABLE: | ||
pState = CommonConstants.THREAD_STATUS_RUNNING; | ||
break; | ||
case BLOCKED: | ||
pState = CommonConstants.THREAD_STATUS_MONITOR; | ||
break; | ||
case WAITING: | ||
pState = CommonConstants.THREAD_STATUS_WAIT; | ||
break; | ||
case TIMED_WAITING: | ||
pState = CommonConstants.THREAD_STATUS_SLEEPING; | ||
break; | ||
default: | ||
pState = CommonConstants.THREAD_STATUS_UNKNOWN; | ||
break; | ||
} | ||
icon = new ThreadStateIcon(pState, THREAD_ICON_SIZE, THREAD_ICON_SIZE); | ||
STATE_ICONS_CACHE.put(state, icon); | ||
} | ||
return icon; | ||
} | ||
|
||
|
||
} |
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
Oops, something went wrong.