public abstract class AbstractContainer extends Object implements Asn1Container
Modifier and Type | Method and Description |
---|---|
void |
clean()
Clean the container for the next usage.
|
TLV |
getCurrentTLV()
Gets the currentTLV
|
int |
getDecodedBytes() |
Grammar<? extends Asn1Container> |
getGrammar()
Gets the grammar
|
int |
getMaxPDUSize() |
int |
getNewTlvId()
Gets a new TLV id
|
TLV |
getParentTLV() |
TLVStateEnum |
getState()
Gets the current grammar state
|
ByteBuffer |
getStream()
Gets the current stream containing the bytes to decode
|
int |
getTlvId()
Gets the current TLV id
|
Enum<?> |
getTransition()
Gets the transition
|
void |
incrementDecodedBytes(int nb)
Increment the decodedBytes by the latest received buffer's size.
|
boolean |
isGathering() |
boolean |
isGrammarEndAllowed()
Checks that we can have a end state after this transition
|
void |
rewind()
Move backward in the stream to the first byte for a given TLV.
|
void |
setCurrentTLV(TLV currentTLV)
Sets the current TLV
|
void |
setDecodedBytes(int decodedBytes) |
void |
setGathering(boolean gathering)
Set the isGathering flag
|
void |
setGrammar(Grammar<? extends Asn1Container> grammar)
Sets the grammar
|
void |
setGrammarEndAllowed(boolean grammarEndAllowed)
Sets the flag to allow a end transition
|
void |
setMaxPDUSize(int maxPDUSize)
Set the maximum PDU size.
|
void |
setParentTLV(TLV parentTLV)
Sets the parent TLV
|
void |
setState(TLVStateEnum state)
Sets the new current state
|
void |
setStream(ByteBuffer stream)
Stores the Stream being decoded
|
void |
setTransition(Enum<?> transition)
Updates the transition from a state to another
|
void |
updateParent()
Update the parent's length
|
public Grammar<? extends Asn1Container> getGrammar()
getGrammar
in interface Asn1Container
public void setGrammar(Grammar<? extends Asn1Container> grammar)
setGrammar
in interface Asn1Container
grammar
- The grammar to setpublic TLVStateEnum getState()
getState
in interface Asn1Container
public void setState(TLVStateEnum state)
setState
in interface Asn1Container
state
- The new statepublic boolean isGrammarEndAllowed()
isGrammarEndAllowed
in interface Asn1Container
public void setGrammarEndAllowed(boolean grammarEndAllowed)
setGrammarEndAllowed
in interface Asn1Container
grammarEndAllowed
- true or false, depending on the next transition
being an end or not.public Enum<?> getTransition()
getTransition
in interface Asn1Container
public void setTransition(Enum<?> transition)
setTransition
in interface Asn1Container
transition
- The transition to setpublic void setCurrentTLV(TLV currentTLV)
setCurrentTLV
in interface Asn1Container
currentTLV
- The current TLVpublic TLV getCurrentTLV()
getCurrentTLV
in interface Asn1Container
public TLV getParentTLV()
getParentTLV
in interface Asn1Container
public void setParentTLV(TLV parentTLV)
setParentTLV
in interface Asn1Container
parentTLV
- The new parent TLVpublic void clean()
public int getNewTlvId()
getNewTlvId
in interface Asn1Container
public int getTlvId()
getTlvId
in interface Asn1Container
public int getDecodedBytes()
getDecodedBytes
in interface Asn1Container
public void setDecodedBytes(int decodedBytes)
setDecodedBytes
in interface Asn1Container
decodedBytes
- The number of decoded bytes for this message.public void incrementDecodedBytes(int nb)
incrementDecodedBytes
in interface Asn1Container
nb
- The buffer size.public int getMaxPDUSize()
getMaxPDUSize
in interface Asn1Container
public void setMaxPDUSize(int maxPDUSize)
setMaxPDUSize
in interface Asn1Container
maxPDUSize
- The maximum PDU size (if negative or null, will be
replaced by the max integer value)public ByteBuffer getStream()
getStream
in interface Asn1Container
public void setStream(ByteBuffer stream)
setStream
in interface Asn1Container
stream
- The stream being decodedpublic void rewind()
rewind
in interface Asn1Container
public void updateParent()
updateParent
in interface Asn1Container
public boolean isGathering()
isGathering
in interface Asn1Container
public void setGathering(boolean gathering)
setGathering
in interface Asn1Container
gathering
- true to ask the Asn1Decoder to gather the data
into the container. If not set, the default value is 'false'Copyright © 2003–2023 The Apache Software Foundation. All rights reserved.