Use golang RPC

Source: Internet
Author: User

Github: https://github.com/ZhangzheBJUT/blog/blob/master/golang_rpc.md

HTTP RPC

Server code

package mainimport ("errors""fmt""net/http""net/rpc")const (    URL = "192.168.2.172:12981")type Args struct {    A, B int}type Quotient struct {    Quo, Rem int}type Arith intfunc (t *Arith) Multiply(args *Args, reply *int) error {    *reply = args.A * args.B    return nil}func (t *Arith) Divide(args *Args, quo *Quotient) error{    if args.B == 0 {        return errors.New("divide by zero!")    }    quo.Quo = args.A / args.B    quo.Rem = args.A % args.B    return nil}func main() {    arith := new(Arith)    rpc.Register(arith)    rpc.HandleHTTP()    err := http.ListenAndServe(URL, nil)    if err != nil {        fmt.Println(err.Error())    }}

Client code

package mainimport (    "fmt"        "net/rpc”)const (    URL = "192.168.2.172:12982")func main() {    client, err := rpc.DialHTTP("tcp", URL)    if err != nil {        fmt.Println(err.Error())    }    args := Args{2, 4}    var reply int    err = client.Call("Arith.Multiply", &args, &reply)    if err != nil {        fmt.Println(err.Error())    } else {        fmt.Println(reply)    }}   
Two JSON-RPC

Server code

package mainimport ("errors""fmt""net""net/rpc""net/rpc/jsonrpc")const (    URL= "192.168.2.172:12981")type Args struct {    A, B int}type Quotient struct {    Quo, Rem int}type Arith intfunc (t *Arith) Multiply(args *Args, reply *int) error {    *reply = args.A * args.B    return nil}func (t *Arith) Divide(args *Args, quo *Quotient) error {    if args.B == 0 {        return errors.New("divide by zero!")    }    quo.Quo = args.A / args.B    quo.Rem = args.A % args.B    return nil}func main() {    arith := new(Arith)    rpc.Register(arith)    tcpAddr, err := net.ResolveTCPAddr("tcp", URL)    if err != nil {        fmt.Println(err)    }    listener, err := net.ListenTCP("tcp", tcpAddr)    for {        conn, err := listener.Accept()        if err != nil {            continue        }        go jsonrpc.ServeConn(conn)    }}

Client code

package mainimport (    "fmt"        "net/rpc”)const (    URL = "192.168.2.172:12982")func main() {    client, err := jsonrpc.Dial("tcp", URL)    defer client.Close()    if err != nil {        fmt.Println(err)    }    args := Args{7, 2}    var reply int    err = client.Call("Arith.Multiply", &args, &reply)    if err != nil {        fmt.Println(err)    }    fmt.Println(reply)  }

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.