1 package org.metricshub.ipmi.core.coding.payload.sol;
2
3 /*-
4 * ╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲
5 * IPMI Java Client
6 * ჻჻჻჻჻჻
7 * Copyright 2023 Verax Systems, MetricsHub
8 * ჻჻჻჻჻჻
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as
11 * published by the Free Software Foundation, either version 3 of the
12 * License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Lesser Public License for more details.
18 *
19 * You should have received a copy of the GNU General Lesser Public
20 * License along with this program. If not, see
21 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
22 * ╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱
23 */
24
25 /**
26 * Implementation of {@link SolMessage} for BMC -> Remote Console message.
27 */
28 public class SolInboundMessage extends SolMessage {
29
30 /**
31 * Status field in {@link SolMessage} BMC -> Remote Console payload.
32 */
33 private final SolInboundStatusField statusField;
34
35 public SolInboundMessage(byte sequenceNumber, byte ackNackSequenceNumber, byte acceptedCharacterCount, SolInboundStatusField statusField) {
36 super(sequenceNumber, ackNackSequenceNumber, acceptedCharacterCount, statusField.convertToByte());
37 this.statusField = statusField;
38 }
39
40 public SolInboundMessage(byte[] rawData) {
41 super(rawData[0], rawData[1], rawData[2], rawData[3]);
42
43 if (rawData.length > PAYLOAD_HEADER_LENGTH) {
44 byte[] characterData = new byte[rawData.length - PAYLOAD_HEADER_LENGTH];
45 System.arraycopy(rawData, PAYLOAD_HEADER_LENGTH, characterData, 0, characterData.length);
46 setData(characterData);
47 }
48
49 this.statusField = new SolInboundStatusField(rawData[3]);
50 }
51
52 public SolInboundStatusField getStatusField() {
53 return statusField;
54 }
55 }