internal/protocol/meshmessage.go (58 lines of code) (raw):

// Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF licenses this file to You under the Apache License, Version 2.0 // (the "License"); you may not use this file except in compliance with // the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package protocol import ( "context" "fmt" pgrpc "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc" "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" eventmesh "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/proto" "github.com/apache/incubator-eventmesh/eventmesh-server-go/log" "github.com/apache/incubator-eventmesh/eventmesh-workflow-go/config" "github.com/apache/incubator-eventmesh/eventmesh-workflow-go/internal/constants" "github.com/gogf/gf/util/gconv" "github.com/google/uuid" ) func init() { messageBuilder["meshmessage"] = &MeshMessage{} } // MeshMessage eventmesh message definition type MeshMessage struct { } func (m *MeshMessage) Publish(ctx context.Context, topic string, content string, properties map[string]string) error { eventmeshCfg := config.Get() cfg := &conf.GRPCConfig{ Host: eventmeshCfg.EventMesh.Host, Port: eventmeshCfg.EventMesh.GRPC.Port, ENV: eventmeshCfg.EventMesh.Env, IDC: eventmeshCfg.EventMesh.IDC, SYS: eventmeshCfg.EventMesh.Sys, Username: eventmeshCfg.EventMesh.UserName, Password: eventmeshCfg.EventMesh.Password, ProtocolType: pgrpc.EventmeshMessage, ProducerConfig: conf.ProducerConfig{ ProducerGroup: eventmeshCfg.EventMesh.ProducerGroup, }, } client, err := pgrpc.New(cfg) if err != nil { return err } defer closeEventMeshClient(client) message := &eventmesh.SimpleMessage{ Header: pgrpc.CreateHeader(cfg), ProducerGroup: eventmeshCfg.EventMesh.ProducerGroup, Topic: topic, Content: content, Ttl: gconv.String(eventmeshCfg.EventMesh.TTL), UniqueId: uuid.New().String(), SeqNum: uuid.New().String(), Properties: properties, } resp, err := client.Publish(context.Background(), message) if err != nil { return err } log.Get(constants.LogSchedule).Debugf("publish event result: %v", resp.String()) if resp.RespCode != "0" { return fmt.Errorf("eventmesh publish message error: [code]%v[msg]%v", resp.RespCode, resp.RespMsg) } return nil }