Compare commits

...

5 Commits

Author SHA1 Message Date
Ibnu hamdani e538d497f6 first commit for rnd parser ruptela 1 year ago
Angga Bayu Marthafifsa 89da3bb2db fixed bug in parsing 6 years ago
Angga Bayu Marthafifsa de5fd36d8f change allowed hour to minutes 6 years ago
Angga Bayu Marthafifsa e3e548b181 changed allowed time hour 6 years ago
Angga Bayu Marthafifsa 5d8b5f9b23 delete if time more than time now > 24 hour 6 years ago
  1. 9
      model/device.go
  2. 38
      parser/devicePrsInternal.go

9
model/device.go

@ -60,6 +60,13 @@ const (
CMD_RUP_GARMD_RESP = 131
CMD_RUP_CONN_PARM = 105
CMD_RUP_ODO = 106
// add
CMD_RUP_FUEL_LEVEL = 205
CMD_RUP_ENGINE_SPEED = 197
CMD_RUP_HIGH_RESOL_ENGINE_TOTAL_FUEL_USED = 92
CMD_RUP_HIGH_RESOL_TOTAL_VEHICLE_DISTANCE = 114
CMD_FUEL_LEVEL1 = 207
)
// Device and standard Tag type
@ -171,7 +178,7 @@ type Parser interface {
Payload() []byte
GetError() error
GetCommand() byte
// GetRecords() *DeviceRecords
// GetRecords() *DeviceRecords
GetIMEI() uint64
GetClientResponse() []byte
ExecuteAsync()

38
parser/devicePrsInternal.go

@ -9,6 +9,7 @@ import (
"encoding/binary"
"fmt"
"time"
"math"
//"encoding/hex"
"strconv"
"sort"
@ -17,6 +18,10 @@ import (
"../model"
)
const (
ALLOWED_TIME_MINUTES = -5
)
type ruptelaTchHeader struct {
Length uint16
IMEI uint64
@ -219,9 +224,12 @@ func parseData(data []byte, imei uint64, tagOption *opt.Options) (rec DeviceReco
ioVal := convBinaryToUint16(addOneByteInTwoByte(data[currByte:plusByte]),2,"io1Val")
//fmt.Printf("io1Val %d\n",ioVal)
strVal := fmt.Sprintf("%v",int16(ioVal))
//fmt.Printf("strVal %v\n",strVal)
tagDevice_ := tags_[strconv.Itoa(int(ioID))]
tagDevice_.TagId = strconv.Itoa(int(ioID))
tagDevice_.TagVal = strconv.Itoa(int(ioVal))
tagDevice_.TagVal = strVal
if tagDevice_.TagName != ""{
//tags_[strconv.Itoa(int(ioID))] = tagDevice_
tags_[tagDevice_.TagName] = tagDevice_
@ -248,10 +256,14 @@ func parseData(data []byte, imei uint64, tagOption *opt.Options) (rec DeviceReco
currByte = plusByte
plusByte = currByte + 2
ioVal := convBinaryToUint16(data[currByte:plusByte],2,"io2Val")
//fmt.Printf("io2Val %d\n",ioVal)
// fmt.Printf("io2Val %d\n",ioVal)
// fmt.Printf("io2Val INT %d\n",int16(ioVal))
strVal := fmt.Sprintf("%v",int16(ioVal))
//fmt.Printf("strVal %v\n",strVal)
tagDevice_ := tags_[strconv.Itoa(int(ioID))]
tagDevice_.TagVal = strconv.Itoa(int(ioVal))
tagDevice_.TagVal = strVal
if tagDevice_.TagName != ""{
tags_[tagDevice_.TagName] = tagDevice_
}
@ -277,8 +289,11 @@ func parseData(data []byte, imei uint64, tagOption *opt.Options) (rec DeviceReco
ioVal := convBinaryToInt32(data[currByte:plusByte],4,"io4Val")
//fmt.Printf("io4Val %d\n",ioVal)
strVal := fmt.Sprintf("%v",int32(ioVal))
//fmt.Printf("strVal %v\n",strVal)
tagDevice_ := tags_[strconv.Itoa(int(ioID))]
tagDevice_.TagVal = strconv.FormatInt(int64(ioVal), 10)
tagDevice_.TagVal = strVal
if tagDevice_.TagName != ""{
tags_[tagDevice_.TagName] = tagDevice_
}
@ -304,8 +319,11 @@ func parseData(data []byte, imei uint64, tagOption *opt.Options) (rec DeviceReco
ioVal := convBinaryToInt64(data[currByte:plusByte],8,"io8Val")
//fmt.Printf("io8Val %d\n",ioVal)
strVal := fmt.Sprintf("%v",int64(ioVal))
//fmt.Printf("strVal %v\n",strVal)
tagDevice_ := tags_[strconv.Itoa(int(ioID))]
tagDevice_.TagVal = strconv.FormatInt(int64(ioVal), 10)
tagDevice_.TagVal = strVal
if tagDevice_.TagName != ""{
tags_[tagDevice_.TagName] = tagDevice_
}
@ -320,10 +338,18 @@ func parseData(data []byte, imei uint64, tagOption *opt.Options) (rec DeviceReco
}
deviceRecord.TagDevices = tags_
deviceRecords = append(deviceRecords, deviceRecord)
tstampToNow := time.Since(deviceRecord.Tstamp)
hCurr := math.Round(tstampToNow.Minutes()*100)/100
if hCurr >= ALLOWED_TIME_MINUTES {
deviceRecords = append(deviceRecords, deviceRecord)
}
}
rec.NumRec = uint16(len(deviceRecords))
//sort ascending by date
sort.Sort(ByTstamp(deviceRecords))

Loading…
Cancel
Save