Skip to content
Snippets Groups Projects
Select Git revision
  • 4838dfdd91f142f06aa5d2d2402505fd61df672d
  • main default protected
  • development
  • integration
  • v1.1.5
  • v1.1.4
  • v1.1.3
  • v1.1.2
  • v1.1.1
  • v1.1.0
  • v1.0.0
11 results

NetworkFollower.swift

Blame
  • processor.go 2.22 KiB
    ////////////////////////////////////////////////////////////////////////////////
    // Copyright © 2020 xx network SEZC                                           //
    //                                                                            //
    // Use of this source code is governed by a license that can be found in the  //
    // LICENSE file                                                               //
    ////////////////////////////////////////////////////////////////////////////////
    
    package fileTransfer
    
    import (
    	"fmt"
    
    	jww "github.com/spf13/jwalterweatherman"
    	"gitlab.com/elixxir/client/cmix/identity/receptionID"
    	"gitlab.com/elixxir/client/cmix/rounds"
    	"gitlab.com/elixxir/client/fileTransfer/store"
    	"gitlab.com/elixxir/client/fileTransfer/store/cypher"
    	"gitlab.com/elixxir/client/fileTransfer/store/fileMessage"
    	"gitlab.com/elixxir/primitives/format"
    )
    
    // Error messages.
    const (
    	// processor.Process
    	errDecryptPart   = "[FT] Failed to decrypt file part for transfer %s (%q) on round %d: %+v"
    	errUnmarshalPart = "[FT] Failed to unmarshal decrypted file part for transfer %s (%q) on round %d: %+v"
    	errAddPart       = "[FT] Failed to add part #%d to transfer transfer %s (%q): %+v"
    )
    
    // processor manages the reception of file transfer messages. Adheres to the
    // message.Processor interface.
    type processor struct {
    	cypher.Cypher
    	*store.ReceivedTransfer
    	*manager
    }
    
    // Process decrypts and hands off the file part message and adds it to the
    // correct file transfer.
    func (p *processor) Process(msg format.Message,
    	_ receptionID.EphemeralIdentity, round rounds.Round) {
    
    	decryptedPart, err := p.Decrypt(msg)
    	if err != nil {
    		jww.ERROR.Printf(
    			errDecryptPart, p.TransferID(), p.FileName(), round.ID, err)
    		return
    	}
    
    	partMsg, err := fileMessage.UnmarshalPartMessage(decryptedPart)
    	if err != nil {
    		jww.ERROR.Printf(
    			errUnmarshalPart, p.TransferID(), p.FileName(), round.ID, err)
    		return
    	}
    
    	err = p.AddPart(partMsg.GetPart(), int(partMsg.GetPartNum()))
    	if err != nil {
    		jww.WARN.Printf(
    			errAddPart, partMsg.GetPartNum(), p.TransferID(), p.FileName(), err)
    		return
    	}
    
    	// Call callback with updates
    	p.callbacks.Call(p.TransferID(), nil)
    }
    
    func (p *processor) String() string {
    	return fmt.Sprintf("FileTransfer(%s)", p.myID)
    }