annotate win64-msvc/include/capnp/ez-rpc.h @ 47:d93140aac40b

Current Capnp libs and headers from git
author Chris Cannam
date Thu, 20 Oct 2016 18:15:38 +0100
parents
children 0f2d93caa50c
rev   line source
Chris@47 1 // Copyright (c) 2013-2014 Sandstorm Development Group, Inc. and contributors
Chris@47 2 // Licensed under the MIT License:
Chris@47 3 //
Chris@47 4 // Permission is hereby granted, free of charge, to any person obtaining a copy
Chris@47 5 // of this software and associated documentation files (the "Software"), to deal
Chris@47 6 // in the Software without restriction, including without limitation the rights
Chris@47 7 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
Chris@47 8 // copies of the Software, and to permit persons to whom the Software is
Chris@47 9 // furnished to do so, subject to the following conditions:
Chris@47 10 //
Chris@47 11 // The above copyright notice and this permission notice shall be included in
Chris@47 12 // all copies or substantial portions of the Software.
Chris@47 13 //
Chris@47 14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
Chris@47 15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
Chris@47 16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
Chris@47 17 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
Chris@47 18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
Chris@47 19 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
Chris@47 20 // THE SOFTWARE.
Chris@47 21
Chris@47 22 #ifndef CAPNP_EZ_RPC_H_
Chris@47 23 #define CAPNP_EZ_RPC_H_
Chris@47 24
Chris@47 25 #if defined(__GNUC__) && !defined(CAPNP_HEADER_WARNINGS)
Chris@47 26 #pragma GCC system_header
Chris@47 27 #endif
Chris@47 28
Chris@47 29 #include "rpc.h"
Chris@47 30 #include "message.h"
Chris@47 31
Chris@47 32 struct sockaddr;
Chris@47 33
Chris@47 34 namespace kj { class AsyncIoProvider; class LowLevelAsyncIoProvider; }
Chris@47 35
Chris@47 36 namespace capnp {
Chris@47 37
Chris@47 38 class EzRpcContext;
Chris@47 39
Chris@47 40 class EzRpcClient {
Chris@47 41 // Super-simple interface for setting up a Cap'n Proto RPC client. Example:
Chris@47 42 //
Chris@47 43 // # Cap'n Proto schema
Chris@47 44 // interface Adder {
Chris@47 45 // add @0 (left :Int32, right :Int32) -> (value :Int32);
Chris@47 46 // }
Chris@47 47 //
Chris@47 48 // // C++ client
Chris@47 49 // int main() {
Chris@47 50 // capnp::EzRpcClient client("localhost:3456");
Chris@47 51 // Adder::Client adder = client.getMain<Adder>();
Chris@47 52 // auto request = adder.addRequest();
Chris@47 53 // request.setLeft(12);
Chris@47 54 // request.setRight(34);
Chris@47 55 // auto response = request.send().wait(client.getWaitScope());
Chris@47 56 // assert(response.getValue() == 46);
Chris@47 57 // return 0;
Chris@47 58 // }
Chris@47 59 //
Chris@47 60 // // C++ server
Chris@47 61 // class AdderImpl final: public Adder::Server {
Chris@47 62 // public:
Chris@47 63 // kj::Promise<void> add(AddContext context) override {
Chris@47 64 // auto params = context.getParams();
Chris@47 65 // context.getResults().setValue(params.getLeft() + params.getRight());
Chris@47 66 // return kj::READY_NOW;
Chris@47 67 // }
Chris@47 68 // };
Chris@47 69 //
Chris@47 70 // int main() {
Chris@47 71 // capnp::EzRpcServer server(kj::heap<AdderImpl>(), "*:3456");
Chris@47 72 // kj::NEVER_DONE.wait(server.getWaitScope());
Chris@47 73 // }
Chris@47 74 //
Chris@47 75 // This interface is easy, but it hides a lot of useful features available from the lower-level
Chris@47 76 // classes:
Chris@47 77 // - The server can only export a small set of public, singleton capabilities under well-known
Chris@47 78 // string names. This is fine for transient services where no state needs to be kept between
Chris@47 79 // connections, but hides the power of Cap'n Proto when it comes to long-lived resources.
Chris@47 80 // - EzRpcClient/EzRpcServer automatically set up a `kj::EventLoop` and make it current for the
Chris@47 81 // thread. Only one `kj::EventLoop` can exist per thread, so you cannot use these interfaces
Chris@47 82 // if you wish to set up your own event loop. (However, you can safely create multiple
Chris@47 83 // EzRpcClient / EzRpcServer objects in a single thread; they will make sure to make no more
Chris@47 84 // than one EventLoop.)
Chris@47 85 // - These classes only support simple two-party connections, not multilateral VatNetworks.
Chris@47 86 // - These classes only support communication over a raw, unencrypted socket. If you want to
Chris@47 87 // build on an abstract stream (perhaps one which supports encryption), you must use the
Chris@47 88 // lower-level interfaces.
Chris@47 89 //
Chris@47 90 // Some of these restrictions will probably be lifted in future versions, but some things will
Chris@47 91 // always require using the low-level interfaces directly. If you are interested in working
Chris@47 92 // at a lower level, start by looking at these interfaces:
Chris@47 93 // - `kj::setupAsyncIo()` in `kj/async-io.h`.
Chris@47 94 // - `RpcSystem` in `capnp/rpc.h`.
Chris@47 95 // - `TwoPartyVatNetwork` in `capnp/rpc-twoparty.h`.
Chris@47 96
Chris@47 97 public:
Chris@47 98 explicit EzRpcClient(kj::StringPtr serverAddress, uint defaultPort = 0,
Chris@47 99 ReaderOptions readerOpts = ReaderOptions());
Chris@47 100 // Construct a new EzRpcClient and connect to the given address. The connection is formed in
Chris@47 101 // the background -- if it fails, calls to capabilities returned by importCap() will fail with an
Chris@47 102 // appropriate exception.
Chris@47 103 //
Chris@47 104 // `defaultPort` is the IP port number to use if `serverAddress` does not include it explicitly.
Chris@47 105 // If unspecified, the port is required in `serverAddress`.
Chris@47 106 //
Chris@47 107 // The address is parsed by `kj::Network` in `kj/async-io.h`. See that interface for more info
Chris@47 108 // on the address format, but basically it's what you'd expect.
Chris@47 109 //
Chris@47 110 // `readerOpts` is the ReaderOptions structure used to read each incoming message on the
Chris@47 111 // connection. Setting this may be necessary if you need to receive very large individual
Chris@47 112 // messages or messages. However, it is recommended that you instead think about how to change
Chris@47 113 // your protocol to send large data blobs in multiple small chunks -- this is much better for
Chris@47 114 // both security and performance. See `ReaderOptions` in `message.h` for more details.
Chris@47 115
Chris@47 116 EzRpcClient(const struct sockaddr* serverAddress, uint addrSize,
Chris@47 117 ReaderOptions readerOpts = ReaderOptions());
Chris@47 118 // Like the above constructor, but connects to an already-resolved socket address. Any address
Chris@47 119 // format supported by `kj::Network` in `kj/async-io.h` is accepted.
Chris@47 120
Chris@47 121 explicit EzRpcClient(int socketFd, ReaderOptions readerOpts = ReaderOptions());
Chris@47 122 // Create a client on top of an already-connected socket.
Chris@47 123 // `readerOpts` acts as in the first constructor.
Chris@47 124
Chris@47 125 ~EzRpcClient() noexcept(false);
Chris@47 126
Chris@47 127 template <typename Type>
Chris@47 128 typename Type::Client getMain();
Chris@47 129 Capability::Client getMain();
Chris@47 130 // Get the server's main (aka "bootstrap") interface.
Chris@47 131
Chris@47 132 template <typename Type>
Chris@47 133 typename Type::Client importCap(kj::StringPtr name)
Chris@47 134 KJ_DEPRECATED("Change your server to export a main interface, then use getMain() instead.");
Chris@47 135 Capability::Client importCap(kj::StringPtr name)
Chris@47 136 KJ_DEPRECATED("Change your server to export a main interface, then use getMain() instead.");
Chris@47 137 // ** DEPRECATED **
Chris@47 138 //
Chris@47 139 // Ask the sever for the capability with the given name. You may specify a type to automatically
Chris@47 140 // down-cast to that type. It is up to you to specify the correct expected type.
Chris@47 141 //
Chris@47 142 // Named interfaces are deprecated. The new preferred usage pattern is for the server to export
Chris@47 143 // a "main" interface which itself has methods for getting any other interfaces.
Chris@47 144
Chris@47 145 kj::WaitScope& getWaitScope();
Chris@47 146 // Get the `WaitScope` for the client's `EventLoop`, which allows you to synchronously wait on
Chris@47 147 // promises.
Chris@47 148
Chris@47 149 kj::AsyncIoProvider& getIoProvider();
Chris@47 150 // Get the underlying AsyncIoProvider set up by the RPC system. This is useful if you want
Chris@47 151 // to do some non-RPC I/O in asynchronous fashion.
Chris@47 152
Chris@47 153 kj::LowLevelAsyncIoProvider& getLowLevelIoProvider();
Chris@47 154 // Get the underlying LowLevelAsyncIoProvider set up by the RPC system. This is useful if you
Chris@47 155 // want to do some non-RPC I/O in asynchronous fashion.
Chris@47 156
Chris@47 157 private:
Chris@47 158 struct Impl;
Chris@47 159 kj::Own<Impl> impl;
Chris@47 160 };
Chris@47 161
Chris@47 162 class EzRpcServer {
Chris@47 163 // The server counterpart to `EzRpcClient`. See `EzRpcClient` for an example.
Chris@47 164
Chris@47 165 public:
Chris@47 166 explicit EzRpcServer(Capability::Client mainInterface, kj::StringPtr bindAddress,
Chris@47 167 uint defaultPort = 0, ReaderOptions readerOpts = ReaderOptions());
Chris@47 168 // Construct a new `EzRpcServer` that binds to the given address. An address of "*" means to
Chris@47 169 // bind to all local addresses.
Chris@47 170 //
Chris@47 171 // `defaultPort` is the IP port number to use if `serverAddress` does not include it explicitly.
Chris@47 172 // If unspecified, a port is chosen automatically, and you must call getPort() to find out what
Chris@47 173 // it is.
Chris@47 174 //
Chris@47 175 // The address is parsed by `kj::Network` in `kj/async-io.h`. See that interface for more info
Chris@47 176 // on the address format, but basically it's what you'd expect.
Chris@47 177 //
Chris@47 178 // The server might not begin listening immediately, especially if `bindAddress` needs to be
Chris@47 179 // resolved. If you need to wait until the server is definitely up, wait on the promise returned
Chris@47 180 // by `getPort()`.
Chris@47 181 //
Chris@47 182 // `readerOpts` is the ReaderOptions structure used to read each incoming message on the
Chris@47 183 // connection. Setting this may be necessary if you need to receive very large individual
Chris@47 184 // messages or messages. However, it is recommended that you instead think about how to change
Chris@47 185 // your protocol to send large data blobs in multiple small chunks -- this is much better for
Chris@47 186 // both security and performance. See `ReaderOptions` in `message.h` for more details.
Chris@47 187
Chris@47 188 EzRpcServer(Capability::Client mainInterface, struct sockaddr* bindAddress, uint addrSize,
Chris@47 189 ReaderOptions readerOpts = ReaderOptions());
Chris@47 190 // Like the above constructor, but binds to an already-resolved socket address. Any address
Chris@47 191 // format supported by `kj::Network` in `kj/async-io.h` is accepted.
Chris@47 192
Chris@47 193 EzRpcServer(Capability::Client mainInterface, int socketFd, uint port,
Chris@47 194 ReaderOptions readerOpts = ReaderOptions());
Chris@47 195 // Create a server on top of an already-listening socket (i.e. one on which accept() may be
Chris@47 196 // called). `port` is returned by `getPort()` -- it serves no other purpose.
Chris@47 197 // `readerOpts` acts as in the other two above constructors.
Chris@47 198
Chris@47 199 explicit EzRpcServer(kj::StringPtr bindAddress, uint defaultPort = 0,
Chris@47 200 ReaderOptions readerOpts = ReaderOptions())
Chris@47 201 KJ_DEPRECATED("Please specify a main interface for your server.");
Chris@47 202 EzRpcServer(struct sockaddr* bindAddress, uint addrSize,
Chris@47 203 ReaderOptions readerOpts = ReaderOptions())
Chris@47 204 KJ_DEPRECATED("Please specify a main interface for your server.");
Chris@47 205 EzRpcServer(int socketFd, uint port, ReaderOptions readerOpts = ReaderOptions())
Chris@47 206 KJ_DEPRECATED("Please specify a main interface for your server.");
Chris@47 207
Chris@47 208 ~EzRpcServer() noexcept(false);
Chris@47 209
Chris@47 210 void exportCap(kj::StringPtr name, Capability::Client cap);
Chris@47 211 // Export a capability publicly under the given name, so that clients can import it.
Chris@47 212 //
Chris@47 213 // Keep in mind that you can implicitly convert `kj::Own<MyType::Server>&&` to
Chris@47 214 // `Capability::Client`, so it's typical to pass something like
Chris@47 215 // `kj::heap<MyImplementation>(<constructor params>)` as the second parameter.
Chris@47 216
Chris@47 217 kj::Promise<uint> getPort();
Chris@47 218 // Get the IP port number on which this server is listening. This promise won't resolve until
Chris@47 219 // the server is actually listening. If the address was not an IP address (e.g. it was a Unix
Chris@47 220 // domain socket) then getPort() resolves to zero.
Chris@47 221
Chris@47 222 kj::WaitScope& getWaitScope();
Chris@47 223 // Get the `WaitScope` for the client's `EventLoop`, which allows you to synchronously wait on
Chris@47 224 // promises.
Chris@47 225
Chris@47 226 kj::AsyncIoProvider& getIoProvider();
Chris@47 227 // Get the underlying AsyncIoProvider set up by the RPC system. This is useful if you want
Chris@47 228 // to do some non-RPC I/O in asynchronous fashion.
Chris@47 229
Chris@47 230 kj::LowLevelAsyncIoProvider& getLowLevelIoProvider();
Chris@47 231 // Get the underlying LowLevelAsyncIoProvider set up by the RPC system. This is useful if you
Chris@47 232 // want to do some non-RPC I/O in asynchronous fashion.
Chris@47 233
Chris@47 234 private:
Chris@47 235 struct Impl;
Chris@47 236 kj::Own<Impl> impl;
Chris@47 237 };
Chris@47 238
Chris@47 239 // =======================================================================================
Chris@47 240 // inline implementation details
Chris@47 241
Chris@47 242 template <typename Type>
Chris@47 243 inline typename Type::Client EzRpcClient::getMain() {
Chris@47 244 return getMain().castAs<Type>();
Chris@47 245 }
Chris@47 246
Chris@47 247 template <typename Type>
Chris@47 248 inline typename Type::Client EzRpcClient::importCap(kj::StringPtr name) {
Chris@47 249 return importCap(name).castAs<Type>();
Chris@47 250 }
Chris@47 251
Chris@47 252 } // namespace capnp
Chris@47 253
Chris@47 254 #endif // CAPNP_EZ_RPC_H_