blob: eb547a274bced9103135546e41799d67da412772 [file] [log] [blame]
/*
* Copyright (C) 2013 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.sched.util.log.stats;
import com.android.sched.util.codec.ByteFormatter;
import com.android.sched.util.codec.Formatter;
import com.android.sched.util.codec.LongCodec;
import javax.annotation.Nonnegative;
import javax.annotation.Nonnull;
/**
* Represents a statistic on object allocation when statistic is not enabled.
*/
public class ObjectAlloc extends Statistic {
protected ObjectAlloc(@Nonnull StatisticId<? extends Statistic> id) {
super(id);
}
/**
* Record an object allocation.
*
* @param size size in bytes of object in memory.
*/
public void recordObjectAllocation(@Nonnegative long size) {
}
@Override
public void merge(@Nonnull Statistic statistic) {
throw new AssertionError();
}
@Override
@Nonnull
public String getDescription() {
return "Object allocation";
}
@Nonnull
private static final String[] HEADER = new String[] {
"Object count",
"Object size",
"Total size"
};
@Override
@Nonnegative
public int getColumnCount() {
return HEADER.length;
}
@Override
@Nonnull
public String[] getHeader() {
return HEADER.clone();
}
@Override
@Nonnull
public Formatter<?>[] getFormatters() {
return new Formatter<?>[] {
new LongCodec(),
new ByteFormatter(),
new ByteFormatter()
};
}
}