blob: df8a0dadd3f3faed0c80044d575c9aa81c98dff0 [file] [log] [blame]
/*
* Copyright 2019 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 androidx.camera.testing.fakes;
import androidx.annotation.NonNull;
import androidx.camera.core.ImageInfo;
import androidx.camera.core.impl.MutableTagBundle;
import androidx.camera.core.impl.TagBundle;
import androidx.camera.core.impl.utils.ExifData;
/**
* A fake implementation of {@link ImageInfo} where the values are settable.
*/
public final class FakeImageInfo implements ImageInfo {
private MutableTagBundle mTagBundle = MutableTagBundle.create();
private long mTimestamp;
private int mRotationDegrees;
/** set tag to a TagBundle */
public void setTag(@NonNull String key, @NonNull Integer tag) {
mTagBundle.putTag(key, tag);
}
/** set tag to a TagBundle */
public void setTag(@NonNull TagBundle tagBundle) {
mTagBundle.addTagBundle(tagBundle);
}
public void setTimestamp(long timestamp) {
mTimestamp = timestamp;
}
public void setRotationDegrees(int rotationDegrees) {
mRotationDegrees = rotationDegrees;
}
@NonNull
@Override
public TagBundle getTagBundle() {
return mTagBundle;
}
@Override
public long getTimestamp() {
return mTimestamp;
}
@Override
public int getRotationDegrees() {
return mRotationDegrees;
}
@Override
public void populateExifData(@NonNull ExifData.Builder exifBuilder) {
exifBuilder.setOrientationDegrees(mRotationDegrees);
}
}