blob: 668b17a5f2f9214f5eeb5147d208e2fb474ac17d [file] [log] [blame]
/*
* Copyright (C) 2017 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.location.cts.asn1.supl2.ulp_components;
/*
*/
//
//
import android.location.cts.asn1.base.Asn1Null;
import android.location.cts.asn1.base.Asn1Object;
import android.location.cts.asn1.base.Asn1Sequence;
import android.location.cts.asn1.base.Asn1Tag;
import android.location.cts.asn1.base.Asn1UTCTime;
import android.location.cts.asn1.base.BitStream;
import android.location.cts.asn1.base.BitStreamReader;
import android.location.cts.asn1.base.SequenceComponent;
import com.google.common.collect.ImmutableList;
import java.util.Collection;
import javax.annotation.Nullable;
/**
*/
public class Position extends Asn1Sequence {
//
private static final Asn1Tag TAG_Position
= Asn1Tag.fromClassAndNumber(-1, -1);
public Position() {
super();
}
@Override
@Nullable
protected Asn1Tag getTag() {
return TAG_Position;
}
@Override
protected boolean isTagImplicit() {
return true;
}
public static Collection<Asn1Tag> getPossibleFirstTags() {
if (TAG_Position != null) {
return ImmutableList.of(TAG_Position);
} else {
return Asn1Sequence.getPossibleFirstTags();
}
}
/**
* Creates a new Position from encoded stream.
*/
public static Position fromPerUnaligned(byte[] encodedBytes) {
Position result = new Position();
result.decodePerUnaligned(new BitStreamReader(encodedBytes));
return result;
}
/**
* Creates a new Position from encoded stream.
*/
public static Position fromPerAligned(byte[] encodedBytes) {
Position result = new Position();
result.decodePerAligned(new BitStreamReader(encodedBytes));
return result;
}
@Override protected boolean isExtensible() {
return true;
}
@Override public boolean containsExtensionValues() {
for (SequenceComponent extensionComponent : getExtensionComponents()) {
if (extensionComponent.isExplicitlySet()) return true;
}
return false;
}
private Position.timestampType timestamp_;
public Position.timestampType getTimestamp() {
return timestamp_;
}
/**
* @throws ClassCastException if value is not a Position.timestampType
*/
public void setTimestamp(Asn1Object value) {
this.timestamp_ = (Position.timestampType) value;
}
public Position.timestampType setTimestampToNewInstance() {
timestamp_ = new Position.timestampType();
return timestamp_;
}
private PositionEstimate positionEstimate_;
public PositionEstimate getPositionEstimate() {
return positionEstimate_;
}
/**
* @throws ClassCastException if value is not a PositionEstimate
*/
public void setPositionEstimate(Asn1Object value) {
this.positionEstimate_ = (PositionEstimate) value;
}
public PositionEstimate setPositionEstimateToNewInstance() {
positionEstimate_ = new PositionEstimate();
return positionEstimate_;
}
private Velocity velocity_;
public Velocity getVelocity() {
return velocity_;
}
/**
* @throws ClassCastException if value is not a Velocity
*/
public void setVelocity(Asn1Object value) {
this.velocity_ = (Velocity) value;
}
public Velocity setVelocityToNewInstance() {
velocity_ = new Velocity();
return velocity_;
}
@Override public Iterable<? extends SequenceComponent> getComponents() {
ImmutableList.Builder<SequenceComponent> builder = ImmutableList.builder();
builder.add(new SequenceComponent() {
Asn1Tag tag = Asn1Tag.fromClassAndNumber(2, 0);
@Override public boolean isExplicitlySet() {
return getTimestamp() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return false;
}
@Override public Asn1Object getComponentValue() {
return getTimestamp();
}
@Override public void setToNewInstance() {
setTimestampToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? Position.timestampType.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "timestamp : "
+ getTimestamp().toIndentedString(indent);
}
});
builder.add(new SequenceComponent() {
Asn1Tag tag = Asn1Tag.fromClassAndNumber(2, 1);
@Override public boolean isExplicitlySet() {
return getPositionEstimate() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return false;
}
@Override public Asn1Object getComponentValue() {
return getPositionEstimate();
}
@Override public void setToNewInstance() {
setPositionEstimateToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? PositionEstimate.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "positionEstimate : "
+ getPositionEstimate().toIndentedString(indent);
}
});
builder.add(new SequenceComponent() {
Asn1Tag tag = Asn1Tag.fromClassAndNumber(2, 2);
@Override public boolean isExplicitlySet() {
return getVelocity() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return true;
}
@Override public Asn1Object getComponentValue() {
return getVelocity();
}
@Override public void setToNewInstance() {
setVelocityToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? Velocity.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "velocity : "
+ getVelocity().toIndentedString(indent);
}
});
return builder.build();
}
@Override public Iterable<? extends SequenceComponent>
getExtensionComponents() {
ImmutableList.Builder<SequenceComponent> builder = ImmutableList.builder();
return builder.build();
}
/*
*/
//
/**
*/
public static class timestampType extends Asn1UTCTime {
//
private static final Asn1Tag TAG_timestampType
= Asn1Tag.fromClassAndNumber(-1, -1);
public timestampType() {
super();
}
@Override
@Nullable
protected Asn1Tag getTag() {
return TAG_timestampType;
}
@Override
protected boolean isTagImplicit() {
return true;
}
public static Collection<Asn1Tag> getPossibleFirstTags() {
if (TAG_timestampType != null) {
return ImmutableList.of(TAG_timestampType);
} else {
return Asn1UTCTime.getPossibleFirstTags();
}
}
/**
* Creates a new timestampType from encoded stream.
*/
public static timestampType fromPerUnaligned(byte[] encodedBytes) {
timestampType result = new timestampType();
result.decodePerUnaligned(new BitStreamReader(encodedBytes));
return result;
}
/**
* Creates a new timestampType from encoded stream.
*/
public static timestampType fromPerAligned(byte[] encodedBytes) {
timestampType result = new timestampType();
result.decodePerAligned(new BitStreamReader(encodedBytes));
return result;
}
@Override public Iterable<BitStream> encodePerUnaligned() {
return super.encodePerUnaligned();
}
@Override public Iterable<BitStream> encodePerAligned() {
return super.encodePerAligned();
}
@Override public void decodePerUnaligned(BitStreamReader reader) {
super.decodePerUnaligned(reader);
}
@Override public void decodePerAligned(BitStreamReader reader) {
super.decodePerAligned(reader);
}
@Override public String toString() {
return toIndentedString("");
}
public String toIndentedString(String indent) {
return "timestampType = [ " + toHumanReadableString() + " ];\n";
}
}
@Override public Iterable<BitStream> encodePerUnaligned() {
return super.encodePerUnaligned();
}
@Override public Iterable<BitStream> encodePerAligned() {
return super.encodePerAligned();
}
@Override public void decodePerUnaligned(BitStreamReader reader) {
super.decodePerUnaligned(reader);
}
@Override public void decodePerAligned(BitStreamReader reader) {
super.decodePerAligned(reader);
}
@Override public String toString() {
return toIndentedString("");
}
public String toIndentedString(String indent) {
StringBuilder builder = new StringBuilder();
builder.append("Position = {\n");
final String internalIndent = indent + " ";
for (SequenceComponent component : getComponents()) {
if (component.isExplicitlySet()) {
builder.append(internalIndent)
.append(component.toIndentedString(internalIndent));
}
}
if (isExtensible()) {
builder.append(internalIndent).append("...\n");
for (SequenceComponent component : getExtensionComponents()) {
if (component.isExplicitlySet()) {
builder.append(internalIndent)
.append(component.toIndentedString(internalIndent));
}
}
}
builder.append(indent).append("};\n");
return builder.toString();
}
}