1
0
mirror of https://github.com/mainflux/mainflux.git synced 2025-05-14 19:29:11 +08:00
Manuel Imperiale e16a025fba
MF-886 - Add OPC-UA adapter (#878)
* NOISSUE- Add OPC-UA adapter

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* NOISSUE - Add opc-adapter PoC, docker and vendor

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Convert OPC messages to SenML

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Add gopcua package

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* lora-adapter typo

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Add OPC Reader

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Typo fix

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Typo fix

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Update copyright headers

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Fix reviews

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Fix reviews

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Add opc config

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Add all opc envars in the config

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Config typo

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Add route map

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Use opcua package instead of opc

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Fix OPCUA typo

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Rm MQTT sub

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Move interefaces to root

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Fix revieews and typo

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Update Gopkg.toml

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Add all envars into .env

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>
2019-10-22 17:44:19 +02:00

76 lines
1.7 KiB
Go

// Copyright 2018-2019 opcua authors. All rights reserved.
// Use of this source code is governed by a MIT-style license that can be
// found in the LICENSE file.
package uasc
import (
"fmt"
"github.com/gopcua/opcua/errors"
"github.com/gopcua/opcua/ua"
)
// MessageType definitions.
const (
MessageTypeMessage = "MSG"
MessageTypeOpenSecureChannel = "OPN"
MessageTypeCloseSecureChannel = "CLO"
)
// ChunkType definitions.
const (
ChunkTypeIntermediate = 'C'
ChunkTypeFinal = 'F'
ChunkTypeError = 'A'
)
// Header represents a OPC UA Secure Conversation Header.
type Header struct {
MessageType string
ChunkType byte
MessageSize uint32
SecureChannelID uint32
}
// NewHeader creates a new OPC UA Secure Conversation Header.
func NewHeader(msgType string, chunkType byte, chanID uint32) *Header {
return &Header{
MessageType: msgType,
ChunkType: chunkType,
SecureChannelID: chanID,
}
}
func (h *Header) Decode(b []byte) (int, error) {
buf := ua.NewBuffer(b)
h.MessageType = string(buf.ReadN(3))
h.ChunkType = buf.ReadByte()
h.MessageSize = buf.ReadUint32()
h.SecureChannelID = buf.ReadUint32()
return buf.Pos(), buf.Error()
}
func (h *Header) Encode() ([]byte, error) {
buf := ua.NewBuffer(nil)
if len(h.MessageType) != 3 {
return nil, errors.Errorf("invalid message type: %q", h.MessageType)
}
buf.Write([]byte(h.MessageType))
buf.WriteByte(h.ChunkType)
buf.WriteUint32(h.MessageSize)
buf.WriteUint32(h.SecureChannelID)
return buf.Bytes(), buf.Error()
}
// String returns Header in string.
func (h *Header) String() string {
return fmt.Sprintf(
"MessageType: %s, ChunkType: %c, MessageSize: %d, SecureChannelID: %d",
h.MessageType,
h.ChunkType,
h.MessageSize,
h.SecureChannelID,
)
}