blob: bc457237c0031a771f6247ecc55baba2fcfab5e0 [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.supl_set_init;
/*
*/
//
//
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 android.location.cts.asn1.supl2.ulp_components.QoP;
import android.location.cts.asn1.supl2.ulp_components.SETId;
import android.location.cts.asn1.supl2.ver2_ulp_components.ApplicationID;
import com.google.common.collect.ImmutableList;
import java.util.Collection;
import javax.annotation.Nullable;
/**
*/
public class Ver2_SUPLSETINIT extends Asn1Sequence {
//
private static final Asn1Tag TAG_Ver2_SUPLSETINIT
= Asn1Tag.fromClassAndNumber(-1, -1);
public Ver2_SUPLSETINIT() {
super();
}
@Override
@Nullable
protected Asn1Tag getTag() {
return TAG_Ver2_SUPLSETINIT;
}
@Override
protected boolean isTagImplicit() {
return true;
}
public static Collection<Asn1Tag> getPossibleFirstTags() {
if (TAG_Ver2_SUPLSETINIT != null) {
return ImmutableList.of(TAG_Ver2_SUPLSETINIT);
} else {
return Asn1Sequence.getPossibleFirstTags();
}
}
/**
* Creates a new Ver2_SUPLSETINIT from encoded stream.
*/
public static Ver2_SUPLSETINIT fromPerUnaligned(byte[] encodedBytes) {
Ver2_SUPLSETINIT result = new Ver2_SUPLSETINIT();
result.decodePerUnaligned(new BitStreamReader(encodedBytes));
return result;
}
/**
* Creates a new Ver2_SUPLSETINIT from encoded stream.
*/
public static Ver2_SUPLSETINIT fromPerAligned(byte[] encodedBytes) {
Ver2_SUPLSETINIT result = new Ver2_SUPLSETINIT();
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 SETId targetSETID_;
public SETId getTargetSETID() {
return targetSETID_;
}
/**
* @throws ClassCastException if value is not a SETId
*/
public void setTargetSETID(Asn1Object value) {
this.targetSETID_ = (SETId) value;
}
public SETId setTargetSETIDToNewInstance() {
targetSETID_ = new SETId();
return targetSETID_;
}
private QoP qoP_;
public QoP getQoP() {
return qoP_;
}
/**
* @throws ClassCastException if value is not a QoP
*/
public void setQoP(Asn1Object value) {
this.qoP_ = (QoP) value;
}
public QoP setQoPToNewInstance() {
qoP_ = new QoP();
return qoP_;
}
private ApplicationID applicationID_;
public ApplicationID getApplicationID() {
return applicationID_;
}
/**
* @throws ClassCastException if value is not a ApplicationID
*/
public void setApplicationID(Asn1Object value) {
this.applicationID_ = (ApplicationID) value;
}
public ApplicationID setApplicationIDToNewInstance() {
applicationID_ = new ApplicationID();
return applicationID_;
}
@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 getTargetSETID() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return false;
}
@Override public Asn1Object getComponentValue() {
return getTargetSETID();
}
@Override public void setToNewInstance() {
setTargetSETIDToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? SETId.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "targetSETID : "
+ getTargetSETID().toIndentedString(indent);
}
});
builder.add(new SequenceComponent() {
Asn1Tag tag = Asn1Tag.fromClassAndNumber(2, 1);
@Override public boolean isExplicitlySet() {
return getQoP() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return true;
}
@Override public Asn1Object getComponentValue() {
return getQoP();
}
@Override public void setToNewInstance() {
setQoPToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? QoP.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "qoP : "
+ getQoP().toIndentedString(indent);
}
});
builder.add(new SequenceComponent() {
Asn1Tag tag = Asn1Tag.fromClassAndNumber(2, 2);
@Override public boolean isExplicitlySet() {
return getApplicationID() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return true;
}
@Override public Asn1Object getComponentValue() {
return getApplicationID();
}
@Override public void setToNewInstance() {
setApplicationIDToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? ApplicationID.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "applicationID : "
+ getApplicationID().toIndentedString(indent);
}
});
return builder.build();
}
@Override public Iterable<? extends SequenceComponent>
getExtensionComponents() {
ImmutableList.Builder<SequenceComponent> builder = ImmutableList.builder();
return builder.build();
}
@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("Ver2_SUPLSETINIT = {\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();
}
}