doc.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. // Copyright 2015 The go-ethereum Authors
  2. // This file is part of the go-ethereum library.
  3. //
  4. // The go-ethereum library is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Lesser General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // The go-ethereum library is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Lesser General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Lesser General Public License
  15. // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
  16. /*
  17. Package rpc provides access to the exported methods of an object across a network
  18. or other I/O connection. After creating a server instance objects can be registered,
  19. making it visible from the outside. Exported methods that follow specific
  20. conventions can be called remotely. It also has support for the publish/subscribe
  21. pattern.
  22. Methods that satisfy the following criteria are made available for remote access:
  23. - object must be exported
  24. - method must be exported
  25. - method returns 0, 1 (response or error) or 2 (response and error) values
  26. - method argument(s) must be exported or builtin types
  27. - method returned value(s) must be exported or builtin types
  28. An example method:
  29. func (s *CalcService) Add(a, b int) (int, error)
  30. When the returned error isn't nil the returned integer is ignored and the error is
  31. send back to the client. Otherwise the returned integer is send back to the client.
  32. Optional arguments are supported by accepting pointer values as arguments. E.g.
  33. if we want to do the addition in an optional finite field we can accept a mod
  34. argument as pointer value.
  35. func (s *CalService) Add(a, b int, mod *int) (int, error)
  36. This RPC method can be called with 2 integers and a null value as third argument.
  37. In that case the mod argument will be nil. Or it can be called with 3 integers,
  38. in that case mod will be pointing to the given third argument. Since the optional
  39. argument is the last argument the RPC package will also accept 2 integers as
  40. arguments. It will pass the mod argument as nil to the RPC method.
  41. The server offers the ServeCodec method which accepts a ServerCodec instance. It will
  42. read requests from the codec, process the request and sends the response back to the
  43. client using the codec. The server can execute requests concurrently. Responses
  44. can be sent back to the client out of order.
  45. An example server which uses the JSON codec:
  46. type CalculatorService struct {}
  47. func (s *CalculatorService) Add(a, b int) int {
  48. return a + b
  49. }
  50. func (s *CalculatorService Div(a, b int) (int, error) {
  51. if b == 0 {
  52. return 0, errors.New("divide by zero")
  53. }
  54. return a/b, nil
  55. }
  56. calculator := new(CalculatorService)
  57. server := NewServer()
  58. server.RegisterName("calculator", calculator")
  59. l, _ := net.ListenUnix("unix", &net.UnixAddr{Net: "unix", Name: "/tmp/calculator.sock"})
  60. for {
  61. c, _ := l.AcceptUnix()
  62. codec := v2.NewJSONCodec(c)
  63. go server.ServeCodec(codec)
  64. }
  65. The package also supports the publish subscribe pattern through the use of subscriptions.
  66. A method that is considered eligible for notifications must satisfy the following criteria:
  67. - object must be exported
  68. - method must be exported
  69. - first method argument type must be context.Context
  70. - method argument(s) must be exported or builtin types
  71. - method must return the tuple Subscription, error
  72. An example method:
  73. func (s *BlockChainService) NewBlocks(ctx context.Context) (Subscription, error) {
  74. ...
  75. }
  76. Subscriptions are deleted when:
  77. - the user sends an unsubscribe request
  78. - the connection which was used to create the subscription is closed. This can be initiated
  79. by the client and server. The server will close the connection on a write error or when
  80. the queue of buffered notifications gets too big.
  81. */
  82. package rpc