eu.luminis.websocket.TextFrame Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-websocket-samplers Show documentation
Show all versions of jmeter-websocket-samplers Show documentation
JMeter add-on that defines a number of samplers for load testing WebSocket applications.
/*
* Copyright © 2016, 2017, 2018 Peter Doornbosch
*
* This file is part of JMeter-WebSocket-Samplers, a JMeter add-on for load-testing WebSocket applications.
*
* JMeter-WebSocket-Samplers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* JMeter-WebSocket-Samplers is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
* more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package eu.luminis.websocket;
import java.nio.charset.StandardCharsets;
public class TextFrame extends DataFrame {
private int payloadSize;
protected String text;
public TextFrame(String text) {
this.text = text;
payloadSize = text.getBytes().length;
}
public TextFrame(boolean fin, byte[] payload, int size) {
super(fin, size);
payloadSize = payload.length;
text = new String(payload, StandardCharsets.UTF_8);
}
public String getText() {
return text;
}
@Override
public Object getData() {
return text;
}
@Override
public boolean isText() {
return true;
}
@Override
public String toString() {
return "Text frame with text '" + text + "'";
}
@Override
protected byte[] getPayload() {
return text.getBytes(StandardCharsets.UTF_8);
}
@Override
protected byte getOpCode() {
return OPCODE_TEXT;
}
@Override
public String getTypeAsString() {
if (isFinalFragment())
return "text";
else
return "non-final text";
}
@Override
public int getPayloadSize() {
return payloadSize;
}
}