blob: e3c47fb6ec5a8c1a3a4fac5b4e0da5f9a6992e3f [file] [log] [blame]
/*
* Copyright (C) 2006 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.traceview;
public class ProfileData {
protected MethodData mElement;
/** mContext is either the parent or child of mElement */
protected MethodData mContext;
protected boolean mElementIsParent;
protected long mElapsedInclusiveCpuTime;
protected long mElapsedInclusiveRealTime;
protected int mNumCalls;
public ProfileData() {
}
public ProfileData(MethodData context, MethodData element,
boolean elementIsParent) {
mContext = context;
mElement = element;
mElementIsParent = elementIsParent;
}
public String getProfileName() {
return mElement.getProfileName();
}
public MethodData getMethodData() {
return mElement;
}
public void addElapsedInclusive(long cpuTime, long realTime) {
mElapsedInclusiveCpuTime += cpuTime;
mElapsedInclusiveRealTime += realTime;
mNumCalls += 1;
}
public void setElapsedInclusive(long cpuTime, long realTime) {
mElapsedInclusiveCpuTime = cpuTime;
mElapsedInclusiveRealTime = realTime;
}
public long getElapsedInclusiveCpuTime() {
return mElapsedInclusiveCpuTime;
}
public long getElapsedInclusiveRealTime() {
return mElapsedInclusiveRealTime;
}
public void setNumCalls(int numCalls) {
mNumCalls = numCalls;
}
public String getNumCalls() {
int totalCalls;
if (mElementIsParent)
totalCalls = mContext.getTotalCalls();
else
totalCalls = mElement.getTotalCalls();
return String.format("%d/%d", mNumCalls, totalCalls);
}
public boolean isParent() {
return mElementIsParent;
}
public MethodData getContext() {
return mContext;
}
}