blob: c175b69fd18c3dce81383c9549c760c984d38b3a [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2014 Ericsson
*
* 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:
* Matthew Khouzam - Initial implementation and API
* Marc-Andre Laperle - Initial implementation and API
**********************************************************************/
package org.eclipse.tracecompass.internal.lttng2.control.core.relayd.commands;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
/**
* VIEWER_GET_METADATA payload.
*
* @author Matthew Khouzam
*/
public class GetMetadata implements IRelayCommand {
/**
* Command size (fStreamId)
*/
public static final int SIZE = Long.SIZE / 8;
/**
* The stream id
*/
private final long fStreamId;
/**
* Set the stream id
*
* @param streamId
* the stream id
*/
public GetMetadata(long streamId) {
fStreamId = streamId;
}
/**
* Get the stream id
*
* @return the stream id
*/
public long getStreamId() {
return fStreamId;
}
@Override
public byte[] serialize() {
byte data[] = new byte[SIZE];
ByteBuffer bb = ByteBuffer.wrap(data);
bb.order(ByteOrder.BIG_ENDIAN);
bb.putLong(getStreamId());
return data;
}
}