* feat(backend): handlers for mobile messages * feat(backend): new service template * feat(backend): save mobile session start and send batches to kafka * feat(backend): added mobile support to sink, ender and storage * helm(videostorage): added helm chart for a new service videostorage * fix(backend): added pointer to streing for userBrowser (because it's null for mobile sessions) * feat(backend): added MsgIOSBatchMeta handler to message iterator's logic * feat(backend): added ios ts parser to ender * feat(backend): enabled producing batch of messages to queue * feat(backend): removed iosstart from mob files * feat(backend): added new ios message types * feat(backend): added iosStart and iosEnd * fix(backend): fixed log issue * feat(backend): send tar.gz archives to special queue topic * feat(backend): read raw archives from kafka * fix(backend): added missing file * fix(backend): removed the second file reading * fix(backend): fixed wrong queue topic name * fix(backend): fixed mobile trigger topic name * feat(backend): added tar.gz extractor and iOSSessionEnd handler * feat(backend): debug logs on message uploading * fix(backend): added raw-images topic consumption * feat(backend): now sink send iosSessionEnd to video-storage * feat(backend): added dir creator for new sessions * feat(backend): added correct command to execute * feat(backend): added overwrite option * feat(backend): added s3 uploader for video session replays * feat(backend): new consumer group for mobile sessions * feat(backend): debug logs for uploader * feat(backend): removed unused log * feat(backend): fixed s3 key for video replays * feat(backend): removed debug code * feat(backend): fixed video-storage message filter * fix(backend): added mobileSessionEnd to SessionEnd converter * feat(backend): added first version if db support for mobile events * fix(backend): added swipe events to mob file * feat(backend): added swipe event to pg * feat(backend): split logic into 2 services: image-storage and video-storage * feat(backend): added helm chart for image-storage service * fix(backend): fixed table name for mobile taps * feat(backend): added metadata handler for mobile message parser + fix message filters * feat(backend): added iosRawTopic to DB message consumer * fix(backend): removed value from mobile inputs * feat(backend): removed debug log from iterator * feat(backend): added new apple devices to iOS device parser * fix(backend): added real projectID instead of 0 * feat(backend): extended a list of simulators for device detector * feat(backend): updated networkCall mobile message * fix(backend): added new way to define is network call successed or not * feat(backend): added timezone support for mobile start request * feat(backend): added 2 mobile events Input and Click to mob file * feat(backend): refactored image storage * feat(backend): video storage with 2 workers * feat(backend): added project's platform support * feat(backend): added memory size field for mobile start request * feat(backend): changed video preset for ultrafast * feat(backend): added debug log to http /late handler * feat(backend): added debug log to db service for iosCrash messages * feat(backend): added tapRage event handler to heuristics * feat(backend): changed table and field names for ios crashes * feat(backend): added payload for tapRage events * feat(backend): added TapRage events insert to DB * feat(backend): added fps value to /mobile/start response * feat(backend): added image quality parameter to /mobile/start response * feat(backend): added ScreenLeave handler * feat(backend): removed screenEnter and screenLeave events, added new viewComponent event --------- Co-authored-by: rjshrjndrn <rjshrjndrn@gmail.com>
205 lines
5.7 KiB
Go
205 lines
5.7 KiB
Go
package messages
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
)
|
|
|
|
// MessageHandler processes one message using service logic
|
|
type MessageHandler func(Message)
|
|
|
|
// MessageIterator iterates by all messages in batch
|
|
type MessageIterator interface {
|
|
Iterate(batchData []byte, batchInfo *BatchInfo)
|
|
}
|
|
|
|
type messageIteratorImpl struct {
|
|
filter map[int]struct{}
|
|
preFilter map[int]struct{}
|
|
handler MessageHandler
|
|
autoDecode bool
|
|
version uint64
|
|
size uint64
|
|
canSkip bool
|
|
broken bool
|
|
messageInfo *message
|
|
batchInfo *BatchInfo
|
|
urls *pageLocations
|
|
}
|
|
|
|
func NewMessageIterator(messageHandler MessageHandler, messageFilter []int, autoDecode bool) MessageIterator {
|
|
iter := &messageIteratorImpl{
|
|
handler: messageHandler,
|
|
autoDecode: autoDecode,
|
|
urls: NewPageLocations(),
|
|
}
|
|
if len(messageFilter) != 0 {
|
|
filter := make(map[int]struct{}, len(messageFilter))
|
|
for _, msgType := range messageFilter {
|
|
filter[msgType] = struct{}{}
|
|
}
|
|
iter.filter = filter
|
|
}
|
|
iter.preFilter = map[int]struct{}{
|
|
MsgBatchMetadata: {}, MsgBatchMeta: {}, MsgTimestamp: {},
|
|
MsgSessionStart: {}, MsgSessionEnd: {}, MsgSetPageLocation: {},
|
|
MsgIOSBatchMeta: {},
|
|
}
|
|
return iter
|
|
}
|
|
|
|
func (i *messageIteratorImpl) prepareVars(batchInfo *BatchInfo) {
|
|
i.batchInfo = batchInfo
|
|
i.messageInfo = &message{batch: batchInfo}
|
|
i.version = 0
|
|
i.canSkip = false
|
|
i.broken = false
|
|
i.size = 0
|
|
}
|
|
|
|
func (i *messageIteratorImpl) Iterate(batchData []byte, batchInfo *BatchInfo) {
|
|
// Create new message reader
|
|
reader := NewMessageReader(batchData)
|
|
|
|
// Pre-decode batch data
|
|
if err := reader.Parse(); err != nil {
|
|
log.Printf("pre-decode batch err: %s, info: %s", err, batchInfo.Info())
|
|
return
|
|
}
|
|
|
|
// Prepare iterator before processing messages in batch
|
|
i.prepareVars(batchInfo)
|
|
|
|
for reader.Next() {
|
|
// Increase message index (can be overwritten by batch info message)
|
|
i.messageInfo.Index++
|
|
|
|
msg := reader.Message()
|
|
msgType := msg.TypeID()
|
|
|
|
// Preprocess "system" messages
|
|
if _, ok := i.preFilter[msg.TypeID()]; ok {
|
|
msg = msg.Decode()
|
|
if msg == nil {
|
|
log.Printf("decode error, type: %d, info: %s", msgType, i.batchInfo.Info())
|
|
return
|
|
}
|
|
msg = transformDeprecated(msg)
|
|
if err := i.preprocessing(msg); err != nil {
|
|
log.Printf("message preprocessing err: %s", err)
|
|
return
|
|
}
|
|
}
|
|
|
|
// Skip messages we don't have in filter
|
|
if i.filter != nil {
|
|
if _, ok := i.filter[msg.TypeID()]; !ok {
|
|
continue
|
|
}
|
|
}
|
|
|
|
if i.autoDecode {
|
|
msg = msg.Decode()
|
|
if msg == nil {
|
|
log.Printf("decode error, type: %d, info: %s", msgType, i.batchInfo.Info())
|
|
return
|
|
}
|
|
}
|
|
|
|
// Set meta information for message
|
|
msg.Meta().SetMeta(i.messageInfo)
|
|
|
|
// Update timestamp value for iOS message types
|
|
if IsIOSType(msgType) {
|
|
msgTime := i.getIOSTimestamp(msg)
|
|
msg.Meta().Timestamp = msgTime
|
|
}
|
|
|
|
// Process message
|
|
i.handler(msg)
|
|
}
|
|
}
|
|
|
|
func (i *messageIteratorImpl) getIOSTimestamp(msg Message) uint64 {
|
|
return GetTimestamp(msg)
|
|
}
|
|
|
|
func (i *messageIteratorImpl) zeroTsLog(msgType string) {
|
|
log.Printf("zero timestamp in %s, info: %s", msgType, i.batchInfo.Info())
|
|
}
|
|
|
|
func (i *messageIteratorImpl) preprocessing(msg Message) error {
|
|
switch m := msg.(type) {
|
|
case *BatchMetadata:
|
|
if i.messageInfo.Index > 1 { // Might be several 0-0 BatchMeta in a row without an error though
|
|
return fmt.Errorf("batchMetadata found at the end of the batch, info: %s", i.batchInfo.Info())
|
|
}
|
|
if m.Version > 1 {
|
|
return fmt.Errorf("incorrect batch version: %d, skip current batch, info: %s", i.version, i.batchInfo.Info())
|
|
}
|
|
i.messageInfo.Index = m.PageNo<<32 + m.FirstIndex // 2^32 is the maximum count of messages per page (ha-ha)
|
|
i.messageInfo.Timestamp = uint64(m.Timestamp)
|
|
if m.Timestamp == 0 {
|
|
i.zeroTsLog("BatchMetadata")
|
|
}
|
|
i.messageInfo.Url = m.Location
|
|
i.version = m.Version
|
|
i.batchInfo.version = m.Version
|
|
|
|
case *BatchMeta: // Is not required to be present in batch since IOS doesn't have it (though we might change it)
|
|
if i.messageInfo.Index > 1 { // Might be several 0-0 BatchMeta in a row without an error though
|
|
return fmt.Errorf("batchMeta found at the end of the batch, info: %s", i.batchInfo.Info())
|
|
}
|
|
i.messageInfo.Index = m.PageNo<<32 + m.FirstIndex // 2^32 is the maximum count of messages per page (ha-ha)
|
|
i.messageInfo.Timestamp = uint64(m.Timestamp)
|
|
if m.Timestamp == 0 {
|
|
i.zeroTsLog("BatchMeta")
|
|
}
|
|
// Try to get saved session's page url
|
|
if savedURL := i.urls.Get(i.messageInfo.batch.sessionID); savedURL != "" {
|
|
i.messageInfo.Url = savedURL
|
|
}
|
|
|
|
case *Timestamp:
|
|
i.messageInfo.Timestamp = m.Timestamp
|
|
if m.Timestamp == 0 {
|
|
i.zeroTsLog("Timestamp")
|
|
}
|
|
|
|
case *SessionStart:
|
|
i.messageInfo.Timestamp = m.Timestamp
|
|
if m.Timestamp == 0 {
|
|
i.zeroTsLog("SessionStart")
|
|
log.Printf("zero session start, project: %d, UA: %s, tracker: %s, info: %s",
|
|
m.ProjectID, m.UserAgent, m.TrackerVersion, i.batchInfo.Info())
|
|
}
|
|
|
|
case *SessionEnd:
|
|
i.messageInfo.Timestamp = m.Timestamp
|
|
if m.Timestamp == 0 {
|
|
i.zeroTsLog("SessionEnd")
|
|
}
|
|
// Delete session from urls cache layer
|
|
i.urls.Delete(i.messageInfo.batch.sessionID)
|
|
|
|
case *SetPageLocation:
|
|
i.messageInfo.Url = m.URL
|
|
// Save session page url in cache for using in next batches
|
|
i.urls.Set(i.messageInfo.batch.sessionID, m.URL)
|
|
|
|
case *IOSBatchMeta:
|
|
if i.messageInfo.Index > 1 { // Might be several 0-0 BatchMeta in a row without an error though
|
|
return fmt.Errorf("batchMeta found at the end of the batch, info: %s", i.batchInfo.Info())
|
|
}
|
|
i.messageInfo.Index = m.FirstIndex
|
|
i.messageInfo.Timestamp = m.Timestamp
|
|
if m.Timestamp == 0 {
|
|
i.zeroTsLog("IOSBatchMeta")
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func messageHasSize(msgType uint64) bool {
|
|
return !(msgType == 80 || msgType == 81 || msgType == 82)
|
|
}
|