dongyuan1983 2019-04-09 15:32
浏览 148
已采纳

如何编写在goroutine中执行的函数以发送和接收消息?

I have to write a client side code that is receiving messages in the form of strings from server as well as taking input from the console to end message to the server. Both these operations should run concurrently with each other. I have written a code which perform these operations but sequentially not concurrently.

Here's what my current code looks like:

func SocketClient() {
    conn, err := net.Dial("tcp", ":9000")
    if err != nil {
        log.Fatal(err)
    }
    defer conn.Close()
    server_reader := bufio.NewReader(conn)
    input_reader := bufio.NewReader(os.Stdin)
    for {
        // for sending messages
        buff, err := input_reader.ReadString('
')
        if err != nil {
            log.Fatalln(err)
        }
        conn.Write([]byte(buff))

        // for receiving messages but this won't run until the above has taken input from console
        buff2, err := server_reader.ReadString('
')
        if err != nil {
            log.Fatalln(err)
        }
        fmt.Println("Received: %s", buff2)
    }
}

buff receives incoming messages from server and then buff2 takes outgoing message input from console but in order to receive the incoming messages again, buff2 needs some input. I know this can be done using channels, mutex locks etc. but because of my lack of understanding of fundamentals I am having problem using them.

I guess the actual code should look something like this:

func SocketClient() {
    conn, err := net.Dial("tcp", ":9000")
    if err != nil {
        log.Fatal(err)
    }
    defer conn.Close()
    go func() {
        // for sending messages
    } ()
    go func() {
        // for receiving messages
    } ()
}

How to make the input and output as two separate goroutines?

  • 写回答

3条回答 默认 最新

  • dru5089 2019-04-09 16:39
    关注

    Run one of the loops directly in SocketClient. Run the other loop in a new goroutine started by SocketClient.

    func SocketClient() error {
        conn, err := net.Dial("tcp", ":9000")
        if err != nil {
            return err
        }
        defer conn.Close()
        server_reader := bufio.NewReader(conn)
        input_reader := bufio.NewReader(os.Stdin)
    
        go func() {
            defer conn.Close()
    
            // This loop will break and the goroutine will exit when the
            // SocketClient function executes conn.Close().
    
            for {
                buff, err := server_reader.ReadBytes('
    ')
                if err != nil {
                    // optional: log.Fatal(err) to cause program to exit without waiting for new input from stdin.
                    return
                }
                fmt.Printf("Received: %s", buff)
            }
        }()
    
        for {
            // for sending messages
            buff, err := input_reader.ReadBytes('
    ')
            if err != nil {
                return err
            }
            if _, err := conn.Write(buff); err != nil {
                return err
            }
        }
    }
    

    Use the bufio.Reader ReadBytes method instead of the ReadString to avoid unnecessary conversions between []byte and string.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容