blob: ba727f328a6205ba1a2ee992adb010754588d871 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2016 École Polytechnique de Montréal and others
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Wininger - Initial API and implementation
*******************************************************************************/
package org.eclipse.tracecompass.internal.statesystem.core.backend.historytree;
import java.nio.ByteBuffer;
/**
* A Leaf node is a last-level node of a History Tree.
*
* A leaf node cannot have children, so it extends HTNode without adding
* anything in particular.
*
* @author Florian Wininger
*/
public final class LeafNode extends HTNode {
/**
* Initial constructor. Use this to initialize a new EMPTY node.
*
* @param config
* Configuration of the History Tree
* @param seqNumber
* The (unique) sequence number assigned to this particular node
* @param parentSeqNumber
* The sequence number of this node's parent node
* @param start
* The earliest timestamp stored in this node
*/
public LeafNode(HTConfig config, int seqNumber, int parentSeqNumber,
long start) {
super(config, seqNumber, parentSeqNumber, start);
}
@Override
protected void readSpecificHeader(ByteBuffer buffer) {
/* No specific header part */
}
@Override
protected void writeSpecificHeader(ByteBuffer buffer) {
/* No specific header part */
}
@Override
public NodeType getNodeType() {
return NodeType.LEAF;
}
@Override
protected int getSpecificHeaderSize() {
/* Empty */
return 0;
}
@Override
public String toStringSpecific() {
/* Only used for debugging, shouldn't be externalized */
return "Leaf Node"; //$NON-NLS-1$;
}
}