1 Star 0 Fork 0

azhw / gobacnet

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
listen.go 4.59 KB
一键复制 编辑 原始数据 按行查看 历史
koala 提交于 2020-03-27 10:45 . first
/*Copyright (C) 2017 Alex Beltran
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to:
The Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA.
As a special exception, if other files instantiate templates or
use macros or inline functions from this file, or you compile
this file and link it with other works to produce a work based
on this file, this file does not by itself cause the resulting
work to be covered by the GNU General Public License. However
the source code for this file must still be made available in
accordance with section (3) of the GNU General Public License.
This exception does not invalidate any other reasons why a work
based on this file might be covered by the GNU General Public
License.
*/
package gobacnet
import (
"fmt"
"net"
"os"
"gitee.com/azhw/gobacnet/encoding"
bactype "gitee.com/azhw/gobacnet/types"
)
// Close free resources for the client. Always call this function when using NewClient
func (c *Client) Close() {
if c.listener == nil {
return
}
c.listener.Close()
if f, ok := c.log.Out.(*os.File); ok {
f.Close()
}
}
func (c *Client) handleMsg(src *net.UDPAddr, b []byte) {
var header bactype.BVLC
var npdu bactype.NPDU
var apdu bactype.APDU
dec := encoding.NewDecoder(b)
err := dec.BVLC(&header)
if err != nil {
c.log.Error(err)
return
}
if header.Function == bactype.BacFuncBroadcast || header.Function == bactype.BacFuncUnicast || header.Function == bactype.BacFuncForwardedNPDU {
// Remove the header information
b = b[mtuHeaderLength:]
err = dec.NPDU(&npdu)
if err != nil {
return
}
if npdu.IsNetworkLayerMessage {
c.log.Debug("Ignored Network Layer Message")
return
}
// We want to keep the APDU intact so we will get a snapshot before decoding
// further
send := dec.Bytes()
err = dec.APDU(&apdu)
if err != nil {
return
}
switch apdu.DataType {
case bactype.UnconfirmedServiceRequest:
if apdu.UnconfirmedService == bactype.ServiceUnconfirmedIAm {
c.log.Debug("Received IAm Message")
dec = encoding.NewDecoder(apdu.RawData)
var iam bactype.IAm
err = dec.IAm(&iam)
// For whatever reason, the IP section won't be populated until
// we set the type.
src.IP = src.IP.To4()
iam.Addr = bactype.UDPToAddress(src)
if err != nil {
c.log.Error(err)
return
}
c.utsm.Publish(int(iam.ID.Instance), iam)
} else if apdu.UnconfirmedService == bactype.ServiceUnconfirmedWhoIs {
dec := encoding.NewDecoder(apdu.RawData)
var low, high int32
dec.WhoIs(&low, &high)
// For now we are going to ignore who is request.
//log.WithFields(log.Fields{"low": low, "high": high}).Debug("WHO IS Request")
} else {
c.log.Errorf("Unconfirmed: %d %v", apdu.UnconfirmedService, apdu.RawData)
}
case bactype.ComplexAck:
c.log.Debug("Received Complex Ack")
err := c.tsm.Send(int(apdu.InvokeId), send)
if err != nil {
return
}
case bactype.ConfirmedServiceRequest:
c.log.Debug("Received Confirmed Service Request")
err := c.tsm.Send(int(apdu.InvokeId), send)
if err != nil {
return
}
case bactype.Error:
err := fmt.Errorf("Error Class %d Code %d", apdu.Error.Class, apdu.Error.Code)
err = c.tsm.Send(int(apdu.InvokeId), err)
if err != nil {
c.log.Debug("unable to send error to %d: %v", apdu.InvokeId, err)
}
default:
// Ignore it
//log.WithFields(log.Fields{"raw": b}).Debug("An ignored packet went through")
}
}
if header.Function == bactype.BacFuncForwardedNPDU {
// Right now we are ignoring the NPDU data that is stored in the packet. Eventually
// we will need to check it for any additional information we can gleam.
// NDPU has source
b = b[forwardHeaderLength:]
c.log.Debug("Ignored NDPU Forwarded")
}
}
// listen for incoming bacnet packets.
func (c *Client) listen() error {
var err error = nil
// While connection is opened
for err == nil {
var (
adr *net.UDPAddr
i int
)
b := make([]byte, 2048)
i, adr, err = c.listener.ReadFromUDP(b)
if err != nil {
c.log.Error(err)
continue
}
go c.handleMsg(adr, b[:i])
}
return nil
}
Go
1
https://gitee.com/azhw/gobacnet.git
git@gitee.com:azhw/gobacnet.git
azhw
gobacnet
gobacnet
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891