1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
/*
* Copyright (C) 2014 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 android.view;
import android.annotation.UnsupportedAppUsage;
import android.os.Parcel;
import android.os.Parcelable;
/**
* This class contains window content frame statistics. For example, a window content
* is rendred in frames when a view is scrolled. The frame statistics are a snapshot
* for the time interval from {@link #getStartTimeNano()} to {@link #getEndTimeNano()}.
* <p>
* The key idea is that in order to provide a smooth user experience an application
* has to draw a frame at a specific time interval obtained by calling {@link
* #getRefreshPeriodNano()}. If the application does not render a frame every refresh
* period the user will see irregular UI transitions.
* </p>
* <p>
* An application posts a frame for presentation by synchronously rendering its contents
* in a buffer which is then posted or posting a buffer to which the application is
* asychronously rendering the content via GL. After the frame is posted and rendered
* (potentially asynchronosly) it is presented to the user. The time a frame was posted
* can be obtained via {@link #getFramePostedTimeNano(int)}, the time a frame content
* was rendered and ready for dsiplay (GL case) via {@link #getFrameReadyTimeNano(int)},
* and the time a frame was presented on the screen via {@link #getFramePresentedTimeNano(int)}.
* </p>
*/
public final class WindowContentFrameStats extends FrameStats implements Parcelable {
private long[] mFramesPostedTimeNano;
private long[] mFramesReadyTimeNano;
/**
* @hide
*/
public WindowContentFrameStats() {
/* do nothing */
}
/**
* Initializes this isntance.
*
* @param refreshPeriodNano The display refresh period.
* @param framesPostedTimeNano The times in milliseconds for when the frame contents were posted.
* @param framesPresentedTimeNano The times in milliseconds for when the frame contents were presented.
* @param framesReadyTimeNano The times in milliseconds for when the frame contents were ready to be presented.
*
* @hide
*/
@UnsupportedAppUsage
public void init(long refreshPeriodNano, long[] framesPostedTimeNano,
long[] framesPresentedTimeNano, long[] framesReadyTimeNano) {
mRefreshPeriodNano = refreshPeriodNano;
mFramesPostedTimeNano = framesPostedTimeNano;
mFramesPresentedTimeNano = framesPresentedTimeNano;
mFramesReadyTimeNano = framesReadyTimeNano;
}
private WindowContentFrameStats(Parcel parcel) {
mRefreshPeriodNano = parcel.readLong();
mFramesPostedTimeNano = parcel.createLongArray();
mFramesPresentedTimeNano = parcel.createLongArray();
mFramesReadyTimeNano = parcel.createLongArray();
}
/**
* Get the time a frame at a given index was posted by the producer (e.g. the application).
* It is either explicitly set or defaulted to the time when the render buffer was posted.
* <p>
* <strong>Note:</strong> A frame can be posted and still it contents being rendered
* asynchronously in GL. To get the time the frame content was completely rendered and
* ready to display call {@link #getFrameReadyTimeNano(int)}.
* </p>
*
* @param index The frame index.
* @return The posted time in nanoseconds.
*/
public long getFramePostedTimeNano(int index) {
if (mFramesPostedTimeNano == null) {
throw new IndexOutOfBoundsException();
}
return mFramesPostedTimeNano[index];
}
/**
* Get the time a frame at a given index was ready for presentation.
* <p>
* <strong>Note:</strong> A frame can be posted and still it contents being rendered
* asynchronously in GL. In such a case this is the time when the frame contents were
* completely rendered.
* </p>
*
* @param index The frame index.
* @return The ready time in nanoseconds or {@link #UNDEFINED_TIME_NANO}
* if the frame is not ready yet.
*/
public long getFrameReadyTimeNano(int index) {
if (mFramesReadyTimeNano == null) {
throw new IndexOutOfBoundsException();
}
return mFramesReadyTimeNano[index];
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel parcel, int flags) {
parcel.writeLong(mRefreshPeriodNano);
parcel.writeLongArray(mFramesPostedTimeNano);
parcel.writeLongArray(mFramesPresentedTimeNano);
parcel.writeLongArray(mFramesReadyTimeNano);
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append("WindowContentFrameStats[");
builder.append("frameCount:" + getFrameCount());
builder.append(", fromTimeNano:" + getStartTimeNano());
builder.append(", toTimeNano:" + getEndTimeNano());
builder.append(']');
return builder.toString();
}
public static final @android.annotation.NonNull Parcelable.Creator<WindowContentFrameStats> CREATOR =
new Creator<WindowContentFrameStats>() {
@Override
public WindowContentFrameStats createFromParcel(Parcel parcel) {
return new WindowContentFrameStats(parcel);
}
@Override
public WindowContentFrameStats[] newArray(int size) {
return new WindowContentFrameStats[size];
}
};
}
|