doc.go 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. // Copyright 2016 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. // Package geth contains the simplified mobile APIs to go-ethereum.
  17. //
  18. // The scope of this package is *not* to allow writing a custom Ethereum client
  19. // with pieces plucked from go-ethereum, rather to allow writing native dapps on
  20. // mobile platforms. Keep this in mind when using or extending this package!
  21. //
  22. // API limitations
  23. //
  24. // Since gomobile cannot bridge arbitrary types between Go and Android/iOS, the
  25. // exposed APIs need to be manually wrapped into simplified types, with custom
  26. // constructors and getters/setters to ensure that they can be meaningfully used
  27. // from Java/ObjC too.
  28. //
  29. // With this in mind, please try to limit the scope of this package and only add
  30. // essentials without which mobile support cannot work, especially since manually
  31. // syncing the code will be unwieldy otherwise. In the long term we might consider
  32. // writing custom library generators, but those are out of scope now.
  33. //
  34. // Content wise each file in this package corresponds to an entire Go package
  35. // from the go-ethereum repository. Please adhere to this scoping to prevent this
  36. // package getting unmaintainable.
  37. //
  38. // Wrapping guidelines:
  39. //
  40. // Every type that is to be exposed should be wrapped into its own plain struct,
  41. // which internally contains a single field: the original go-ethereum version.
  42. // This is needed because gomobile cannot expose named types for now.
  43. //
  44. // Whenever a method argument or a return type is a custom struct, the pointer
  45. // variant should always be used as value types crossing over between language
  46. // boundaries might have strange behaviors.
  47. //
  48. // Slices of types should be converted into a single multiplicative type wrapping
  49. // a go slice with the methods `Size`, `Get` and `Set`. Further slice operations
  50. // should not be provided to limit the remote code complexity. Arrays should be
  51. // avoided as much as possible since they complicate bounds checking.
  52. //
  53. // If a method has multiple return values (e.g. some return + an error), those
  54. // are generated as output arguments in ObjC. To avoid weird generated names like
  55. // ret_0 for them, please always assign names to output variables if tuples.
  56. //
  57. // Note, a panic *cannot* cross over language boundaries, instead will result in
  58. // an undebuggable SEGFAULT in the process. For error handling only ever use error
  59. // returns, which may be the only or the second return.
  60. package geth