annotate win32-mingw/include/capnp/ez-rpc.h @ 50:37d53a7e8262

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