blob: 8ec6478bd6e63b450587507f0ccceaed01fafdb9 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.org.bouncycastle.asn1;
import java.io.IOException;
import java.util.Enumeration;
import java.util.Iterator;
/**
* Note: this class is for processing DER/DL encoded sequences only.
*/
class LazyEncodedSequence
extends ASN1Sequence
{
private byte[] encoded;
LazyEncodedSequence(byte[] encoded) throws IOException
{
// NOTE: Initially, the actual 'elements' will be empty
super();
this.encoded = encoded;
}
public synchronized ASN1Encodable getObjectAt(int index)
{
force();
return super.getObjectAt(index);
}
public synchronized Enumeration getObjects()
{
if (null != encoded)
{
return new LazyConstructionEnumeration(encoded);
}
return super.getObjects();
}
public synchronized int hashCode()
{
force();
return super.hashCode();
}
public synchronized Iterator<ASN1Encodable> iterator()
{
force();
return super.iterator();
}
public synchronized int size()
{
force();
return super.size();
}
public synchronized ASN1Encodable[] toArray()
{
force();
return super.toArray();
}
ASN1Encodable[] toArrayInternal()
{
force();
return super.toArrayInternal();
}
synchronized int encodedLength()
throws IOException
{
if (null != encoded)
{
return 1 + StreamUtil.calculateBodyLength(encoded.length) + encoded.length;
}
return super.toDLObject().encodedLength();
}
synchronized void encode(ASN1OutputStream out, boolean withTag) throws IOException
{
if (null != encoded)
{
out.writeEncoded(withTag, BERTags.SEQUENCE | BERTags.CONSTRUCTED, encoded);
}
else
{
super.toDLObject().encode(out, withTag);
}
}
synchronized ASN1Primitive toDERObject()
{
force();
return super.toDERObject();
}
synchronized ASN1Primitive toDLObject()
{
force();
return super.toDLObject();
}
private void force()
{
if (null != encoded)
{
ASN1EncodableVector v = new ASN1EncodableVector();
Enumeration en = new LazyConstructionEnumeration(encoded);
while (en.hasMoreElements())
{
v.add((ASN1Primitive)en.nextElement());
}
this.elements = v.takeElements();
this.encoded = null;
}
}
}