blob: e65c42b49714c369ebf8a78be12dfa7b7eba8195 [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.rrlp_components;
/*
*/
//
//
import android.location.cts.asn1.base.Asn1Integer;
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.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 GPS_MsrSetElement extends Asn1Sequence {
//
private static final Asn1Tag TAG_GPS_MsrSetElement
= Asn1Tag.fromClassAndNumber(-1, -1);
public GPS_MsrSetElement() {
super();
}
@Override
@Nullable
protected Asn1Tag getTag() {
return TAG_GPS_MsrSetElement;
}
@Override
protected boolean isTagImplicit() {
return true;
}
public static Collection<Asn1Tag> getPossibleFirstTags() {
if (TAG_GPS_MsrSetElement != null) {
return ImmutableList.of(TAG_GPS_MsrSetElement);
} else {
return Asn1Sequence.getPossibleFirstTags();
}
}
/**
* Creates a new GPS_MsrSetElement from encoded stream.
*/
public static GPS_MsrSetElement fromPerUnaligned(byte[] encodedBytes) {
GPS_MsrSetElement result = new GPS_MsrSetElement();
result.decodePerUnaligned(new BitStreamReader(encodedBytes));
return result;
}
/**
* Creates a new GPS_MsrSetElement from encoded stream.
*/
public static GPS_MsrSetElement fromPerAligned(byte[] encodedBytes) {
GPS_MsrSetElement result = new GPS_MsrSetElement();
result.decodePerAligned(new BitStreamReader(encodedBytes));
return result;
}
@Override protected boolean isExtensible() {
return false;
}
@Override public boolean containsExtensionValues() {
for (SequenceComponent extensionComponent : getExtensionComponents()) {
if (extensionComponent.isExplicitlySet()) return true;
}
return false;
}
private GPS_MsrSetElement.refFrameType refFrame_;
public GPS_MsrSetElement.refFrameType getRefFrame() {
return refFrame_;
}
/**
* @throws ClassCastException if value is not a GPS_MsrSetElement.refFrameType
*/
public void setRefFrame(Asn1Object value) {
this.refFrame_ = (GPS_MsrSetElement.refFrameType) value;
}
public GPS_MsrSetElement.refFrameType setRefFrameToNewInstance() {
refFrame_ = new GPS_MsrSetElement.refFrameType();
return refFrame_;
}
private GPSTOW24b gpsTOW_;
public GPSTOW24b getGpsTOW() {
return gpsTOW_;
}
/**
* @throws ClassCastException if value is not a GPSTOW24b
*/
public void setGpsTOW(Asn1Object value) {
this.gpsTOW_ = (GPSTOW24b) value;
}
public GPSTOW24b setGpsTOWToNewInstance() {
gpsTOW_ = new GPSTOW24b();
return gpsTOW_;
}
private SeqOfGPS_MsrElement gps_msrList_;
public SeqOfGPS_MsrElement getGps_msrList() {
return gps_msrList_;
}
/**
* @throws ClassCastException if value is not a SeqOfGPS_MsrElement
*/
public void setGps_msrList(Asn1Object value) {
this.gps_msrList_ = (SeqOfGPS_MsrElement) value;
}
public SeqOfGPS_MsrElement setGps_msrListToNewInstance() {
gps_msrList_ = new SeqOfGPS_MsrElement();
return gps_msrList_;
}
@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 getRefFrame() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return true;
}
@Override public Asn1Object getComponentValue() {
return getRefFrame();
}
@Override public void setToNewInstance() {
setRefFrameToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? GPS_MsrSetElement.refFrameType.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "refFrame : "
+ getRefFrame().toIndentedString(indent);
}
});
builder.add(new SequenceComponent() {
Asn1Tag tag = Asn1Tag.fromClassAndNumber(2, 1);
@Override public boolean isExplicitlySet() {
return getGpsTOW() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return false;
}
@Override public Asn1Object getComponentValue() {
return getGpsTOW();
}
@Override public void setToNewInstance() {
setGpsTOWToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? GPSTOW24b.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "gpsTOW : "
+ getGpsTOW().toIndentedString(indent);
}
});
builder.add(new SequenceComponent() {
Asn1Tag tag = Asn1Tag.fromClassAndNumber(2, 2);
@Override public boolean isExplicitlySet() {
return getGps_msrList() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return false;
}
@Override public Asn1Object getComponentValue() {
return getGps_msrList();
}
@Override public void setToNewInstance() {
setGps_msrListToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? SeqOfGPS_MsrElement.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "gps_msrList : "
+ getGps_msrList().toIndentedString(indent);
}
});
return builder.build();
}
@Override public Iterable<? extends SequenceComponent>
getExtensionComponents() {
ImmutableList.Builder<SequenceComponent> builder = ImmutableList.builder();
return builder.build();
}
/*
*/
//
/**
*/
public static class refFrameType extends Asn1Integer {
//
private static final Asn1Tag TAG_refFrameType
= Asn1Tag.fromClassAndNumber(-1, -1);
public refFrameType() {
super();
setValueRange("0", "65535");
}
@Override
@Nullable
protected Asn1Tag getTag() {
return TAG_refFrameType;
}
@Override
protected boolean isTagImplicit() {
return true;
}
public static Collection<Asn1Tag> getPossibleFirstTags() {
if (TAG_refFrameType != null) {
return ImmutableList.of(TAG_refFrameType);
} else {
return Asn1Integer.getPossibleFirstTags();
}
}
/**
* Creates a new refFrameType from encoded stream.
*/
public static refFrameType fromPerUnaligned(byte[] encodedBytes) {
refFrameType result = new refFrameType();
result.decodePerUnaligned(new BitStreamReader(encodedBytes));
return result;
}
/**
* Creates a new refFrameType from encoded stream.
*/
public static refFrameType fromPerAligned(byte[] encodedBytes) {
refFrameType result = new refFrameType();
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 "refFrameType = " + getInteger() + ";\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("GPS_MsrSetElement = {\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();
}
}