blob: 9b483faa3295f1dc6e8e48332dd629ba4268db61 [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.ClassObj;
import com.android.tools.perflib.heap.Instance;
import java.net.URI;
/**
* Class to render an hprof value to a DocString.
*/
class Value {
/**
* Create a DocString representing a summary of the given instance.
*/
private static DocString renderInstance(Instance inst) {
DocString link = new DocString();
if (inst == null) {
link.append("(null)");
return link;
}
// Annotate classes as classes.
if (inst instanceof ClassObj) {
link.append("class ");
}
link.append(inst.toString());
// Annotate Strings with their values.
String stringValue = InstanceUtils.asString(inst);
if (stringValue != null) {
link.appendFormat("\"%s\"", stringValue);
}
// Annotate DexCache with its location.
String dexCacheLocation = InstanceUtils.getDexCacheLocation(inst);
if (dexCacheLocation != null) {
link.append(" for " + dexCacheLocation);
}
URI objTarget = DocString.formattedUri("object?id=%d", inst.getId());
DocString formatted = DocString.link(objTarget, link);
// Annotate bitmaps with a thumbnail.
Instance bitmap = InstanceUtils.getAssociatedBitmapInstance(inst);
String thumbnail = "";
if (bitmap != null) {
URI uri = DocString.formattedUri("bitmap?id=%d", bitmap.getId());
formatted.appendThumbnail(uri, "bitmap image");
}
return formatted;
}
/**
* Create a DocString summarizing the given value.
*/
public static DocString render(Object val) {
if (val instanceof Instance) {
return renderInstance((Instance)val);
} else {
return DocString.format("%s", val);
}
}
}