blob: 8fbc17667fa001409ed31c047480aeb0386a0fdc [file] [log] [blame]
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed 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.android.ahat;
import com.android.tools.perflib.heap.Heap;
import java.io.IOException;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
class SiteHandler extends AhatHandler {
public SiteHandler(AhatSnapshot snapshot) {
super(snapshot);
}
@Override
public void handle(Doc doc, Query query) throws IOException {
int stackId = query.getInt("stack", 0);
int depth = query.getInt("depth", -1);
Site site = mSnapshot.getSite(stackId, depth);
doc.title("Site %s", site.getName());
doc.section("Allocation Site");
SitePrinter.printSite(doc, mSnapshot, site);
doc.section("Sites Called from Here");
List<Site> children = site.getChildren();
if (children.isEmpty()) {
doc.println(DocString.text("(none)"));
} else {
Collections.sort(children, new Sort.SiteBySize("app"));
HeapTable.TableConfig<Site> table = new HeapTable.TableConfig<Site>() {
public String getHeapsDescription() {
return "Reachable Bytes Allocated on Heap";
}
public long getSize(Site element, Heap heap) {
return element.getSize(heap.getName());
}
public List<HeapTable.ValueConfig<Site>> getValueConfigs() {
HeapTable.ValueConfig<Site> value = new HeapTable.ValueConfig<Site>() {
public String getDescription() {
return "Child Site";
}
public DocString render(Site element) {
return DocString.link(
DocString.uri("site?stack=%d&depth=%d",
element.getStackId(), element.getStackDepth()),
DocString.text(element.getName()));
}
};
return Collections.singletonList(value);
}
};
HeapTable.render(doc, table, mSnapshot, children);
}
doc.section("Objects Allocated");
doc.table(
new Column("Reachable Bytes Allocated", Column.Align.RIGHT),
new Column("Instances", Column.Align.RIGHT),
new Column("Heap"),
new Column("Class"));
List<Site.ObjectsInfo> infos = site.getObjectsInfos();
Comparator<Site.ObjectsInfo> compare = new Sort.WithPriority<Site.ObjectsInfo>(
new Sort.ObjectsInfoByHeapName(),
new Sort.ObjectsInfoBySize(),
new Sort.ObjectsInfoByClassName());
Collections.sort(infos, compare);
for (Site.ObjectsInfo info : infos) {
String className = AhatSnapshot.getClassName(info.classObj);
doc.row(
DocString.text("%,14d", info.numBytes),
DocString.link(
DocString.uri("objects?stack=%d&depth=%d&heap=%s&class=%s",
site.getStackId(), site.getStackDepth(), info.heap.getName(), className),
DocString.text("%,14d", info.numInstances)),
DocString.text(info.heap.getName()),
Value.render(info.classObj));
}
doc.end();
}
}