1

我正在关注本教程:

https://github.com/libp2p/go-libp2p-examples/tree/master/chat-with-mdns

简而言之,它:

  1. 配置 p2p 主机
  2. 为传入连接设置默认处理函数(3. 不是必需的)
  3. 并向连接的对等方打开一个流:

stream, err := host.NewStream(ctx, peer.ID, protocol.ID(cfg.ProtocolID))

之后,创建了一个缓冲流/读写变量:

rw := bufio.NewReadWriter(bufio.NewReader(stream), bufio.NewWriter(stream))

现在这个流用于在对等点之间发送和接收数据。这是使用两个以 rw 作为输入的 goroutine 函数完成的:

go writeData(rw) go readData(rw)

我的问题是:

  1. 我想向我的同行发送数据并需要他们的反馈:例如,在 rw 中有一个问题,他们需要回答是/否。我怎样才能回传这个答案并处理它(启用一些交互)?

  2. 我想在 rw 中发送的数据并不总是相同的。有时它是一个只包含名称的字符串,有时它是一个包含整个块的字符串等。我该如何区分?

我想到了这些解决方案。但是我是golang的新手,所以也许你有一个更好的:

  • 我是否需要为每个不同的内容创建一个新的流: stream, err := host.NewStream(ctx, peer.ID, protocol.ID(cfg.ProtocolID))

  • 我是否需要为每个不同的内容打开更多缓冲的 rw 变量: rw := bufio.NewReadWriter(bufio.NewReader(stream), bufio.NewWriter(stream))

  • 还有其他解决方案吗?

感谢您为解决此问题提供的任何帮助!!

4

1 回答 1

0

这就是readData你的教程所做的:

func readData(rw *bufio.ReadWriter) {
    for {
        str, err := rw.ReadString('\n')
        if err != nil {
            fmt.Println("Error reading from buffer")
            panic(err)
        }

        if str == "" {
            return
        }
        if str != "\n" {
            // Green console colour:    \x1b[32m
            // Reset console colour:    \x1b[0m
            fmt.Printf("\x1b[32m%s\x1b[0m> ", str)
        }

    }
}

它基本上读取流,直到找到一个\n换行符,并将其打印到标准输出。

writeData: _

func writeData(rw *bufio.ReadWriter) {
    stdReader := bufio.NewReader(os.Stdin)

    for {
        fmt.Print("> ")
        sendData, err := stdReader.ReadString('\n')
        if err != nil {
            fmt.Println("Error reading from stdin")
            panic(err)
        }

        _, err = rw.WriteString(fmt.Sprintf("%s\n", sendData))
        if err != nil {
            fmt.Println("Error writing to buffer")
            panic(err)
        }
        err = rw.Flush()
        if err != nil {
            fmt.Println("Error flushing buffer")
            panic(err)
        }
    }
}

它从标准输入读取数据,因此您可以键入消息,并将其写入rw并刷新它。这种启用一种 tty 聊天。如果它工作正常,您应该能够启动至少两个对等点并通过标准输入进行通信。

您不应该rw为新内容重新创建新内容。您可以重复使用现有的,直到您关闭它。从 tuto 的代码中,rw为每个新的对等点创建一个新的。


现在,一个 tcp 流不能作为一个带有请求和对应于该请求的响应的 http 请求。因此,如果您想发送一些内容并获得对该特定问题的回复,您可以发送以下格式的消息:

[8 bytes unique ID][content of the message]\n

当你收到它时,你解析它,准备响应并以相同的格式发送它,这样你就可以匹配消息,创建一种请求/响应通信。

你可以这样做:

func sendMsg(rw *bufio.ReadWriter, id int64, content []byte) error {
        // allocate our slice of bytes with the correct size 4 + size of the message + 1
        msg := make([]byte, 4 + len(content) + 1)

        // write id 
        binary.LittleEndian.PutUint64(msg, uint64(id))

        // add content to msg
        copy(msg[13:], content)

        // add new line at the end
        msg[len(msg)-1] = '\n'

        // write msg to stream
        _, err = rw.Write(msg)
        if err != nil {
            fmt.Println("Error writing to buffer")
            return err
        }
        err = rw.Flush()
        if err != nil {
            fmt.Println("Error flushing buffer")
            return err
        }
        return nil
}

func readMsg(rw *bufio.ReadWriter) {
    for {
        // read bytes until new line
        msg, err := rw.ReadBytes('\n')
        if err != nil {
            fmt.Println("Error reading from buffer")
            continue
        }

        // get the id
        id := int64(binary.LittleEndian.Uint64(msg[0:8]))

        // get the content, last index is len(msg)-1 to remove the new line char
        content := string(msg[8:len(msg)-1])

        if content != "" {
            // we print [message ID] content
            fmt.Printf("[%d] %s", id, content)
        }

        // here you could parse your message
        // and prepare a response
        response, err := prepareResponse(content)
        if err != nil {
            fmt.Println("Err while preparing response: ", err)
            continue
        }

        if err := s.sendMsg(rw, id, response); err != nil {
            fmt.Println("Err while sending response: ", err)
            continue
        }
    }
}

希望这可以帮助。

于 2019-03-25T16:42:48.093 回答