blob: 94b3443488bff4278e26cff148073bd08846d53e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package values
import (
"encoding/binary"
"fmt"
apiValues "github.com/apache/plc4x/plc4go/pkg/api/values"
"github.com/apache/plc4x/plc4go/spi/utils"
)
type PlcSTRING struct {
PlcSimpleValueAdapter
value string
}
func NewPlcSTRING(value string) PlcSTRING {
return PlcSTRING{
value: value,
}
}
func (m PlcSTRING) GetRaw() []byte {
theBytes, _ := m.Serialize()
return theBytes
}
func (m PlcSTRING) IsString() bool {
return true
}
func (m PlcSTRING) GetString() string {
return m.value
}
func (m PlcSTRING) GetPlcValueType() apiValues.PlcValueType {
return apiValues.STRING
}
func (m PlcSTRING) Serialize() ([]byte, error) {
wb := utils.NewWriteBufferByteBased(utils.WithByteOrderForByteBasedBuffer(binary.BigEndian))
if err := m.SerializeWithWriteBuffer(wb); err != nil {
return nil, err
}
return wb.GetBytes(), nil
}
func (m PlcSTRING) SerializeWithWriteBuffer(writeBuffer utils.WriteBuffer) error {
return writeBuffer.WriteString("PlcSTRING", uint32(len([]rune(m.value))*8), "UTF-8", m.value)
}
func (m PlcSTRING) String() string {
return fmt.Sprintf("%s(%dbit):%v", m.GetPlcValueType(), uint32(len([]rune(m.value))*8), m.value)
}