Class CFSA2
java.lang.Object
morfologik.fsa.FSA
morfologik.fsa.CFSA2
- All Implemented Interfaces:
Iterable<ByteBuffer>
CFSA (Compact Finite State Automaton) binary format implementation, version 2:
BIT_TARGET_NEXTapplicable on all arcs, not necessarily the last one.- v-coded goto field
- v-coded perfect hashing numbers, if any
- 31 most frequent labels integrated with flags byte
The encoding of automaton body is as follows.
---- CFSA header
Byte Description
+-+-+-+-+-+-+-+-+\
0 | | | | | | | | | +------ '\'
+-+-+-+-+-+-+-+-+/
+-+-+-+-+-+-+-+-+\
1 | | | | | | | | | +------ 'f'
+-+-+-+-+-+-+-+-+/
+-+-+-+-+-+-+-+-+\
2 | | | | | | | | | +------ 's'
+-+-+-+-+-+-+-+-+/
+-+-+-+-+-+-+-+-+\
3 | | | | | | | | | +------ 'a'
+-+-+-+-+-+-+-+-+/
+-+-+-+-+-+-+-+-+\
4 | | | | | | | | | +------ version (fixed 0xc6)
+-+-+-+-+-+-+-+-+/
+-+-+-+-+-+-+-+-+\
5 | | | | | | | | | +----\
+-+-+-+-+-+-+-+-+/ \ flags [MSB first]
+-+-+-+-+-+-+-+-+\ /
6 | | | | | | | | | +----/
+-+-+-+-+-+-+-+-+/
+-+-+-+-+-+-+-+-+\
7 | | | | | | | | | +------ label lookup table size
+-+-+-+-+-+-+-+-+/
+-+-+-+-+-+-+-+-+\
8-32 | | | | | | | | | +------ label value lookup table
: : : : : : : : : |
+-+-+-+-+-+-+-+-+/
---- Start of a node; only if automaton was compiled with NUMBERS option.
Byte
+-+-+-+-+-+-+-+-+\
0 | | | | | | | | | \
+-+-+-+-+-+-+-+-+ +
1 | | | | | | | | | | number of strings recognized
+-+-+-+-+-+-+-+-+ +----- by the automaton starting
: : : : : : : : : | from this node. v-coding
+-+-+-+-+-+-+-+-+ +
| | | | | | | | | /
+-+-+-+-+-+-+-+-+/
---- A vector of this node's arcs. An arc's layout depends on the combination of flags.
1) NEXT bit set, mapped arc label.
+----------------------- node pointed to is next
| +--------------------- the last arc of the node
| | +------------------- this arc leads to a final state (acceptor)
| | | _______+--------- arc's label; indexed if M > 0, otherwise explicit label follows
| | | / | | | |
+-+-+-+-+-+-+-+-+\
0 |N|L|F|M|M|M|M|M| +------ flags + (M) index of the mapped label.
+-+-+-+-+-+-+-+-+/
+-+-+-+-+-+-+-+-+\
1 | | | | | | | | | +------ optional label if M == 0
+-+-+-+-+-+-+-+-+/
: : : : : : : : :
+-+-+-+-+-+-+-+-+\
|A|A|A|A|A|A|A|A| +------ v-coded goto address
+-+-+-+-+-+-+-+-+/
-
Field Summary
FieldsModifier and TypeFieldDescriptionbyte[]An array of bytes with the internal representation of the automaton.static final intThe arc corresponds to the last character of a sequence available when building the automaton (acceptor transition).static final intThe arc is the last one from the current node's arcs list.static final intThe target node of this arc follows the last arc of the current state (no goto field).private final intEpsilon node's offset.Flags for this automaton version.private final booleanIftruestates are prepended with numbers.(package private) static final intThe count of bits assigned to storing an indexed label.(package private) static final intMasks only the M bits of a flag byte.static final intMaximum size of the labels index.final byte[]Label mapping for M-indexed labels.static final byteAutomaton header version value. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintgetArc(int node, byte label) bytegetArcLabel(int arc) (package private) final intgetDestinationNodeOffset(int arc) Returns the address of the node pointed to by this arc.intgetEndNode(int arc) final intgetFirstArc(int node) getFlags()final intgetNextArc(int arc) intgetRightLanguageCount(int node) intbooleanisArcFinal(int arc) booleanisArcLast(int arc) Returnstrueif this arc hasNEXTbit set.booleanisArcTerminal(int arc) booleanisNextSet(int arc) (package private) static intreadVInt(byte[] array, int offset) Read a v-int.private intskipArc(int offset) Read the arc's layout and skip as many bytes, as needed, to skip it.private intskipVInt(int offset) Skip a v-int.(package private) static intvIntLength(int value) Return the byte-length of a v-coded int.Methods inherited from class FSA
getArcCount, getSequences, getSequences, iterator, read, read, readRemaining, visitAllStates, visitInPostOrder, visitInPostOrder, visitInPreOrder, visitInPreOrderMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Iterable
forEach, spliterator
-
Field Details
-
VERSION
public static final byte VERSIONAutomaton header version value.- See Also:
-
BIT_TARGET_NEXT
public static final int BIT_TARGET_NEXTThe target node of this arc follows the last arc of the current state (no goto field).- See Also:
-
BIT_LAST_ARC
public static final int BIT_LAST_ARCThe arc is the last one from the current node's arcs list.- See Also:
-
BIT_FINAL_ARC
public static final int BIT_FINAL_ARCThe arc corresponds to the last character of a sequence available when building the automaton (acceptor transition).- See Also:
-
LABEL_INDEX_BITS
static final int LABEL_INDEX_BITSThe count of bits assigned to storing an indexed label.- See Also:
-
LABEL_INDEX_MASK
static final int LABEL_INDEX_MASKMasks only the M bits of a flag byte.- See Also:
-
LABEL_INDEX_SIZE
public static final int LABEL_INDEX_SIZEMaximum size of the labels index.- See Also:
-
arcs
public byte[] arcsAn array of bytes with the internal representation of the automaton. Please see the documentation of this class for more information on how this structure is organized. -
flags
-
labelMapping
public final byte[] labelMappingLabel mapping for M-indexed labels. -
hasNumbers
private final boolean hasNumbersIftruestates are prepended with numbers. -
epsilon
private final int epsilonEpsilon node's offset.- See Also:
-
-
Constructor Details
-
CFSA2
CFSA2(InputStream stream) throws IOException Reads an automaton from a byte stream.- Throws:
IOException
-
-
Method Details
-
getRootNode
public int getRootNode()- Specified by:
getRootNodein classFSA- Returns:
- Returns the identifier of the root node of this automaton. Returns 0 if the start node is also the end node (the automaton is empty).
-
getFirstArc
public final int getFirstArc(int node) - Specified by:
getFirstArcin classFSA- Parameters:
node- Identifier of the node.- Returns:
- Returns the identifier of the first arc leaving
nodeor 0 if the node has no outgoing arcs.
-
getNextArc
public final int getNextArc(int arc) - Specified by:
getNextArcin classFSA- Parameters:
arc- The arc's identifier.- Returns:
- Returns the identifier of the next arc after
arcand leavingnode. Zero is returned if no more arcs are available for the node.
-
getArc
-
getEndNode
public int getEndNode(int arc) - Specified by:
getEndNodein classFSA- Parameters:
arc- The arc's identifier.- Returns:
- Return the end node pointed to by a given
arc. Terminal arcs (those that point to a terminal state) have no end node representation and throw a runtime exception.
-
getArcLabel
public byte getArcLabel(int arc) - Specified by:
getArcLabelin classFSA- Parameters:
arc- The arc's identifier.- Returns:
- Return the label associated with a given
arc.
-
getRightLanguageCount
public int getRightLanguageCount(int node) - Overrides:
getRightLanguageCountin classFSA- Parameters:
node- Identifier of the node.- Returns:
- Returns the number of sequences reachable from the given state if
the automaton was compiled with
FSAFlags.NUMBERS. The size of the right language of the state, in other words.
-
isArcFinal
public boolean isArcFinal(int arc) - Specified by:
isArcFinalin classFSA- Parameters:
arc- The arc's identifier.- Returns:
- Returns
trueif the destination node at the end of thisarccorresponds to an input sequence created when building this automaton.
-
isArcTerminal
public boolean isArcTerminal(int arc) - Specified by:
isArcTerminalin classFSA- Parameters:
arc- The arc's identifier.- Returns:
- Returns
trueif thisarcdoes not have a terminating node (@linkFSA.getEndNode(int)will throw an exception). ImpliesFSA.isArcFinal(int).
-
isArcLast
public boolean isArcLast(int arc) Returnstrueif this arc hasNEXTbit set.- Parameters:
arc- The node's arc identifier.- Returns:
- Returns true if the argument is the last arc of a node.
- See Also:
-
isNextSet
public boolean isNextSet(int arc) - Parameters:
arc- The node's arc identifier.- Returns:
- Returns true if
BIT_TARGET_NEXTis set for this arc. - See Also:
-
getFlags
-
getDestinationNodeOffset
final int getDestinationNodeOffset(int arc) Returns the address of the node pointed to by this arc. -
skipArc
private int skipArc(int offset) Read the arc's layout and skip as many bytes, as needed, to skip it. -
readVInt
static int readVInt(byte[] array, int offset) Read a v-int. -
vIntLength
static int vIntLength(int value) Return the byte-length of a v-coded int. -
skipVInt
private int skipVInt(int offset) Skip a v-int.
-