Giter Site home page Giter Site logo

Comments (7)

maddie avatar maddie commented on May 27, 2024

I have solved this problem with this workaround:

  • Decompress the payload
  • Generate a new packet.Message, return false for current message so it won't be forwarded
  • Re-send the new packet.Message

I think there should be an easier way to achieve this.

from gmqtt.

maddie avatar maddie commented on May 27, 2024

Hmm.. this workaround doesn't work, the resend messages aren't being delivered somehow.

Is there a way to do this?

from gmqtt.

maddie avatar maddie commented on May 27, 2024

So it turns out resending the message within the OnMsgArrived hook doesn't work, somehow Publish() seems to be stuck. I put the message into a channel and handling it from another place where the server instance is accessible, from there Publish works just fine.

from gmqtt.

DrmagicE avatar DrmagicE commented on May 27, 2024

The message in OnMsgArrived is readonly, you cannot modified it in OnMsgArrived. Publish should work in OnMsgArrived , can you show me your codes?

Modify message in OnMsgArrived seems reasonable. I will check if i can add this feature via OnMsgArrived.

from gmqtt.

maddie avatar maddie commented on May 27, 2024

I have a struct defined as follows:

type Plugin struct {
   service gmqtt.Server
}

And assigned service on Load(service gmqtt.Server) receiver function

func (p Plugin) Load(service gmqtt.Server) error {
    p.service = service
    return nil
}

Then in OnMsgArrived

func (p Plugin) OnMsgArrived(arrived gmqtt.OnMsgArrived) gmqtt.OnMsgArrived {
    return func(ctx context.Context, client gmqtt.Client, msg packets.Message) bool {
        if needsDecompression {
            // decompress msg.Payload()
            b := decompress(msg.Payload())
            msg := gmqtt.NewMessage(msg.Topic(), b, msg.Qos())
            // this line stucks somehow
            p.service.PublishService().Publish(msg)
            // return false here so the compressed payload won't be forwarded
            return false
        }

        // forward the decompressed payload
        return true
    }
}

from gmqtt.

DrmagicE avatar DrmagicE commented on May 27, 2024

I test with the following code and it works as expected. You should use *Plugin instead of Plugin as the method receiver. @maddie

package main

import (
	"context"
	"log"
	"net"
	"os"
	"os/signal"
	"syscall"

	"go.uber.org/zap"

	"github.com/DrmagicE/gmqtt"
	"github.com/DrmagicE/gmqtt/pkg/packets"
)

type Plugin struct {
	s gmqtt.Server
}

func (p *Plugin) Load(service gmqtt.Server) error {
	p.s = service
	return nil
}

func (p *Plugin) Unload() error {
	return nil
}

func (p *Plugin) HookWrapper() gmqtt.HookWrapper {
	return gmqtt.HookWrapper{
		OnMsgArrivedWrapper: func(arrived gmqtt.OnMsgArrived) gmqtt.OnMsgArrived {
			return func(ctx context.Context, client gmqtt.Client, msg packets.Message) (valid bool) {
				p.s.PublishService().Publish(gmqtt.NewMessage("/abc", []byte("testing"), 1))
				return false
			}
		},
	}
}

func (p *Plugin) Name() string {
	return "testing"
}

func main() {
	// listener
	ln, err := net.Listen("tcp", ":1883")
	if err != nil {
		log.Fatalln(err.Error())
		return
	}

	//l, _ := zap.NewProduction()
	l, _ := zap.NewDevelopment()
	s := gmqtt.NewServer(
		gmqtt.WithTCPListener(ln),
		gmqtt.WithLogger(l),
	)
	p := &Plugin{
		s: s,
	}
	s.Init(gmqtt.WithPlugin(p))
	s.Run()
	signalCh := make(chan os.Signal, 1)
	signal.Notify(signalCh, os.Interrupt, syscall.SIGTERM)
	<-signalCh
	s.Stop(context.Background())
}

from gmqtt.

maddie avatar maddie commented on May 27, 2024

I see! That should be the problem.

Thanks a lot!

from gmqtt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.