Class BitStreamArcLabelledImmutableGraph
- All Implemented Interfaces:
FlyweightPrototype<ImmutableGraph>
public class BitStreamArcLabelledImmutableGraph extends ArcLabelledImmutableGraph
Instances of this class wrap a given immutable graph and a bit stream.
Given a prototype Label, the bit stream is then considered as containing all labels of all arcs
as returned by a complete enumeration (made using ArcLabelledImmutableGraph.nodeIterator()). The overall graph is described
by a label file (with extension
.labels), an offset file (with extension
.labeloffsets) and a property file (with extension
.properties). The latter, not surprisingly, is a Java property file.
The Label and Offset Files
Since the labels are stored as a bit stream, we must have some way to know where the labels related to the successors of each node start. This information is stored in the offset file, which contains the bit offset of the list of labels of the arcs going out of each node (in particular, the offset of the first list will be zero). As a commodity, the offset file contains an additional offset pointing just after the last list (providing, as a side-effect, the actual bit length of the label file). Each offset (except for the first one) is stored as a γ-coded difference from the previous offset.
The Property File
The property file for an instance of this class must contain the following entries:
- graphclass
- the name of this class; it is necessary so that load methods in
ImmutableGraphcan identify this class; - underlyinggraph
- the basename (relative to the name of the property file, unless it is absolute) of the underlying
ImmutableGraph; - labelspec
- a string describing a constructor call for a label class; an example is
parameters are separated by a comma, and no quoting or escaping is allowed (see
it.unimi.dsi.webgraph.labelling.FixedWidthIntLabel(FOO,10)Labelfor details about string-based constructors).
The load()
method of this class takes care of looking at the property file, loading the underlying immutable graph,
and setting up either sequential or random access to the bit stream containing the labels. If
just sequential access is required, the offsets are not loaded into memory, and if just offline
access is required, bit stream is never loaded into memory.
Saving labels
The store(ArcLabelledImmutableGraph, CharSequence, CharSequence)
and store(ArcLabelledImmutableGraph, CharSequence, CharSequence, ProgressLogger)
methods will save the labels of an instance of this graph as expected, that is,
the bitstream and its offsets will be saved with the extensions described above.
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static classBitStreamArcLabelledImmutableGraph.BitStreamLabelledArcIteratorNested classes/interfaces inherited from class it.unimi.dsi.big.webgraph.ImmutableGraph
ImmutableGraph.LoadMethod -
Field Summary
Fields Modifier and Type Field Description protected CharSequencebasenameThe basename of this graph (required for offline access).ImmutableGraphgThe underlying immutable graph.static StringLABEL_OFFSETS_EXTENSIONThe standard extension for the label offsets bit stream.static StringLABELS_EXTENSIONThe standard extension for the labels bit stream.static StringLABELSPEC_PROPERTY_KEYThe standard property key for a label specification.protected EliasFanoMonotoneLongBigListoffsetThe offset array, ornullfor sequential access.protected LabelprototypeA prototype label, used to deserialise labels and create copies.Fields inherited from class it.unimi.dsi.big.webgraph.labelling.ArcLabelledImmutableGraph
UNDERLYINGGRAPH_PROPERTY_KEY, UNDERLYINGGRAPH_SUFFIXFields inherited from class it.unimi.dsi.big.webgraph.ImmutableGraph
GRAPHCLASS_PROPERTY_KEY, NUMBER_OF_THREADS_PROPERTY, PROPERTIES_EXTENSION -
Constructor Summary
Constructors Modifier Constructor Description protectedBitStreamArcLabelledImmutableGraph(CharSequence basename, ImmutableGraph g, Label prototype, byte[] byteArray, FastMultiByteArrayInputStream labelStream, EliasFanoMonotoneLongBigList offset)Builds a new labelled graph using a bit stream of labels. -
Method Summary
Modifier and Type Method Description CharSequencebasename()Returns a symbolic basename for this graph (optional operation).BitStreamArcLabelledImmutableGraphcopy()Returns a flyweight copy of this immutable graph.booleanhasCopiableIterators()Whether the node iterators returned by this graph supportNodeIterator.copy(long).protected static BitStreamArcLabelledImmutableGraphload(ImmutableGraph.LoadMethod method, CharSequence basename, ProgressLogger pl)Loads a labelled graph using the given method and offset step.static BitStreamArcLabelledImmutableGraphload(CharSequence basename)static BitStreamArcLabelledImmutableGraphload(CharSequence basename, ProgressLogger pl)static BitStreamArcLabelledImmutableGraphloadOffline(CharSequence basename)static BitStreamArcLabelledImmutableGraphloadOffline(CharSequence basename, ProgressLogger pl)static BitStreamArcLabelledImmutableGraphloadSequential(CharSequence basename)Deprecated.static BitStreamArcLabelledImmutableGraphloadSequential(CharSequence basename, ProgressLogger pl)Deprecated.protected InputBitStreamnewInputBitStream()Returns the label bit stream.ArcLabelledNodeIteratornodeIterator(long from)Returns a node iterator for scanning the graph sequentially, starting from the given node.longnumArcs()Returns the number of arcs of this graph (optional operation).longnumNodes()Returns the number of nodes of this graph.protected longoffset(long x)Return the actual offset of the labels of the arcs going out of a given node.longoutdegree(long x)Returns the outdegree of a node.Labelprototype()Returns a prototype of the labels used by this graph.booleanrandomAccess()Checks whether this graph provides random access to successor lists.static voidstore(ArcLabelledImmutableGraph graph, CharSequence basename, CharSequence underlyingBasename)static voidstore(ArcLabelledImmutableGraph graph, CharSequence basename, CharSequence underlyingBasename, ProgressLogger pl)long[][]successorBigArray(long x)Returns a reference to an array containing the successors of a given node.ArcLabelledNodeIterator.LabelledArcIteratorsuccessors(long x)Returns a lazy iterator over the successors of a given node.Methods inherited from class it.unimi.dsi.big.webgraph.labelling.ArcLabelledImmutableGraph
equals, labelBigArray, loadOnce, nodeIterator, toStringMethods inherited from class it.unimi.dsi.big.webgraph.ImmutableGraph
hashCode, intNumNodes, load, loadMapped, loadMapped, outdegrees, splitNodeIterators, store, store, wrap, wrap
-
Field Details
-
LABELS_EXTENSION
The standard extension for the labels bit stream.- See Also:
- Constant Field Values
-
LABEL_OFFSETS_EXTENSION
The standard extension for the label offsets bit stream.- See Also:
- Constant Field Values
-
LABELSPEC_PROPERTY_KEY
The standard property key for a label specification.- See Also:
- Constant Field Values
-
g
The underlying immutable graph. -
prototype
A prototype label, used to deserialise labels and create copies. -
basename
The basename of this graph (required for offline access). -
offset
The offset array, ornullfor sequential access.
-
-
Constructor Details
-
BitStreamArcLabelledImmutableGraph
protected BitStreamArcLabelledImmutableGraph(CharSequence basename, ImmutableGraph g, Label prototype, byte[] byteArray, FastMultiByteArrayInputStream labelStream, EliasFanoMonotoneLongBigList offset)Builds a new labelled graph using a bit stream of labels.- Parameters:
basename- the basename of the graph (mandatory for offline access).g- the underlying immutable graph.prototype- a label instance.byteArray- a byte array containing the bit stream of labels, ornullfor offile access or large file access.labelStream- ifbyteArrayisnull, this stream is used as the bit stream of labels.offset- the offset array for random access, ornull.
-
-
Method Details
-
copy
Description copied from class:ImmutableGraphReturns a flyweight copy of this immutable graph.- Specified by:
copyin interfaceFlyweightPrototype<ImmutableGraph>- Specified by:
copyin classArcLabelledImmutableGraph- Returns:
- a flyweight copy of this immutable graph.
- See Also:
FlyweightPrototype
-
newInputBitStream
Returns the label bit stream.This method takes care of creating the bit stream from the right source—the byte array, the stream of multiple byte arrays or the label file itself.
- Returns:
- the label bit stream.
- Throws:
FileNotFoundException
-
basename
Description copied from class:ImmutableGraphReturns a symbolic basename for this graph (optional operation).Implementors of this class may provide a basename (usually a pathname from which various files storing the graph are stemmed). This method is optional because it is sometimes unmeaningful (e.g., for one-off anonymous classes).
- Overrides:
basenamein classImmutableGraph- Returns:
- the basename.
-
offset
protected long offset(long x)Return the actual offset of the labels of the arcs going out of a given node.- Parameters:
x- a node.- Returns:
- the offset of the labels of the arcs going out of
x.
-
successors
Description copied from class:ImmutableGraphReturns a lazy iterator over the successors of a given node. The iteration terminates when -1 is returned.This implementation just wraps the array returned by
ImmutableGraph.successorBigArray(long). Subclasses are encouraged to override this implementation.The semantics of this method has been significantly modified in WebGraph 2.0 to take advantage of the new, faster lazy architecture.
- Specified by:
successorsin classArcLabelledImmutableGraph- Parameters:
x- a node.- Returns:
- a lazy iterator over the successors of the node.
-
successorBigArray
public long[][] successorBigArray(long x)Description copied from class:ImmutableGraphReturns a reference to an array containing the successors of a given node.The returned array may contain more entries than the outdegree of
x. However, only those with indices from 0 (inclusive) to the outdegree ofx(exclusive) contain valid data.This implementation just unwraps the iterator returned by
ImmutableGraph.successors(long). Subclasses are encouraged to override this implementation.- Overrides:
successorBigArrayin classImmutableGraph- Parameters:
x- a node.- Returns:
- an array whose first elements are the successors of the node; the array must not be modified by the caller.
-
numNodes
public long numNodes()Description copied from class:ImmutableGraphReturns the number of nodes of this graph.Albeit this method is not optional, it is allowed that this method throws an
UnsupportedOperationExceptionif this graph has never been entirely traversed using anode iterator. This apparently bizarre behaviour is necessary to support implementations asArcListASCIIGraph, which do not know the actual number of nodes until a traversal has been completed.- Specified by:
numNodesin classImmutableGraph- Returns:
- the number of nodes.
-
numArcs
public long numArcs()Description copied from class:ImmutableGraphReturns the number of arcs of this graph (optional operation).- Overrides:
numArcsin classImmutableGraph- Returns:
- the number of arcs.
-
randomAccess
public boolean randomAccess()Description copied from class:ImmutableGraphChecks whether this graph provides random access to successor lists.- Specified by:
randomAccessin classImmutableGraph- Returns:
- true if this graph provides random access to successor lists.
-
hasCopiableIterators
public boolean hasCopiableIterators()Description copied from class:ImmutableGraphWhether the node iterators returned by this graph supportNodeIterator.copy(long).This implementation just returns
ImmutableGraph.randomAccess().- Overrides:
hasCopiableIteratorsin classImmutableGraph- Returns:
- true if this graph provides copiable iterators.
-
outdegree
public long outdegree(long x)Description copied from class:ImmutableGraphReturns the outdegree of a node.- Specified by:
outdegreein classImmutableGraph- Parameters:
x- a node.- Returns:
- the outdegree of the given node.
-
loadSequential
@Deprecated public static BitStreamArcLabelledImmutableGraph loadSequential(CharSequence basename) throws IOExceptionDeprecated.- Throws:
IOException
-
loadSequential
@Deprecated public static BitStreamArcLabelledImmutableGraph loadSequential(CharSequence basename, ProgressLogger pl) throws IOExceptionDeprecated.- Throws:
IOException
-
loadOffline
public static BitStreamArcLabelledImmutableGraph loadOffline(CharSequence basename) throws IOException- Throws:
IOException
-
loadOffline
public static BitStreamArcLabelledImmutableGraph loadOffline(CharSequence basename, ProgressLogger pl) throws IOException- Throws:
IOException
-
load
- Throws:
IOException
-
load
public static BitStreamArcLabelledImmutableGraph load(CharSequence basename, ProgressLogger pl) throws IOException- Throws:
IOException
-
load
protected static BitStreamArcLabelledImmutableGraph load(ImmutableGraph.LoadMethod method, CharSequence basename, ProgressLogger pl) throws IOExceptionLoads a labelled graph using the given method and offset step.If
offsetStepis larger than 1 and the the underlying graph is aBVGraph, the value will be passed toBVGraph.load(CharSequence, int, ProgressLogger).- Parameters:
method- a load method.basename- the basename of the graph.pl- a progress logger.- Returns:
- a graph labelled using a bit stream.
- Throws:
IOException
-
nodeIterator
Description copied from class:ArcLabelledImmutableGraphReturns a node iterator for scanning the graph sequentially, starting from the given node.This implementation strengthens that provided in
ImmutableGraph, but calls the labelled random-access methodArcLabelledImmutableGraph.successors(long).- Overrides:
nodeIteratorin classArcLabelledImmutableGraph- Parameters:
from- the node from which the iterator will iterate.- Returns:
- an
ArcLabelledNodeIteratorfor accessing nodes, successors and their labels sequentially. - See Also:
ImmutableGraph.nodeIterator()
-
prototype
Description copied from class:ArcLabelledImmutableGraphReturns a prototype of the labels used by this graph. The prototype can be used to produce new copies, but must not be modified by the caller.- Specified by:
prototypein classArcLabelledImmutableGraph- Returns:
- a prototype for the labels of this graph.
-
store
public static void store(ArcLabelledImmutableGraph graph, CharSequence basename, CharSequence underlyingBasename) throws IOException- Throws:
IOException
-
store
public static void store(ArcLabelledImmutableGraph graph, CharSequence basename, CharSequence underlyingBasename, ProgressLogger pl) throws IOException- Throws:
IOException
-